|
| 1 | +package blockstore |
| 2 | + |
| 3 | +import ( |
| 4 | + "context" |
| 5 | + llog "log" |
| 6 | + "os" |
| 7 | + |
| 8 | + blocks "github.com/ipfs/go-block-format" |
| 9 | + cid "github.com/ipfs/go-cid" |
| 10 | +) |
| 11 | + |
| 12 | +type LogStore struct { |
| 13 | + logger *llog.Logger |
| 14 | + bs Blockstore |
| 15 | +} |
| 16 | + |
| 17 | +// DeleteMany implements Blockstore. |
| 18 | +func (l *LogStore) DeleteMany(ctx context.Context, cids []cid.Cid) error { |
| 19 | + for _, c := range cids { |
| 20 | + l.log(c, "delete", "") |
| 21 | + } |
| 22 | + return l.bs.DeleteMany(ctx, cids) |
| 23 | +} |
| 24 | + |
| 25 | +// Flush implements Blockstore. |
| 26 | +func (l *LogStore) Flush(ctx context.Context) error { |
| 27 | + l.logger.Println("flush") |
| 28 | + return l.bs.Flush(ctx) |
| 29 | +} |
| 30 | + |
| 31 | +// View implements Blockstore. |
| 32 | +func (l *LogStore) View(ctx context.Context, cid cid.Cid, callback func([]byte) error) error { |
| 33 | + l.log(cid, "view", "") |
| 34 | + return l.bs.View(ctx, cid, callback) |
| 35 | +} |
| 36 | + |
| 37 | +// AllKeysChan implements blockstore.Blockstore. |
| 38 | +func (l *LogStore) AllKeysChan(ctx context.Context) (<-chan cid.Cid, error) { |
| 39 | + return l.AllKeysChan(ctx) |
| 40 | +} |
| 41 | + |
| 42 | +// DeleteBlock implements blockstore.Blockstore. |
| 43 | +func (l *LogStore) DeleteBlock(ctx context.Context, c cid.Cid) error { |
| 44 | + l.log(c, "delete", "") |
| 45 | + return l.bs.DeleteBlock(ctx, c) |
| 46 | +} |
| 47 | + |
| 48 | +// Get implements blockstore.Blockstore. |
| 49 | +func (l *LogStore) Get(ctx context.Context, c cid.Cid) (blocks.Block, error) { |
| 50 | + l.log(c, "get", "") |
| 51 | + return l.bs.Get(ctx, c) |
| 52 | +} |
| 53 | + |
| 54 | +// GetSize implements blockstore.Blockstore. |
| 55 | +func (l *LogStore) GetSize(ctx context.Context, c cid.Cid) (int, error) { |
| 56 | + l.log(c, "getsize", "") |
| 57 | + return l.bs.GetSize(ctx, c) |
| 58 | +} |
| 59 | + |
| 60 | +// Has implements blockstore.Blockstore. |
| 61 | +func (l *LogStore) Has(ctx context.Context, c cid.Cid) (bool, error) { |
| 62 | + l.log(c, "has", "") |
| 63 | + return l.bs.Has(ctx, c) |
| 64 | +} |
| 65 | + |
| 66 | +// HashOnRead implements blockstore.Blockstore. |
| 67 | +func (l *LogStore) HashOnRead(enabled bool) { |
| 68 | + l.bs.HashOnRead(enabled) |
| 69 | +} |
| 70 | + |
| 71 | +// Put implements blockstore.Blockstore. |
| 72 | +func (l *LogStore) Put(ctx context.Context, b blocks.Block) error { |
| 73 | + l.log(b.Cid(), "put", "") |
| 74 | + return l.bs.Put(ctx, b) |
| 75 | +} |
| 76 | + |
| 77 | +// DeleteMany implements blockstore.Blockstore. |
| 78 | +func (l *LogStore) PutMany(ctx context.Context, bs []blocks.Block) error { |
| 79 | + for _, b := range bs { |
| 80 | + l.log(b.Cid(), "put", "") |
| 81 | + } |
| 82 | + return l.bs.PutMany(ctx, bs) |
| 83 | +} |
| 84 | + |
| 85 | +var _ Blockstore = (*LogStore)(nil) |
| 86 | + |
| 87 | +func NewLogStore(path string, bs Blockstore) *LogStore { |
| 88 | + file, err := os.OpenFile(path, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666) |
| 89 | + if err != nil { |
| 90 | + panic(err) |
| 91 | + } |
| 92 | + logger := llog.New(file, "", llog.LstdFlags) |
| 93 | + logger.Println("log store opened") |
| 94 | + return &LogStore{ |
| 95 | + logger: logger, |
| 96 | + bs: bs, |
| 97 | + } |
| 98 | +} |
| 99 | + |
| 100 | +func (l *LogStore) log(c cid.Cid, op, msg string) { |
| 101 | + l.logger.Printf("%s %s %s", c.String(), op, msg) |
| 102 | +} |
0 commit comments