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