Git Product home page Git Product logo

Comments (2)

lizthegrey avatar lizthegrey commented on September 26, 2024

Verified my fixed branch works with go mod edit -replace

from lz4.

lizthegrey avatar lizthegrey commented on September 26, 2024

Repro code:

package main

import (
	"bytes"
	"encoding/hex"
	"fmt"
	"io"
	"os"
	"testing"

	lzv3 "github.com/pierrec/lz4/v3"
	lzv4 "github.com/pierrec/lz4/v4"
)

type Generator func(io.WriteCloser) io.WriteCloser

func TestFoo(t *testing.T) {
	for i, gen := range []Generator{initV3, initV4} {
		fmt.Printf("\n===Generator %d, piecemeal===\n", i)
		dumper := hex.Dumper(os.Stdout)
		coder := gen(dumper)
		for _, v := range inStream {
			n, err := io.CopyN(coder, bytes.NewReader(v), int64(len(v)))
			if n != int64(len(v)) || err != nil {
				fmt.Printf("Failed to write %v\n", err)
			}
		}
		coder.Close()
		dumper.Close()

		fmt.Printf("\n===Generator %d, clean buffered===\n", i)
		var allAtOnce bytes.Buffer
		for _, v := range inStream {
			n, err := io.CopyN(&allAtOnce, bytes.NewReader(v), int64(len(v)))
			if n != int64(len(v)) || err != nil {
				fmt.Printf("Failed to write: %v\n", err)
				break
			}
		}

		dumper2 := hex.Dumper(os.Stdout)
		coder2 := gen(dumper2)
		io.Copy(coder2, bytes.NewReader(allAtOnce.Bytes()))
		coder2.Close()
		dumper2.Close()
	}
	fmt.Println()
}

func initV3(out io.WriteCloser) io.WriteCloser {
	lz4Writer := lzv3.NewWriter(out)
	return lz4Writer
}

func initV4(out io.WriteCloser) io.WriteCloser {
	lz4Writer := lzv4.NewWriter(out)
	return lz4Writer
}

var inStream = [][]byte{
	{5, 0, 4, 0, 0, 0, 116, 104, 105, 115, 2, 0, 0, 0, 105, 115, 1, 0, 0, 0, 97, 4, 0, 0, 0, 116, 101, 115, 116, 8, 0, 0, 0, 112, 114, 111, 98, 97, 98, 108, 121},
	{1, 0, 0, 0, 13, 0, 0, 0},
	{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 15},
}

from lz4.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.