]> Sergey Matveev's repositories - tofuproxy.git/blob - warc/uncompressed.go
Unify copyright comment format
[tofuproxy.git] / warc / uncompressed.go
1 // tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
2 //              manager, WARC/geminispace browser
3 // Copyright (C) 2021-2024 Sergey Matveev <stargrave@stargrave.org>
4 //
5 // This program is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, version 3 of the License.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 package warc
18
19 import (
20         "io"
21         "os"
22 )
23
24 type UncompressedReader struct {
25         *os.File
26 }
27
28 func NewUncompressedReader(warcPath string, offset int64) (*UncompressedReader, error) {
29         fd, err := os.Open(warcPath)
30         if err != nil {
31                 return nil, err
32         }
33         if _, err = fd.Seek(offset, io.SeekStart); err != nil {
34                 fd.Close()
35                 return nil, err
36         }
37         return &UncompressedReader{File: fd}, nil
38 }
39
40 func (r *UncompressedReader) Read(p []byte) (int, error) {
41         return r.File.Read(p)
42 }
43
44 func (r *UncompressedReader) Close() error {
45         return r.File.Close()
46 }
47
48 func (r *UncompressedReader) Offsets() []Offset {
49         return nil
50 }