filesystem.go 6.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// Copyright 2016 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/>.

package api

import (
	"bufio"
21
	"context"
22 23 24 25
	"fmt"
	"io"
	"net/http"
	"os"
26
	"path"
27 28 29 30
	"path/filepath"
	"sync"

	"github.com/ethereum/go-ethereum/common"
31
	"github.com/ethereum/go-ethereum/swarm/log"
32 33 34 35 36 37
	"github.com/ethereum/go-ethereum/swarm/storage"
)

const maxParallelFiles = 5

type FileSystem struct {
38
	api *API
39 40
}

41
func NewFileSystem(api *API) *FileSystem {
42 43 44 45
	return &FileSystem{api}
}

// Upload replicates a local directory as a manifest file and uploads it
46 47
// using FileStore store
// This function waits the chunks to be stored.
48
// TODO: localpath should point to a manifest
49 50
//
// DEPRECATED: Use the HTTP API instead
51
func (fs *FileSystem) Upload(lpath, index string, toEncrypt bool) (string, error) {
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
	var list []*manifestTrieEntry
	localpath, err := filepath.Abs(filepath.Clean(lpath))
	if err != nil {
		return "", err
	}

	f, err := os.Open(localpath)
	if err != nil {
		return "", err
	}
	stat, err := f.Stat()
	if err != nil {
		return "", err
	}

	var start int
	if stat.IsDir() {
		start = len(localpath)
70
		log.Debug(fmt.Sprintf("uploading '%s'", localpath))
71 72 73 74 75 76 77 78
		err = filepath.Walk(localpath, func(path string, info os.FileInfo, err error) error {
			if (err == nil) && !info.IsDir() {
				if len(path) <= start {
					return fmt.Errorf("Path is too short")
				}
				if path[:start] != localpath {
					return fmt.Errorf("Path prefix of '%s' does not match localpath '%s'", path, localpath)
				}
79
				entry := newManifestTrieEntry(&ManifestEntry{Path: filepath.ToSlash(path)}, nil)
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
				list = append(list, entry)
			}
			return err
		})
		if err != nil {
			return "", err
		}
	} else {
		dir := filepath.Dir(localpath)
		start = len(dir)
		if len(localpath) <= start {
			return "", fmt.Errorf("Path is too short")
		}
		if localpath[:start] != dir {
			return "", fmt.Errorf("Path prefix of '%s' does not match dir '%s'", localpath, dir)
		}
96
		entry := newManifestTrieEntry(&ManifestEntry{Path: filepath.ToSlash(localpath)}, nil)
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
		list = append(list, entry)
	}

	cnt := len(list)
	errors := make([]error, cnt)
	done := make(chan bool, maxParallelFiles)
	dcnt := 0
	awg := &sync.WaitGroup{}

	for i, entry := range list {
		if i >= dcnt+maxParallelFiles {
			<-done
			dcnt++
		}
		awg.Add(1)
		go func(i int, entry *manifestTrieEntry, done chan bool) {
			f, err := os.Open(entry.Path)
			if err == nil {
				stat, _ := f.Stat()
116
				var hash storage.Address
117 118 119
				var wait func(context.Context) error
				ctx := context.TODO()
				hash, wait, err = fs.api.fileStore.Store(ctx, f, stat.Size(), toEncrypt)
120
				if hash != nil {
121
					list[i].Hash = hash.Hex()
122
				}
123
				err = wait(ctx)
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
				awg.Done()
				if err == nil {
					first512 := make([]byte, 512)
					fread, _ := f.ReadAt(first512, 0)
					if fread > 0 {
						mimeType := http.DetectContentType(first512[:fread])
						if filepath.Ext(entry.Path) == ".css" {
							mimeType = "text/css"
						}
						list[i].ContentType = mimeType
					}
				}
				f.Close()
			}
			errors[i] = err
			done <- true
		}(i, entry, done)
	}
	for dcnt < cnt {
		<-done
		dcnt++
	}

	trie := &manifestTrie{
148
		fileStore: fs.api.fileStore,
149 150 151 152 153 154 155 156
	}
	quitC := make(chan bool)
	for i, entry := range list {
		if errors[i] != nil {
			return "", errors[i]
		}
		entry.Path = RegularSlashes(entry.Path[start:])
		if entry.Path == index {
157
			ientry := newManifestTrieEntry(&ManifestEntry{
158
				ContentType: entry.ContentType,
159 160
			}, nil)
			ientry.Hash = entry.Hash
161 162 163 164 165 166 167 168
			trie.addEntry(ientry, quitC)
		}
		trie.addEntry(entry, quitC)
	}

	err2 := trie.recalcAndStore()
	var hs string
	if err2 == nil {
169
		hs = trie.ref.Hex()
170 171 172 173 174
	}
	awg.Wait()
	return hs, err2
}

