From 9aef883036a3e20819b0a30874b9bbf47a1f8795 Mon Sep 17 00:00:00 2001 From: Dmitry Kotik <7944694+dkotik@users.noreply.github.com> Date: Sun, 7 Apr 2024 12:10:49 +0200 Subject: [PATCH] add license --- LICENSE | 21 +++++++++++++++++++++ options.go | 2 +- reader.go | 4 ++-- tag.go | 4 ++-- 4 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..43366d4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Dmitry Kotik + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/options.go b/options.go index aafdd70..e446026 100644 --- a/options.go +++ b/options.go @@ -44,7 +44,7 @@ func WithOptions(set ...Option) Option { } } -// WithQuorumShards sets the miminal number of shards neccessary +// WithQuorumShards sets the miminal number of shards necessary // for reconstruction. Defaults to five. func WithQuorumShards(count uint8) Option { return func(o *options) error { diff --git a/reader.go b/reader.go index ffbd5f6..4e65f2a 100644 --- a/reader.go +++ b/reader.go @@ -79,7 +79,7 @@ func (r *Reader) NextShard(ctx context.Context, w io.Writer) (s *Shard, err erro switch err { case nil: case io.EOF, io.ErrUnexpectedEOF, telomeres.ErrBoundary: - if n, err = w.Write(r.buffer[TagBytesForCRC+TagSize : n]); err != nil { + if _, err = w.Write(r.buffer[TagBytesForCRC+TagSize : n]); err != nil { return s, err } fallthrough @@ -87,7 +87,7 @@ func (r *Reader) NextShard(ctx context.Context, w io.Writer) (s *Shard, err erro return s, err } - n, err = w.Write(r.buffer[TagBytesForCRC+TagSize : n]) + _, err = w.Write(r.buffer[TagBytesForCRC+TagSize : n]) // log.Fatalf("%s", r.buffer[TagBytesForCRC+TagSize:n]) if err != nil { return s, err diff --git a/tag.go b/tag.go index 76a8706..c5445c4 100644 --- a/tag.go +++ b/tag.go @@ -149,7 +149,7 @@ type sequentialTagger struct { // to zero and increments shard batch counter. // // Always wrap with NewSynchronousTagger when tagging -// syncronously. +// synchronously. func NewSequentialTagger(t Tag, shardLimit uint8) Tagger { return &sequentialTagger{ encoded: t.Bytes(), @@ -201,7 +201,7 @@ type latteralTagger struct { // separate shard files. // // Always wrap with NewSynchronousTagger when tagging -// syncronously. +// synchronously. func NewLateralTagger(t Tag) Tagger { return &latteralTagger{ encoded: t.Bytes(),