forked from keybase/kbfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reclaim_quota_file.go
32 lines (28 loc) · 1.04 KB
/
reclaim_quota_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
// 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"
)
// ReclaimQuotaFile represents a write-only file when any write of at
// least one byte triggers a quota reclamation of the folder.
type ReclaimQuotaFile struct {
folder *Folder
specialWriteFile
}
// WriteFile implements writes for dokan. Note a write triggers quota
// reclamation, but does not wait for it to finish. If you want to
// wait, write to SyncFromServerFileName.
func (f *ReclaimQuotaFile) WriteFile(ctx context.Context, fi *dokan.FileInfo, bs []byte, offset int64) (n int, err error) {
f.folder.fs.logEnter(ctx, "ReclaimQuotaFile Write")
defer func() { f.folder.reportErr(ctx, libkbfs.WriteMode, err) }()
if len(bs) == 0 {
return 0, nil
}
err = libkbfs.ForceQuotaReclamationForTesting(
f.folder.fs.config, f.folder.getFolderBranch())
return len(bs), err
}