Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lz4.AppendOption for NewWriter #199

Open
wants to merge 1 commit into
base: v4
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions options.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,23 @@ func ChecksumOption(flag bool) Option {
}
}

// AppendOption if appendToLz4File = true ,then will not write header
func AppendOption(appendToLz4File bool) Option {
return func(a applier) error {
switch w := a.(type) {
case nil:
s := fmt.Sprintf("AppendOption(%v)", appendToLz4File)
return lz4errors.Error(s)
case *Writer:
if appendToLz4File {
w.frame.Descriptor.Checksum = 1
}
return nil
}
return lz4errors.ErrOptionNotApplicable
}
}

// SizeOption sets the size of the original uncompressed data (default=0). It is useful to know the size of the
// whole uncompressed data stream.
func SizeOption(size uint64) Option {
Expand Down