-
Notifications
You must be signed in to change notification settings - Fork 180
/
cache.go
752 lines (595 loc) · 16.9 KB
/
cache.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
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
/*
* Copyright (c) 2019-2021. Abstrium SAS <team (at) pydio.com>
* This file is part of Pydio Cells.
*
* Pydio Cells is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio Cells is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com>.
*/
package index
import (
"context"
"crypto/md5"
"database/sql"
"errors"
"fmt"
"regexp"
"sort"
"strings"
"sync"
"time"
"go.uber.org/zap"
"github.com/pydio/cells/v4/common/dao"
"github.com/pydio/cells/v4/common/log"
"github.com/pydio/cells/v4/common/proto/tree"
commonsql "github.com/pydio/cells/v4/common/sql"
"github.com/pydio/cells/v4/common/utils/configx"
"github.com/pydio/cells/v4/common/utils/mtree"
"github.com/pydio/cells/v4/common/utils/uuid"
)
var (
cache = make(map[string]DAO)
cacheMutex = &sync.Mutex{}
)
type daocache struct {
DAO
session string
// MPAth Cache
cache map[string]*mtree.TreeNode
childCache map[string][]*mtree.TreeNode
// NameCache
nameCache map[string][]*mtree.TreeNode
mutex *sync.RWMutex
insertChan chan *mtree.TreeNode
insertDone chan bool
errors []error
current string
}
type DAOWrapper func(d DAO) DAO
// NewDAOCache wraps a cache around the dao
func NewDAOCache(session string, d DAO) DAO {
ic, err := d.AddNodeStream(100)
id := make(chan bool, 1)
c := &daocache{
DAO: d,
session: session,
cache: make(map[string]*mtree.TreeNode),
childCache: make(map[string][]*mtree.TreeNode),
nameCache: make(map[string][]*mtree.TreeNode),
mutex: &sync.RWMutex{},
insertChan: ic,
insertDone: id,
}
cacheMutex.Lock()
defer cacheMutex.Unlock()
cache[session] = c
c.resync()
go func() {
defer close(c.insertDone)
for e := range err {
c.errors = append(c.errors, e)
}
}()
return c
}
// GetDAOCache returns the cache based on the session name
func GetDAOCache(session string) DAO {
cacheMutex.Lock()
defer cacheMutex.Unlock()
if c, ok := cache[session]; ok {
return c
}
return nil
}
func (d *daocache) resync() {
d.mutex.Lock()
defer d.mutex.Unlock()
t1 := time.Now()
defer func() {
fmt.Println("Finished resync", time.Since(t1))
}()
for k := range d.cache {
delete(d.cache, k)
}
for k := range d.childCache {
delete(d.childCache, k)
}
for k := range d.nameCache {
delete(d.nameCache, k)
}
d.cache = make(map[string]*mtree.TreeNode)
d.childCache = make(map[string][]*mtree.TreeNode)
d.nameCache = make(map[string][]*mtree.TreeNode)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
for obj := range d.DAO.GetNodeTree(ctx, mtree.NewMPath(1)) {
node, ok := obj.(*mtree.TreeNode)
if !ok {
continue
}
mpath := node.MPath.String()
pmpath := node.MPath.Parent().String()
d.cache[mpath] = node
d.childCache[pmpath] = append(d.childCache[pmpath], node)
name := node.Name()
d.nameCache[name] = append(d.nameCache[name], node)
}
}
// Init the dao cache
func (d *daocache) Init(ctx context.Context, m configx.Values) error {
return d.DAO.(dao.DAO).Init(ctx, m)
}
// GetConn returns the connection of the underlying dao
func (d *daocache) GetConn(ctx context.Context) (dao.Conn, error) {
return d.DAO.(dao.DAO).GetConn(ctx)
}
// GetConn sets the connection of the underlying dao
func (d *daocache) SetConn(ctx context.Context, conn dao.Conn) {
d.DAO.(dao.DAO).SetConn(ctx, conn)
}
// CloseConn closes the connection of the underlying dao
func (d *daocache) CloseConn(ctx context.Context) error {
return d.DAO.(dao.DAO).CloseConn(ctx)
}
// Prefix reads DAO internal Prefix
func (d *daocache) Prefix() string {
return d.DAO.(dao.DAO).Prefix()
}
// Driver defines the type of driver used by the dao
func (d *daocache) Driver() string {
return d.DAO.(dao.DAO).Driver()
}
// LocalAccess implements dao.DAO interface
func (d *daocache) LocalAccess() bool {
return false
}
// Stats implements dao.DAO interface
func (d *daocache) Stats() map[string]interface{} {
return map[string]interface{}{}
}
func (d *daocache) Name() string {
return d.DAO.(dao.DAO).Name()
}
func (d *daocache) ID() string {
return d.DAO.(dao.DAO).ID()
}
func (d *daocache) Metadata() map[string]string {
return d.DAO.(dao.DAO).Metadata()
}
func (d *daocache) Dsn() string {
return d.DAO.(dao.DAO).Dsn()
}
func (d *daocache) As(i interface{}) bool {
return d.DAO.(dao.DAO).As(i)
}
// DB object
func (d *daocache) DB() *sql.DB {
return d.DAO.(commonsql.DAO).DB()
}
// Prepare a SQL statement
func (d *daocache) Prepare(name string, args interface{}) error {
return d.DAO.(commonsql.DAO).Prepare(name, args)
}
// GetStmt returns a statement that had been already prepared
func (d *daocache) GetStmt(name string, args ...interface{}) (commonsql.Stmt, error) {
return d.DAO.(commonsql.DAO).GetStmt(name, args...)
}
// UseExclusion defines if the DAO uses mutexes or not
func (d *daocache) UseExclusion() {
d.DAO.(commonsql.DAO).UseExclusion()
}
// Lock the mutex of DAO requests
func (d *daocache) Lock() {
d.DAO.(commonsql.DAO).Lock()
}
// Unlock the mutex of DAO requests
func (d *daocache) Unlock() {
d.DAO.(commonsql.DAO).Unlock()
}
// Path resolves a node mpath, eventually creating it (and its parents)
func (d *daocache) Path(strpath string, create bool, reqNode ...*tree.Node) (mtree.MPath, []*mtree.TreeNode, error) {
return d.path(strpath, create, false, reqNode...)
}
// PathCreateNoAdd does the same as Path(create=true) but does not really
// create the node in the cache, just find a firstAvailableIndex
func (d *daocache) PathCreateNoAdd(strpath string) (mtree.MPath, *mtree.TreeNode, error) {
mpath, nodes, err := d.path(strpath, true, true)
if err != nil {
return nil, nil, err
} else if len(nodes) == 0 {
return nil, nil, fmt.Errorf("PathCreateNodeAdd : node already exists")
} else {
return mpath, nodes[0], nil
}
}
// Path resolution for a node
func (d *daocache) path(strpath string, create bool, noAdd bool, reqNode ...*tree.Node) (mtree.MPath, []*mtree.TreeNode, error) {
if len(strpath) == 0 || strpath == "/" {
return []uint64{1}, nil, nil
}
names := strings.Split(strings.TrimLeft(strpath, "/"), "/")
// If we don't create, then we can just retrieve the node directly
if !create {
if node, err := d.GetNodeByPath(names); err != nil {
return nil, nil, err
} else {
return node.MPath, nil, err
}
}
// We are in creation mode, so we need to retrieve the parent node
// In this function, we consider that the parent node always exists
ppath := mtree.NewMPath(1)
if len(names) > 1 {
if pnode, err := d.GetNodeByPath(names[0 : len(names)-1]); err != nil {
return nil, nil, err
} else {
ppath = mtree.NewMPathFromMPath(pnode.MPath)
}
}
if index, err := d.GetNodeFirstAvailableChildIndex(ppath); err != nil {
return nil, nil, err
} else {
source := &tree.Node{}
if len(reqNode) > 0 {
source = reqNode[0]
}
mpath := mtree.NewMPath(append(ppath, index)...)
node := NewNode(source, mpath, names)
if node.Uuid == "" {
node.Uuid = uuid.New()
}
if node.Etag == "" {
// Should only happen for folders - generate first Etag from uuid+mtime
node.Etag = fmt.Sprintf("%x", md5.Sum([]byte(fmt.Sprintf("%s%d", node.Uuid, node.MTime))))
}
if !noAdd {
if err := d.AddNode(node); err != nil {
return nil, nil, err
}
}
return node.MPath, []*mtree.TreeNode{node}, nil
}
}
// Flush triggers actual inserts and restarts a new cache if final is false
func (d *daocache) Flush(final bool) error {
close(d.insertChan)
// Waiting for the insertion to be fully done
<-d.insertDone
var err error
errs := d.errors
l := len(errs)
if l == 1 {
err = errs[0]
} else if l > 0 {
if l > 10 { // limit number of errors
errs = errs[:10]
l = len(errs)
}
f := make([]string, l)
for i, e := range errs {
f[i] = e.Error()
}
err = errors.New("Combined errors (first 10) : " + strings.Join(f, " "))
}
if !final {
// If this isn't the final flush, then we reopen a new cache
newCache := NewDAOCache(d.session, d.DAO).(*daocache)
*d = *newCache
} else {
// Remove from global cache
delete(cache, d.session)
}
if derr := d.DAO.Flush(final); derr != nil {
if err == nil {
return derr
} else {
return errors.New("Combined error from dao : " + strings.Join([]string{derr.Error(), err.Error()}, " "))
}
}
return err
}
// AddNodeStream should not be used directly with the cache
func (d *daocache) AddNodeStream(max int) (chan *mtree.TreeNode, chan error) {
c := make(chan *mtree.TreeNode)
e := make(chan error)
go func() {
defer close(e)
for range c {
e <- errors.New("AddNodeStream should not be used directly when using the cache")
}
}()
return c, e
}
// AddNode to the cache and prepares it to be added to the database
func (d *daocache) AddNode(node *mtree.TreeNode) error {
d.mutex.Lock()
defer d.mutex.Unlock()
d.insertChan <- node
mpath := node.MPath.String()
pmpath := node.MPath.Parent().String()
name := node.Name()
d.cache[mpath] = node
d.childCache[pmpath] = append(d.childCache[pmpath], node)
d.nameCache[name] = append(d.nameCache[name], node)
d.current = mpath
return nil
}
func (d *daocache) SetNode(node *mtree.TreeNode) error {
d.mutex.Lock()
defer d.mutex.Unlock()
if err := d.DAO.SetNode(node); err != nil {
return err
}
d.cache[node.MPath.String()] = node
return nil
}
func (d *daocache) SetNodeMeta(node *mtree.TreeNode) error {
d.mutex.Lock()
defer d.mutex.Unlock()
if err := d.DAO.SetNodeMeta(node); err != nil {
return err
}
d.cache[node.MPath.String()] = node
return nil
}
func (d *daocache) DelNode(node *mtree.TreeNode) error {
d.mutex.Lock()
defer d.mutex.Unlock()
if err := d.DAO.DelNode(node); err != nil {
return err
}
delete(d.cache, node.MPath.String())
// nameCache, ok := d.nameCache[node.Name()]
// if !ok {
// return errors.New("Should have a name in cache")
// }
// var nodes []*mtree.TreeNode
// for _, n := range nameCache {
// if n.MPath.String() != node.MPath.String() {
// nodes = append(nodes, n)
// }
// }
// d.nameCache[node.Name()] = nodes
return nil
}
// Batch Add / Set / Delete
func (d *daocache) GetNodes(pathes ...mtree.MPath) chan *mtree.TreeNode {
return d.DAO.GetNodes(pathes...)
}
func (d *daocache) SetNodes(etag string, size int64) commonsql.BatchSender {
return d.DAO.SetNodes(etag, size)
}
// Getters
func (d *daocache) GetNode(path mtree.MPath) (*mtree.TreeNode, error) {
d.mutex.RLock()
defer d.mutex.RUnlock()
if node, ok := d.cache[path.String()]; ok {
return node, nil
}
return d.DAO.GetNode(path)
}
func (d *daocache) GetNodeByUUID(uuid string) (*mtree.TreeNode, error) {
d.mutex.RLock()
defer d.mutex.RUnlock()
for _, n := range d.cache {
if n.Uuid == uuid {
return n, nil
}
}
return d.DAO.GetNodeByUUID(uuid)
}
// GetNodeByPath finds a node by its path
func (d *daocache) GetNodeByPath(path []string) (*mtree.TreeNode, error) {
d.mutex.RLock()
defer d.mutex.RUnlock()
name := path[len(path)-1]
logPath := "[" + strings.Join(path, ",") + "]"
// we retrieve a list of potential nodes
nodes, ok := d.nameCache[name]
if !ok {
return nil, fmt.Errorf("Cache:GetNodeByPath: Path: " + logPath + " last part not in nameCache")
}
if len(nodes) == 1 && len(path) < 2 {
node := nodes[0]
if len(node.MPath) != len(path)+1 {
return nil, fmt.Errorf("node missing at this level")
}
return node, nil
}
potentialNodes := []*mtree.TreeNode{}
// Keeping only nodes on right level
for _, node := range nodes {
if len(node.MPath) == len(path)+1 { // We're adding 1 to take into account the root
potentialNodes = append(potentialNodes, node)
}
}
if len(potentialNodes) == 1 && len(path) < 2 {
return potentialNodes[0], nil
}
// Resetting potentialNodes
newPotentialNodes := []*mtree.TreeNode{}
// Removing nodes with wrong parent
for i := len(path) - 2; i >= 0; i-- {
for _, node := range potentialNodes {
mpath := mtree.NewMPath(node.MPath[0 : i+2]...)
if pnode, ok := d.cache[mpath.String()]; !ok {
// We can't find the node in the cache - this could be a problem
continue
} else if pnode.Name() != path[i] {
// The parent node name doesn't match what we are looking for
continue
}
newPotentialNodes = append(newPotentialNodes, node)
}
if len(newPotentialNodes) == 1 && i == 0 {
return newPotentialNodes[0], nil
}
// Resetting potentialNodes
potentialNodes = newPotentialNodes
newPotentialNodes = []*mtree.TreeNode{}
}
le := len(potentialNodes)
if le > 1 {
if le > 20 {
potentialNodes = potentialNodes[:20] // reduce size for logs
}
log.Logger(context.Background()).Error("Duplicate node", zap.Int("count", le), log.DangerouslyZapSmallSlice("nodes...", potentialNodes))
}
return nil, fmt.Errorf("Cache:GetNodeByPath "+logPath+" : potentialNodes not reduced to 1 value (potentials:%d)", le)
}
func (d *daocache) GetNodeChild(path mtree.MPath, name string) (*mtree.TreeNode, error) {
d.mutex.RLock()
defer d.mutex.RUnlock()
if nodes, ok := d.childCache[path.String()]; ok {
for _, node := range nodes {
if node.Name() == name {
return node, nil
}
}
}
return d.DAO.GetNodeChild(path, name)
}
func (d *daocache) GetNodeLastChild(path mtree.MPath) (*mtree.TreeNode, error) {
d.mutex.RLock()
defer d.mutex.RUnlock()
// Looping
var currentLast uint64
var currentLastNode *mtree.TreeNode
if nodes, ok := d.childCache[path.String()]; ok {
for _, node := range nodes {
last := node.MPath[len(node.MPath)-1]
if last > currentLast {
currentLast = last
currentLastNode = node
}
}
}
if currentLastNode != nil {
return currentLastNode, nil
}
return d.DAO.GetNodeLastChild(path)
}
func (d *daocache) GetNodeFirstAvailableChildIndex(path mtree.MPath) (uint64, error) {
d.mutex.RLock()
defer d.mutex.RUnlock()
// Looping
c := d.childCache[path.String()]
count := len(c)
if count == 0 {
return 1, nil
}
var currentLast uint64
slots := make(map[uint64]bool, count)
for _, node := range c {
last := node.MPath[len(node.MPath)-1]
slots[last] = true
if last > currentLast {
currentLast = last
}
}
if currentLast > uint64(count) {
var freeSlot uint64
for i := 1; i <= count; i++ {
if _, ok := slots[uint64(i)]; !ok {
freeSlot = uint64(i)
break
}
}
if freeSlot > 0 {
// Found a free slot indeed, return it
//fmt.Println("Get Node Last Child: returning free slot! ", path.String(), freeSlot)
return freeSlot, nil
}
}
// Return currentLast + 1
//fmt.Println("Get Node Last Child: returning last+1", path.String(), currentLast+1)
return uint64(currentLast + 1), nil
}
func (d *daocache) GetNodeChildrenCounts(path mtree.MPath, b bool) (int, int) {
d.mutex.RLock()
defer d.mutex.RUnlock()
res := 0
if nodes, ok := d.childCache[path.String()]; ok {
res = len(nodes)
}
return res, 0
}
func (d *daocache) GetNodeChildren(ctx context.Context, path mtree.MPath, filter ...*tree.MetaFilter) chan interface{} {
c := make(chan interface{})
go func() {
d.mutex.RLock()
defer d.mutex.RUnlock()
defer close(c)
if nodes, ok := d.childCache[path.String()]; ok {
for _, node := range nodes {
select {
case c <- node:
case <-ctx.Done():
return
}
}
}
}()
return c
}
func (d *daocache) GetNodeTree(ctx context.Context, path mtree.MPath, filter ...*tree.MetaFilter) chan interface{} {
c := make(chan interface{})
go func() {
d.mutex.RLock()
defer d.mutex.RUnlock()
defer close(c)
childRegexp := regexp.MustCompile(`^` + path.String() + `\..*`)
// Looping
var keys []string
for k := range d.cache {
if childRegexp.MatchString(k) {
keys = append(keys, k)
}
}
// Resort keys
sort.Strings(keys)
for _, k := range keys {
select {
case c <- d.cache[k]:
case <-ctx.Done():
return
}
}
}()
return c
}
func (d *daocache) MoveNodeTree(nodeFrom *mtree.TreeNode, nodeTo *mtree.TreeNode) error {
err := d.DAO.MoveNodeTree(nodeFrom, nodeTo)
// resync is necessary although operations are grouped by type and we call Flush between each group
// otherwise move inside move can fail
d.Flush(false)
return err
}
func (d *daocache) ResyncDirtyEtags(rootNode *mtree.TreeNode) error {
err := d.DAO.ResyncDirtyEtags(rootNode)
d.resync()
return err
}
func (d *daocache) CleanResourcesOnDeletion() (string, error) {
return d.DAO.CleanResourcesOnDeletion()
}
func (d *daocache) LostAndFounds(ctx context.Context) ([]LostAndFound, error) {
return d.DAO.LostAndFounds(ctx)
}
func (d *daocache) FixLostAndFound(lost LostAndFound) error {
return d.DAO.FixLostAndFound(lost)
}
func (d *daocache) Flatten() (string, error) {
return d.DAO.Flatten()
}