unixfs.go 8.18 KB
Newer Older
1 2 3
package options

import (
4 5 6
	"errors"
	"fmt"

Steven Allen's avatar
Steven Allen committed
7
	cid "gx/ipfs/QmR8BauakNcBa3RbE4nbQu76PDiJgoQgz8AJdhJuiU4TAw/go-cid"
8
	dag "gx/ipfs/Qmb2UEG2TAeVrEJSjqsZF7Y2he7wRDkrdt6c3bECxwZf4k/go-merkledag"
Steven Allen's avatar
Steven Allen committed
9
	mh "gx/ipfs/QmerPMzPk1mJVowm8KgmoknWa4yCYvvugMPsgWmDNUvDLW/go-multihash"
10 11
)

12 13 14 15
type Layout int

const (
	BalancedLayout Layout = iota
16
	TrickleLayout
17 18
)

19 20 21 22
type UnixfsAddSettings struct {
	CidVersion int
	MhType     uint64

23
	Inline       bool
24 25 26
	InlineLimit  int
	RawLeaves    bool
	RawLeavesSet bool
27 28 29

	Chunker string
	Layout  Layout
30 31 32

	Pin      bool
	OnlyHash bool
33 34
	FsCache  bool
	NoCopy   bool
Łukasz Magiera's avatar
Łukasz Magiera committed
35

36 37 38
	Wrap      bool
	Hidden    bool
	StdinName string
39 40 41 42

	Events   chan<- interface{}
	Silent   bool
	Progress bool
43 44
}

Łukasz Magiera's avatar
Łukasz Magiera committed
45 46
type UnixfsLsSettings struct {
	Async bool
47 48 49

	ResolveType bool
	ResolveSize bool
Łukasz Magiera's avatar
Łukasz Magiera committed
50 51
}

52
type UnixfsAddOption func(*UnixfsAddSettings) error
Łukasz Magiera's avatar
Łukasz Magiera committed
53
type UnixfsLsOption func(*UnixfsLsSettings) error
54

55
func UnixfsAddOptions(opts ...UnixfsAddOption) (*UnixfsAddSettings, cid.Prefix, error) {
56 57 58 59
	options := &UnixfsAddSettings{
		CidVersion: -1,
		MhType:     mh.SHA2_256,

60 61
		Inline:       false,
		InlineLimit:  32,
62 63
		RawLeaves:    false,
		RawLeavesSet: false,
64 65 66

		Chunker: "size-262144",
		Layout:  BalancedLayout,
67 68 69

		Pin:      false,
		OnlyHash: false,
70 71
		FsCache:  false,
		NoCopy:   false,
Łukasz Magiera's avatar
Łukasz Magiera committed
72

73 74 75
		Wrap:      false,
		Hidden:    false,
		StdinName: "",
76 77 78 79

		Events:   nil,
		Silent:   false,
		Progress: false,
80 81 82 83 84
	}

	for _, opt := range opts {
		err := opt(options)
		if err != nil {
85 86 87 88
			return nil, cid.Prefix{}, err
		}
	}

89 90 91 92 93 94 95 96 97 98 99
	// nocopy -> rawblocks
	if options.NoCopy && !options.RawLeaves {
		// fixed?
		if options.RawLeavesSet {
			return nil, cid.Prefix{}, fmt.Errorf("nocopy option requires '--raw-leaves' to be enabled as well")
		}

		// No, satisfy mandatory constraint.
		options.RawLeaves = true
	}

100 101 102 103 104 105 106 107 108 109 110 111 112 113
	// (hash != "sha2-256") -> CIDv1
	if options.MhType != mh.SHA2_256 {
		switch options.CidVersion {
		case 0:
			return nil, cid.Prefix{}, errors.New("CIDv0 only supports sha2-256")
		case 1, -1:
			options.CidVersion = 1
		default:
			return nil, cid.Prefix{}, fmt.Errorf("unknown CID version: %d", options.CidVersion)
		}
	} else {
		if options.CidVersion < 0 {
			// Default to CIDv0
			options.CidVersion = 0
114 115 116
		}
	}

117 118 119 120 121 122 123 124 125 126 127 128 129 130
	// cidV1 -> raw blocks (by default)
	if options.CidVersion > 0 && !options.RawLeavesSet {
		options.RawLeaves = true
	}

	prefix, err := dag.PrefixForCidVersion(options.CidVersion)
	if err != nil {
		return nil, cid.Prefix{}, err
	}

	prefix.MhType = options.MhType
	prefix.MhLength = -1

	return options, prefix, nil
131 132
}

Łukasz Magiera's avatar
Łukasz Magiera committed
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
func UnixfsLsOptions(opts ...UnixfsLsOption) (*UnixfsLsSettings, error) {
	options := &UnixfsLsSettings{
		Async: true,
	}

	for _, opt := range opts {
		err := opt(options)
		if err != nil {
			return nil, err
		}
	}

	return options, nil
}

148 149 150 151
type unixfsOpts struct{}

var Unixfs unixfsOpts

152 153
// CidVersion specifies which CID version to use. Defaults to 0 unless an option
// that depends on CIDv1 is passed.
154 155 156 157 158 159 160
func (unixfsOpts) CidVersion(version int) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.CidVersion = version
		return nil
	}
}

