Skip to content

Commit 6f82f7b

Browse files
author
Brian Tiger Chow
committed
Merge branch 'master' into feat/bitswap-internal-notifications
2 parents 888af21 + 5a41a2a commit 6f82f7b

File tree

11 files changed

+51
-41
lines changed

11 files changed

+51
-41
lines changed

cmd/ipfs/init.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func initCmd(c *commander.Command, inp []string) error {
4343
}
4444
cfg := new(config.Config)
4545

46-
cfg.Datastore = new(config.Datastore)
46+
cfg.Datastore = config.Datastore{}
4747
dspath, err := u.TildeExpansion("~/.go-ipfs/datastore")
4848
if err != nil {
4949
return err
@@ -72,7 +72,7 @@ func initCmd(c *commander.Command, inp []string) error {
7272
}
7373
cfg.Identity.PrivKey = base64.StdEncoding.EncodeToString(skbytes)
7474

75-
id, err := identify.IdFromPubKey(pk)
75+
id, err := identify.IDFromPubKey(pk)
7676
if err != nil {
7777
return err
7878
}

config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ type SavedPeer struct {
3030
// Config is used to load IPFS config files.
3131
type Config struct {
3232
Identity *Identity
33-
Datastore *Datastore
33+
Datastore Datastore
3434
Peers []*SavedPeer
3535
}
3636

config/config_test.go

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
package config
22

33
import (
4-
"fmt"
54
"testing"
65
)
76

87
func TestConfig(t *testing.T) {
9-
10-
cfg, err := Load(".ipfsconfig")
8+
const filename = ".ipfsconfig"
9+
const dsPath = "/path/to/datastore"
10+
cfgWritten := new(Config)
11+
cfgWritten.Datastore.Path = dsPath
12+
err := WriteConfigFile(filename, cfgWritten)
13+
if err != nil {
14+
t.Error(err)
15+
}
16+
cfgRead, err := Load(filename)
1117
if err != nil {
1218
t.Error(err)
1319
return
1420
}
15-
16-
fmt.Printf(cfg.Datastore.Path)
21+
if cfgWritten.Datastore.Path != cfgRead.Datastore.Path {
22+
t.Fail()
23+
}
1724
}

core/core_test.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,34 @@ import (
77
)
88

99
func TestInitialization(t *testing.T) {
10-
id := &config.Identity {
11-
PeerID: "QmNgdzLieYi8tgfo2WfTUzNVH5hQK9oAYGVf6dxN12NrHt",
10+
id := &config.Identity{
11+
PeerID: "QmNgdzLieYi8tgfo2WfTUzNVH5hQK9oAYGVf6dxN12NrHt",
1212
Address: "/ip4/127.0.0.1/tcp/8000",
1313
PrivKey: "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",
1414
}
1515

1616
good := []*config.Config{
17-
&config.Config {
17+
&config.Config{
1818
Identity: id,
19-
Datastore: &config.Datastore{
19+
Datastore: config.Datastore{
2020
Type: "memory",
2121
},
2222
},
2323

24-
&config.Config {
24+
&config.Config{
2525
Identity: id,
26-
Datastore: &config.Datastore {
26+
Datastore: config.Datastore{
2727
Type: "leveldb",
2828
Path: ".testdb",
2929
},
3030
},
3131
}
3232

3333
bad := []*config.Config{
34-
&config.Config{Identity: id, Datastore: &config.Datastore{}},
35-
&config.Config{Identity: id, Datastore: &config.Datastore{Type: "badtype"}},
34+
&config.Config{Identity: id, Datastore: config.Datastore{}},
35+
&config.Config{Identity: id, Datastore: config.Datastore{Type: "badtype"}},
3636
&config.Config{},
37-
&config.Config{Datastore: &config.Datastore{Type: "memory"}},
37+
&config.Config{Datastore: config.Datastore{Type: "memory"}},
3838
nil,
3939
}
4040

core/datastore.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ package core
22

33
import (
44
"fmt"
5+
56
ds "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/datastore.go"
67
lds "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/datastore.go/leveldb"
78
config "github.com/jbenet/go-ipfs/config"
89
)
910

10-
func makeDatastore(cfg *config.Datastore) (ds.Datastore, error) {
11-
if cfg == nil || len(cfg.Type) == 0 {
11+
func makeDatastore(cfg config.Datastore) (ds.Datastore, error) {
12+
if len(cfg.Type) == 0 {
1213
return nil, fmt.Errorf("config datastore.type required")
1314
}
1415

@@ -22,7 +23,7 @@ func makeDatastore(cfg *config.Datastore) (ds.Datastore, error) {
2223
return nil, fmt.Errorf("Unknown datastore type: %s", cfg.Type)
2324
}
2425

25-
func makeLevelDBDatastore(cfg *config.Datastore) (ds.Datastore, error) {
26+
func makeLevelDBDatastore(cfg config.Datastore) (ds.Datastore, error) {
2627
if len(cfg.Path) == 0 {
2728
return nil, fmt.Errorf("config datastore.path required for leveldb")
2829
}

identify/identify.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// The identify package handles how peers identify with eachother upon
1+
// Package identify handles how peers identify with eachother upon
22
// connection to the network
33
package identify
44

@@ -31,7 +31,7 @@ var SupportedHashes = "SHA256,SHA512,SHA1"
3131
// ErrUnsupportedKeyType is returned when a private key cast/type switch fails.
3232
var ErrUnsupportedKeyType = errors.New("unsupported key type")
3333

34-
// Perform initial communication with this peer to share node ID's and
34+
// Performs initial communication with this peer to share node ID's and
3535
// initiate communication. (secureIn, secureOut, error)
3636
func Handshake(self, remote *peer.Peer, in, out chan []byte) (chan []byte, chan []byte, error) {
3737
// Generate and send Hello packet.
@@ -74,7 +74,7 @@ func Handshake(self, remote *peer.Peer, in, out chan []byte) (chan []byte, chan
7474
return nil, nil, err
7575
}
7676

77-
remote.ID, err = IdFromPubKey(remote.PubKey)
77+
remote.ID, err = IDFromPubKey(remote.PubKey)
7878
if err != nil {
7979
return nil, nil, err
8080
}
@@ -239,7 +239,8 @@ func secureOutProxy(out, secureOut chan []byte, hashType string, mIV, mCKey, mMK
239239
}
240240
}
241241

242-
func IdFromPubKey(pk ci.PubKey) (peer.ID, error) {
242+
// IDFromPubKey returns Nodes ID given its public key
243+
func IDFromPubKey(pk ci.PubKey) (peer.ID, error) {
243244
b, err := pk.Bytes()
244245
if err != nil {
245246
return nil, err

identify/identify_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func TestHandshake(t *testing.T) {
2020
cha := make(chan []byte, 5)
2121
chb := make(chan []byte, 5)
2222

23-
ida, err := IdFromPubKey(pka)
23+
ida, err := IDFromPubKey(pka)
2424
if err != nil {
2525
t.Fatal(err)
2626
}
@@ -30,7 +30,7 @@ func TestHandshake(t *testing.T) {
3030
PrivKey: ska,
3131
}
3232

33-
idb, err := IdFromPubKey(pkb)
33+
idb, err := IDFromPubKey(pkb)
3434
if err != nil {
3535
t.Fatal(err)
3636
}

importer/splitting.go

+12-11
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,13 @@ func SplitterBySize(n int) BlockSplitter {
3434
}
3535

3636
// TODO: this should take a reader, not a byte array. what if we're splitting a 3TB file?
37+
//Rabin Fingerprinting for file chunking
3738
func Rabin(b []byte) [][]byte {
3839
var out [][]byte
3940
windowsize := uint64(48)
40-
chunk_max := 1024 * 16
41-
min_blk_size := 2048
42-
blk_beg_i := 0
41+
chunkMax := 1024 * 16
42+
minBlkSize := 2048
43+
blkBegI := 0
4344
prime := uint64(61)
4445

4546
var poly uint64
@@ -63,21 +64,21 @@ func Rabin(b []byte) [][]byte {
6364
poly = (poly * prime) + cur
6465
curchecksum -= (uint64(b[i-1]) * prime)
6566

66-
if i-blk_beg_i >= chunk_max {
67+
if i-blkBegI >= chunkMax {
6768
// push block
68-
out = append(out, b[blk_beg_i:i])
69-
blk_beg_i = i
69+
out = append(out, b[blkBegI:i])
70+
blkBegI = i
7071
}
7172

7273
// first 13 bits of polynomial are 0
73-
if poly%8192 == 0 && i-blk_beg_i >= min_blk_size {
74+
if poly%8192 == 0 && i-blkBegI >= minBlkSize {
7475
// push block
75-
out = append(out, b[blk_beg_i:i])
76-
blk_beg_i = i
76+
out = append(out, b[blkBegI:i])
77+
blkBegI = i
7778
}
7879
}
79-
if i > blk_beg_i {
80-
out = append(out, b[blk_beg_i:])
80+
if i > blkBegI {
81+
out = append(out, b[blkBegI:])
8182
}
8283
return out
8384
}

merkledag/dagreader.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
u "github.com/jbenet/go-ipfs/util"
1010
)
1111

12-
var ErrIsDir = errors.New("this dag node is a directory.")
12+
var ErrIsDir = errors.New("this dag node is a directory")
1313

1414
// DagReader provides a way to easily read the data contained in a dag.
1515
type DagReader struct {

peer/peer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
// ID is a byte slice representing the identity of a peer.
1717
type ID mh.Multihash
1818

19-
// Utililty function for comparing two peer ID's
19+
// Equal is utililty function for comparing two peer ID's
2020
func (id ID) Equal(other ID) bool {
2121
return bytes.Equal(id, other)
2222
}

routing/dht/dht_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func setupDHTS(n int, t *testing.T) ([]*ma.Multiaddr, []*peer.Peer, []*IpfsDHT)
3535
}
3636
p.PubKey = pk
3737
p.PrivKey = sk
38-
id, err := identify.IdFromPubKey(pk)
38+
id, err := identify.IDFromPubKey(pk)
3939
if err != nil {
4040
panic(err)
4141
}
@@ -67,7 +67,7 @@ func makePeer(addr *ma.Multiaddr) *peer.Peer {
6767
}
6868
p.PrivKey = sk
6969
p.PubKey = pk
70-
id, err := identify.IdFromPubKey(pk)
70+
id, err := identify.IDFromPubKey(pk)
7171
if err != nil {
7272
panic(err)
7373
}

0 commit comments

Comments
 (0)