forked from keybase/kbfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prefetch_file.go
34 lines (28 loc) · 975 Bytes
/
prefetch_file.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
// Copyright 2016 Keybase Inc. All rights reserved.
// Use of this source code is governed by a BSD
// license that can be found in the LICENSE file.
package libdokan
import (
"github.com/keybase/kbfs/dokan"
"github.com/keybase/kbfs/libkbfs"
"golang.org/x/net/context"
)
// PrefetchFile represents a write-only file where any write of at least one
// byte triggers either disabling or enabling prefetching. It is mainly useful
// for testing.
type PrefetchFile struct {
fs *FS
enable bool
specialWriteFile
}
// WriteFile performs writes for dokan.
func (f *PrefetchFile) WriteFile(ctx context.Context, fi *dokan.FileInfo, bs []byte, offset int64) (n int, err error) {
f.fs.logEnter(ctx, "PrefetchFile WriteFile")
defer func() { f.fs.reportErr(ctx, libkbfs.WriteMode, err) }()
f.fs.log.CDebugf(ctx, "PrefetchFile (enable: %t) Write", f.enable)
if len(bs) == 0 {
return 0, nil
}
f.fs.config.BlockOps().TogglePrefetcher(f.enable)
return len(bs), err
}