161 162 163
// Hash function to use. Implies CIDv1 if not set to sha2-256 (default).
//
// Table of functions is declared in https://github.com/multiformats/go-multihash/blob/master/multihash.go
164 165 166 167 168 169
func (unixfsOpts) Hash(mhtype uint64) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.MhType = mhtype
		return nil
	}
}
170

171 172
// RawLeaves specifies whether to use raw blocks for leaves (data nodes with no
// links) instead of wrapping them with unixfs structures.
173 174 175 176 177 178 179 180
func (unixfsOpts) RawLeaves(enable bool) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.RawLeaves = enable
		settings.RawLeavesSet = true
		return nil
	}
}

181 182 183 184 185 186 187 188
// Inline tells the adder to inline small blocks into CIDs
func (unixfsOpts) Inline(enable bool) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.Inline = enable
		return nil
	}
}

189
// InlineLimit sets the amount of bytes below which blocks will be encoded
190 191 192 193
// directly into CID instead of being stored and addressed by it's hash.
// Specifying this option won't enable block inlining. For that use `Inline`
// option. Default: 32 bytes
//
194
// Note that while there is no hard limit on the number of bytes, it should be
195 196
// kept at a reasonably low value, such as 64; implementations may choose to
// reject anything larger.
197 198 199 200 201 202
func (unixfsOpts) InlineLimit(limit int) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.InlineLimit = limit
		return nil
	}
}
203

204 205 206 207 208
// Chunker specifies settings for the chunking algorithm to use.
//
// Default: size-262144, formats:
// size-[bytes] - Simple chunker splitting data into blocks of n bytes
// rabin-[min]-[avg]-[max] - Rabin chunker
209 210 211 212 213 214 215
func (unixfsOpts) Chunker(chunker string) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.Chunker = chunker
		return nil
	}
}

216 217 218 219
// Layout tells the adder how to balance data between leaves.
// options.BalancedLayout is the default, it's optimized for static seekable
// files.
// options.TrickleLayout is optimized for streaming data,
220 221 222 223 224 225
func (unixfsOpts) Layout(layout Layout) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.Layout = layout
		return nil
	}
}
226

227
// Pin tells the adder to pin the file root recursively after adding
228 229 230 231 232 233 234
func (unixfsOpts) Pin(pin bool) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.Pin = pin
		return nil
	}
}

235 236
// HashOnly will make the adder calculate data hash without storing it in the
// blockstore or announcing it to the network
237 238 239 240 241 242 243
func (unixfsOpts) HashOnly(hashOnly bool) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.OnlyHash = hashOnly
		return nil
	}
}

Łukasz Magiera's avatar
Łukasz Magiera committed
244 245 246 247 248 249 250 251
// Wrap tells the adder to wrap the added file structure with an additional
// directory.
func (unixfsOpts) Wrap(wrap bool) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.Wrap = wrap
		return nil
	}
}
252 253 254 255 256 257 258 259

// Hidden enables adding of hidden files (files prefixed with '.')
func (unixfsOpts) Hidden(hidden bool) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.Hidden = hidden
		return nil
	}
}
260 261 262 263 264 265 266 267 268

// StdinName is the name set for files which don specify FilePath as
// os.Stdin.Name()
func (unixfsOpts) StdinName(name string) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.StdinName = name
		return nil
	}
}
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

// Events specifies channel which will be used to report events about ongoing
// Add operation.
//
// Note that if this channel blocks it may slowdown the adder
func (unixfsOpts) Events(sink chan<- interface{}) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.Events = sink
		return nil
	}
}

// Silent reduces event output
func (unixfsOpts) Silent(silent bool) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.Silent = silent
		return nil
	}
}

// Progress tells the adder whether to enable progress events
func (unixfsOpts) Progress(enable bool) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.Progress = enable
		return nil
	}
}
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315

// FsCache tells the adder to check the filestore for pre-existing blocks
//
// Experimental
func (unixfsOpts) FsCache(enable bool) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.FsCache = enable
		return nil
	}
}

// NoCopy tells the adder to add the files using filestore. Implies RawLeaves.
//
// Experimental
func (unixfsOpts) Nocopy(enable bool) UnixfsAddOption {
	return func(settings *UnixfsAddSettings) error {
		settings.NoCopy = enable
		return nil
	}
}
Łukasz Magiera's avatar
Łukasz Magiera committed
316 317 318 319 320 321 322 323 324 325

// Async tells ls to return results as soon as they are available, which can be
// useful for listing HAMT directories. When this option is set to true returned
// results won't be returned in order
func (unixfsOpts) Async(async bool) UnixfsLsOption {
	return func(settings *UnixfsLsSettings) error {
		settings.Async = async
		return nil
	}
}
326 327 328 329 330 331 332 333 334 335 336 337 338 339

func (unixfsOpts) ResolveSize(resolve bool) UnixfsLsOption {
	return func(settings *UnixfsLsSettings) error {
		settings.ResolveSize = resolve
		return nil
	}
}

func (unixfsOpts) ResolveType(resolve bool) UnixfsLsOption {
	return func(settings *UnixfsLsSettings) error {
		settings.ResolveSize = resolve
		return nil
	}
}