File: writer.go

package info (click to toggle)
golang-github-la5nta-wl2k-go 0.11.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,856 kB
  • sloc: ansic: 14; makefile: 2
file content (228 lines) | stat: -rw-r--r-- 4,733 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// Copyright 2016 Martin Hebnes Pedersen (LA5NTA). All rights reserved.
// Use of this source code is governed by the MIT-license that can be
// found in the LICENSE file.

package lzhuf

import (
	"bufio"
	"bytes"
	"encoding/binary"
	"io"
)

// A Writer is an io.WriteCloser.
// Writes to a Writer are compressed and writter to w.
type Writer struct {
	w   *bufio.Writer
	z   *lzhuf
	err error

	crc16 bool

	buf             *bytes.Buffer // Encode data here and then write header and copy buf to actual writer
	putbuf          uint
	putlen          uint8
	len, r, s       int
	lastMatchLength int
	preFilled       bool
	fileSize        int32
}

// NewB2Writer returns a new Writer with the extended FBB B2 format used by Winlink.
//
// It is the caller's responsibility to call Close on the WriteCloser when done.
// Writes may be buffered and not flushed until Close.
func NewB2Writer(w io.Writer) *Writer { return NewWriter(w, true) }

// NewWriter returns a new Writer. Writes to the returned writer are compressed and written to w.
//
// If crc16 is true, the header will be prepended with a checksum of the compressed data (as per FBB B2).
//
// It is the caller's responsibility to call Close on the WriteCloser when done.
// Writes may be buffered and not flushed until Close.
func NewWriter(w io.Writer, crc16 bool) *Writer {
	wr := &Writer{w: bufio.NewWriter(w), buf: new(bytes.Buffer), crc16: crc16}

	wr.z = newLZHUFF()
	wr.z.InitTree()

	wr.r = _N - _F
	for i := 0; i < wr.r; i++ {
		wr.z.textBuf[i] = ' '
	}

	return wr
}

// Write writes a compressed form of p to the underlying io.Writer. The
// compressed bytes are not necessarily flushed until the Writer is closed.
func (w *Writer) Write(p []byte) (n int, err error) {
	if w.err != nil {
		return 0, err
	}

	for !w.preFilled && n < len(p) { // Pre-fill lookahead buffer
		w.z.textBuf[w.r+w.len] = p[n]
		n++
		w.fileSize++
		w.len++
		w.z.InsertNode(w.r - w.len)

		w.lastMatchLength = 1
		w.preFilled = w.len == _F
	}

	for n < len(p) {
		w.advance(&p[n])
		n++
		w.fileSize++
	}

	return n, nil
}

// Close closes the Writer, flushing any unwritten data to the underlying
// io.Writer, but does not close the underlying io.Writer.
func (w *Writer) Close() error {
	if w.err != nil {
		return w.err
	}

	// Write remaining data from the lookahead buffer
	for w.len > 0 {
		w.advance(nil)
	}
	w.encode()
	w.encodeEnd()

	var lengthBytes bytes.Buffer
	binary.Write(&lengthBytes, binary.LittleEndian, w.fileSize)

	// Write checksum (2 bytes)
	if w.crc16 {
		sum := crc(append(lengthBytes.Bytes(), w.buf.Bytes()...))
		if err := binary.Write(w.w, binary.LittleEndian, sum); err != nil {
			return err
		}
	}

	// Write filesize (4 bytes)
	if _, err := io.Copy(w.w, &lengthBytes); err != nil {
		return err
	}

	// Write compressed data
	if _, err := io.Copy(w.w, w.buf); err != nil {
		return err
	}

	return w.w.Flush()
}

func (w *Writer) advance(c *byte) {
	if c != nil {
		// Add to lookahead buffer
		w.z.textBuf[w.s] = *c
		if w.s < _F-1 {
			w.z.textBuf[w.s+_N] = *c
		}
		w.len++
	}

	// Process one byte from lookahead buffer
	w.z.InsertNode(w.r)
	w.lastMatchLength--
	if w.lastMatchLength == 0 {
		w.encode()
	}
	w.z.DeleteNode(w.s)
	w.s = (w.s + 1) & (_N - 1)
	w.r = (w.r + 1) & (_N - 1)
	w.len--
}

func (w *Writer) encode() {
	if w.len == 0 {
		return
	}

	// Encode from lookahead buffer
	if w.z.matchLength > w.len {
		w.z.matchLength = w.len
	}
	if w.z.matchLength <= _Threshold {
		w.z.matchLength = 1
		w.encodeChar(uint(w.z.textBuf[w.r]))
	} else {
		w.encodeChar(uint(255 - _Threshold + w.z.matchLength))
		w.encodePosition(uint(w.z.matchPosition))
	}

	w.lastMatchLength = w.z.matchLength
}

func (w *Writer) encodeEnd() {
	if w.putlen == 0 {
		return
	}
	w.err = w.buf.WriteByte(byte(w.putbuf >> 8))
}

func (w *Writer) encodeChar(c uint) {
	// travel from leaf to root
	i, j := uint(0), int(0)
	k := w.z.prnt[c+_T]
	for {
		i >>= 1
		j++

		// if node's address is odd-numbered, choose bigger brother node
		if k&1 != 0 {
			i += 0x8000
		}

		if k = w.z.prnt[k]; k == _R {
			break
		}
	}
	w.putCode(j, i)
	w.z.update(int(c))
}

func (w *Writer) encodePosition(c uint) {
	var i uint

	// output upper 6 bits by table lookup
	i = c >> 6
	w.putCode(int(pLen[i]), uint(pCode[i])<<8)

	// output lower 6 bits verbatim
	w.putCode(6, (c&0x3f)<<10)
}

// Output c bits of code
func (w *Writer) putCode(l int, c uint) {
	if w.err != nil {
		return
	}

	w.putbuf |= c >> w.putlen
	w.putlen += uint8(l)

	if w.putlen < 8 {
		return
	}

	w.err = w.buf.WriteByte(byte(w.putbuf >> 8))
	w.putlen -= 8

	if w.putlen >= 8 {
		w.err = w.buf.WriteByte(byte(w.putbuf))

		w.putlen -= 8
		w.putbuf = c << uint(l-int(w.putlen))
	} else {
		w.putbuf <<= 8
	}
}