forked from h2oai/wave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.go
139 lines (121 loc) · 3.06 KB
/
site.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
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
// 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 (
"encoding/json"
"fmt"
"sort"
"sync"
)
const (
keySeparator = " "
)
// Site represents the website, and holds a collection of pages.
type Site struct {
sync.RWMutex
pages map[string]*Page // url => page
ns *Namespace // buffer type namespace
}
func newSite() *Site {
return &Site{pages: make(map[string]*Page), ns: newNamespace()}
}
// at returns the page at url, else nil
func (site *Site) at(url string) *Page {
site.RLock()
defer site.RUnlock()
if p, ok := site.pages[url]; ok {
return p
}
return nil
}
// get returns the page at url, else mints a new one.
func (site *Site) get(url string) *Page {
if p := site.at(url); p != nil {
return p
}
p := newPage()
site.Lock()
site.pages[url] = p
site.Unlock()
return p
}
// del deletes the page at url.
func (site *Site) del(url string) {
site.Lock()
delete(site.pages, url)
site.Unlock()
}
// set overwrites a page's content.
func (site *Site) set(url string, data []byte) error {
var ops OpsD
if err := json.Unmarshal(data, &ops); err != nil {
return fmt.Errorf("failed unmarshaling data: %v", err)
}
if ops.P != nil {
site.pages[url] = loadPage(site.ns, ops.P)
}
return nil
}
// patch patches a page's content.
func (site *Site) patch(url string, data []byte) error {
var ops OpsD
if err := json.Unmarshal(data, &ops); err != nil { // TODO speed up
return fmt.Errorf("failed unmarshaling data: %v", err)
}
site.exec(url, ops)
return nil
}
// exec applies changes to a page's content.
func (site *Site) exec(url string, ops OpsD) {
page := site.get(url)
page.Lock()
for _, op := range ops.D {
if len(op.K) > 0 {
if op.C != nil {
page.set(op.K, loadCycBuf(site.ns, op.C))
} else if op.F != nil {
page.set(op.K, loadFixBuf(site.ns, op.F))
} else if op.M != nil {
page.set(op.K, loadMapBuf(site.ns, op.M))
} else if op.L != nil {
page.set(op.K, loadListBuf(site.ns, op.L))
} else if op.D != nil {
page.cards[op.K] = loadCard(site.ns, CardD{op.D, op.B})
} else {
page.set(op.K, op.V)
}
} else { // drop page
site.del(url)
page.Unlock()
page = site.get(url)
page.Lock()
}
}
page.cache = nil // will be re-cached on next call to site.get(url)
page.Unlock()
}
// urls returns a sorted slice of urls hosted by this site.
func (site *Site) urls() []string {
site.RLock()
defer site.RUnlock()
pages := site.pages
urls := make([]string, len(pages))
i := 0
for url := range pages {
urls[i] = url
i++
}
sort.Strings(urls)
return urls
}