aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/fuse/fuse_file.go
blob: 32c85d02f7ce5464718237ae727a5a67a38950a5 (plain) (blame)
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
// Copyright 2017 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

// +build linux darwin freebsd

package fuse

import (
    "bazil.org/fuse"
    "bazil.org/fuse/fs"
    "errors"
    "github.com/ethereum/go-ethereum/log"
    "github.com/ethereum/go-ethereum/swarm/storage"
    "golang.org/x/net/context"
    "io"
    "os"
    "sync"
)

const (
    MaxAppendFileSize = 10485760 // 10Mb
)

var (
    errInvalidOffset           = errors.New("Invalid offset during write")
    errFileSizeMaxLimixReached = errors.New("File size exceeded max limit")
)

var (
    _ fs.Node         = (*SwarmFile)(nil)
    _ fs.HandleReader = (*SwarmFile)(nil)
    _ fs.HandleWriter = (*SwarmFile)(nil)
)

type SwarmFile struct {
    inode    uint64
    name     string
    path     string
    key      storage.Key
    fileSize int64
    reader   storage.LazySectionReader

    mountInfo *MountInfo
    lock      *sync.RWMutex
}

func NewSwarmFile(path, fname string, minfo *MountInfo) *SwarmFile {
    newFile := &SwarmFile{
        inode:    NewInode(),
        name:     fname,
        path:     path,
        key:      nil,
        fileSize: -1, // -1 means , file already exists in swarm and you need to just get the size from swarm
        reader:   nil,

        mountInfo: minfo,
        lock:      &sync.RWMutex{},
    }
    return newFile
}

func (file *SwarmFile) Attr(ctx context.Context, a *fuse.Attr) error {

    a.Inode = file.inode
    //TODO: need to get permission as argument
    a.Mode = 0700
    a.Uid = uint32(os.Getuid())
    a.Gid = uint32(os.Getegid())

    if file.fileSize == -1 {
        reader := file.mountInfo.swarmApi.Retrieve(file.key)
        quitC := make(chan bool)
        size, err := reader.Size(quitC)
        if err != nil {
            log.Warn("Couldnt get size of file %s : %v", file.path, err)
        }
        file.fileSize = int64(size)
    }
    a.Size = uint64(file.fileSize)
    return nil
}

func (sf *SwarmFile) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) error {

    sf.lock.RLock()
    defer sf.lock.RUnlock()
    if sf.reader == nil {
        sf.reader = sf.mountInfo.swarmApi.Retrieve(sf.key)
    }
    buf := make([]byte, req.Size)
    n, err := sf.reader.ReadAt(buf, req.Offset)
    if err == io.ErrUnexpectedEOF || err == io.EOF {
        err = nil
    }
    resp.Data = buf[:n]
    sf.reader = nil
    return err

}

func (sf *SwarmFile) Write(ctx context.Context, req *fuse.WriteRequest, resp *fuse.WriteResponse) error {

    if sf.fileSize == 0 && req.Offset == 0 {

        // A new file is created
        err := addFileToSwarm(sf, req.Data, len(req.Data))
        if err != nil {
            return err
        }
        resp.Size = len(req.Data)

    } else if req.Offset <= sf.fileSize {

        totalSize := sf.fileSize + int64(len(req.Data))
        if totalSize > MaxAppendFileSize {
            log.Warn("Append file size reached (%v) : (%v)", sf.fileSize, len(req.Data))
            return errFileSizeMaxLimixReached
        }

        err := appendToExistingFileInSwarm(sf, req.Data, req.Offset, int64(len(req.Data)))
        if err != nil {
            return err
        }
        resp.Size = len(req.Data)
    } else {
        log.Warn("Invalid write request size(%v) : off(%v)", sf.fileSize, req.Offset)
        return errInvalidOffset
    }

    return nil
}