175
// Download replicates the manifest basePath structure on the local filesystem
176
// under localpath
177 178
//
// DEPRECATED: Use the HTTP API instead
179
func (fs *FileSystem) Download(bzzpath, localpath string) error {
180 181 182 183 184 185 186 187 188 189
	lpath, err := filepath.Abs(filepath.Clean(localpath))
	if err != nil {
		return err
	}
	err = os.MkdirAll(lpath, os.ModePerm)
	if err != nil {
		return err
	}

	//resolving host and port
190 191 192 193
	uri, err := Parse(path.Join("bzz:/", bzzpath))
	if err != nil {
		return err
	}
194
	addr, err := fs.api.Resolve(context.TODO(), uri.Addr)
195 196 197
	if err != nil {
		return err
	}
198
	path := uri.Path
199 200 201 202 203 204

	if len(path) > 0 {
		path += "/"
	}

	quitC := make(chan bool)
205
	trie, err := loadManifest(context.TODO(), fs.api.fileStore, addr, quitC, NOOPDecrypt)
206
	if err != nil {
207
		log.Warn(fmt.Sprintf("fs.Download: loadManifestTrie error: %v", err))
208 209 210 211
		return err
	}

	type downloadListEntry struct {
212
		addr storage.Address
213 214 215 216 217 218 219 220
		path string
	}

	var list []*downloadListEntry
	var mde error

	prevPath := lpath
	err = trie.listWithPrefix(path, quitC, func(entry *manifestTrieEntry, suffix string) {
221
		log.Trace(fmt.Sprintf("fs.Download: %#v", entry))
222

223
		addr = common.Hex2Bytes(entry.Hash)
224 225 226 227 228 229 230
		path := lpath + "/" + suffix
		dir := filepath.Dir(path)
		if dir != prevPath {
			mde = os.MkdirAll(dir, os.ModePerm)
			prevPath = dir
		}
		if (mde == nil) && (path != dir+"/") {
231
			list = append(list, &downloadListEntry{addr: addr, path: path})
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
		}
	})
	if err != nil {
		return err
	}

	wg := sync.WaitGroup{}
	errC := make(chan error)
	done := make(chan bool, maxParallelFiles)
	for i, entry := range list {
		select {
		case done <- true:
			wg.Add(1)
		case <-quitC:
			return fmt.Errorf("aborted")
		}
		go func(i int, entry *downloadListEntry) {
			defer wg.Done()
250
			err := retrieveToFile(quitC, fs.api.fileStore, entry.addr, entry.path)
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
			if err != nil {
				select {
				case errC <- err:
				case <-quitC:
				}
				return
			}
			<-done
		}(i, entry)
	}
	go func() {
		wg.Wait()
		close(errC)
	}()
	select {
	case err = <-errC:
		return err
	case <-quitC:
		return fmt.Errorf("aborted")
	}
271
}
272

273
func retrieveToFile(quitC chan bool, fileStore *storage.FileStore, addr storage.Address, path string) error {
274
	f, err := os.Create(path) // TODO: basePath separators
275 276 277
	if err != nil {
		return err
	}
278
	reader, _ := fileStore.Retrieve(context.TODO(), addr)
279
	writer := bufio.NewWriter(f)
280
	size, err := reader.Size(context.TODO(), quitC)
281 282 283 284 285 286 287 288 289 290
	if err != nil {
		return err
	}
	if _, err = io.CopyN(writer, reader, size); err != nil {
		return err
	}
	if err := writer.Flush(); err != nil {
		return err
	}
	return f.Close()
291
}