-
Notifications
You must be signed in to change notification settings - Fork 328
/
restore.go
86 lines (77 loc) · 2.16 KB
/
restore.go
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
// Copyright 2020 H2O.ai, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package wave
import (
"bufio"
"bytes"
"log"
"os"
"time"
)
var (
logSep = []byte(" ")
)
func initSite(site *Site, aofPath string) {
file, err := os.Open(aofPath)
if err != nil {
log.Fatalln("#", "failed opening AOF file:", err)
}
defer file.Close()
startTime := time.Now()
line, used := 0, 0
scanner := bufio.NewScanner(file)
for scanner.Scan() { // FIXME not reliable if line length > 65536 chars
line++
data := scanner.Bytes()
tokens := bytes.SplitN(data, logSep, 4) // "date time marker entry"
if len(tokens) < 4 {
log.Println("#", "warning: want (date, time, marker, entry); skipped line", line)
continue
}
marker, entry := tokens[2], tokens[3]
if len(marker) > 0 {
mark := marker[0]
if mark == '#' { // comment
continue
}
tokens = bytes.SplitN(entry, logSep, 2) // "url data"
if len(tokens) < 2 {
log.Println("#", "warning: want (url, data); skipped line", line)
continue
}
url, data := tokens[0], tokens[1]
switch mark {
case '*': // patch existing page
site.patch(string(url), data)
used++
case '=': // compacted page; overwrite
site.set(string(url), data)
used++
default:
log.Println("#", "warning: bad marker", marker, "on line", line)
}
}
}
log.Printf("# init: %d lines read, %d lines used, %s\n", line, used, time.Since(startTime))
if err := scanner.Err(); err != nil {
log.Fatalln("#", "failed scanning AOF file:", err)
}
}
func CompactSite(aofPath string) {
site := newSite()
initSite(site, aofPath)
for url, page := range site.pages {
log.Println("=", url, string(page.marshal()))
}
}