ghee 0.6.1

That thin layer of data change management over the filesystem
Documentation
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
+ declare -A PREFIXES
+ PREFIXES=([relative]="." [absolute]="$EXAMPLE_PATH/FSNAME")
+ mkdir ./ext4
+ mkdir ./btrfs
+ mkdir ./empty
+ for i in "${!PREFIXES[@]}"
+ Make sure we are in the base path so the relative prefix resolves properly
+ cd /home/josh/Projects/Ghee/snapshot
+ prefix=.
+ '======= relative prefix: . ======='
+ ext4img=ghee-ext4-relative.img
+ dd if=/dev/zero of=ghee-ext4-relative.img bs=1M count=400
+ mkfs.ext4 -L ext4-relative ghee-ext4-relative.img
+ sudo mount -o loop ghee-ext4-relative.img ext4
+ sudo chown josh:josh ext4
+ fsprefix=.
+ cd ext4
+ main .
+ mkdir ./people
+ touch ./people/Sandeep ./people/Sofia ./people/Wulfrum
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Sandeep -s id=2 -s state=CA ./people/Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Sofia -s id=1 -s state=WA ./people/Sofia
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Wulfrum -s id=0 -s state=CA ./people/Wulfrum
+ Check how Ghee sees the files we just set up
+ /home/josh/Projects/Ghee/target/debug/ghee get ./people
./people/Sandeep	user.id	2
./people/Sandeep	user.name	Sandeep
./people/Sandeep	user.state	CA
./people/Sofia	user.id	1
./people/Sofia	user.name	Sofia
./people/Sofia	user.state	WA
./people/Wulfrum	user.id	0
./people/Wulfrum	user.name	Wulfrum
./people/Wulfrum	user.state	CA
+ Tell Ghee what key the data is indexed by
+ /home/josh/Projects/Ghee/target/debug/ghee init -k name ./people
+ Index the dataset by ID
+ /home/josh/Projects/Ghee/target/debug/ghee idx -v -k id ./people ./people:id
./people/Sofia -> ./people:id/1
./people/Wulfrum -> ./people:id/0
./people/Sandeep -> ./people:id/2
+ /home/josh/Projects/Ghee/target/debug/ghee idx -v -k state -k id ./people
./people/Sofia -> ./people/:state:id/WA/1
./people/Wulfrum -> ./people/:state:id/CA/0
./people/Sandeep -> ./people/:state:id/CA/2
+ /home/josh/Projects/Ghee/target/debug/ghee ins -v ./people
Initialized ./people/Janella
Linked ./people:id/3 -> ./people/Janella
Linked ./people/:state:id/FL/3 -> ./people/Janella
Initialized ./people/Lilly
Linked ./people:id/4 -> ./people/Lilly
Linked ./people/:state:id/NM/4 -> ./people/Lilly
Initialized ./people/Darrel
Linked ./people:id/5 -> ./people/Darrel
Linked ./people/:state:id/MI/5 -> ./people/Darrel
+ /home/josh/Projects/Ghee/target/debug/ghee get -a ./people
	user.ghee.tableinfo	{"key":"name","indices_abs":{"id":"/home/josh/Projects/Ghee/snapshot/ext4/people:id","name":"/home/josh/Projects/Ghee/snapshot/ext4/people","state,id":"/home/josh/Projects/Ghee/snapshot/ext4/people/:state:id"}}
./people/Darrel	user.id	5
./people/Darrel	user.name	Darrel
./people/Darrel	user.state	MI
./people/Janella	user.id	3
./people/Janella	user.name	Janella
./people/Janella	user.state	FL
./people/Lilly	user.id	4
./people/Lilly	user.name	Lilly
./people/Lilly	user.state	NM
./people/Sandeep	user.id	2
./people/Sandeep	user.name	Sandeep
./people/Sandeep	user.state	CA
./people/Sofia	user.id	1
./people/Sofia	user.name	Sofia
./people/Sofia	user.state	WA
./people/Wulfrum	user.id	0
./people/Wulfrum	user.name	Wulfrum
./people/Wulfrum	user.state	CA
+ /home/josh/Projects/Ghee/target/debug/ghee get -a -w state=CA -f name ./people
./people/Wulfrum	user.name	Wulfrum
./people/Sandeep	user.name	Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee del -v ./people -w name=Sofia
Removed ./people:id/1
Removed ./people/Sofia
Removed ./people/:state:id/WA/1
+ /home/josh/Projects/Ghee/target/debug/ghee del -v ./people:id 3
Removed ./people:id/3
Removed ./people/Janella
Removed ./people/:state:id/FL/3
+ /home/josh/Projects/Ghee/target/debug/ghee del -v ./people/:state:id CA 0
Removed ./people:id/0
Removed ./people/Wulfrum
Removed ./people/:state:id/CA/0
+ /home/josh/Projects/Ghee/target/debug/ghee get -a -w state=CA -f name ./people/:state:id
./people/:state:id/CA/2	user.name	Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee create -v ./direct -k blah
Initialized table ./direct with key: user.blah
+ /home/josh/Projects/Ghee/target/debug/ghee create -v ./people2 -k id
Initialized table ./people2 with key: user.id
Initialized ./people2/3
Initialized ./people2/4
Initialized ./people2/5
+ /home/josh/Projects/Ghee/target/debug/ghee status ./people2
+./people2
+./people2/3
+./people2/4
+./people2/5
+ mkdir ./empty
+ /home/josh/Projects/Ghee/target/debug/ghee status ./empty
No table found
+ /home/josh/Projects/Ghee/target/debug/ghee get ./empty
+ /home/josh/Projects/Ghee/target/debug/ghee get -a ./empty
+ cd ..
+ sudo umount ext4
+ btrfsimg=ghee-btrfs-relative.img
+ dd if=/dev/zero of=ghee-btrfs-relative.img bs=1M count=114
+ mkfs.btrfs -L btrfs-relative --rootdir empty ghee-btrfs-relative.img
+ sudo mount -o loop ghee-btrfs-relative.img btrfs
+ sudo chown josh:josh btrfs
+ fsprefix=.
+ cd btrfs
+ main .
+ mkdir ./people
+ touch ./people/Sandeep ./people/Sofia ./people/Wulfrum
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Sandeep -s id=2 -s state=CA ./people/Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Sofia -s id=1 -s state=WA ./people/Sofia
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Wulfrum -s id=0 -s state=CA ./people/Wulfrum
+ Check how Ghee sees the files we just set up
+ /home/josh/Projects/Ghee/target/debug/ghee get ./people
./people/Sandeep	user.id	2
./people/Sandeep	user.name	Sandeep
./people/Sandeep	user.state	CA
./people/Sofia	user.id	1
./people/Sofia	user.name	Sofia
./people/Sofia	user.state	WA
./people/Wulfrum	user.id	0
./people/Wulfrum	user.name	Wulfrum
./people/Wulfrum	user.state	CA
+ Tell Ghee what key the data is indexed by
+ /home/josh/Projects/Ghee/target/debug/ghee init -k name ./people
+ Index the dataset by ID
+ /home/josh/Projects/Ghee/target/debug/ghee idx -v -k id ./people ./people:id
./people/Sandeep -> ./people:id/2
./people/Sofia -> ./people:id/1
./people/Wulfrum -> ./people:id/0
+ /home/josh/Projects/Ghee/target/debug/ghee idx -v -k state -k id ./people
./people/Sandeep -> ./people/:state:id/CA/2
./people/Sofia -> ./people/:state:id/WA/1
./people/Wulfrum -> ./people/:state:id/CA/0
+ /home/josh/Projects/Ghee/target/debug/ghee ins -v ./people
Initialized ./people/Janella
Linked ./people:id/3 -> ./people/Janella
Linked ./people/:state:id/FL/3 -> ./people/Janella
Initialized ./people/Lilly
Linked ./people:id/4 -> ./people/Lilly
Linked ./people/:state:id/NM/4 -> ./people/Lilly
Initialized ./people/Darrel
Linked ./people:id/5 -> ./people/Darrel
Linked ./people/:state:id/MI/5 -> ./people/Darrel
+ /home/josh/Projects/Ghee/target/debug/ghee get -a ./people
	user.ghee.tableinfo	{"key":"name","indices_abs":{"id":"/home/josh/Projects/Ghee/snapshot/btrfs/people:id","name":"/home/josh/Projects/Ghee/snapshot/btrfs/people","state,id":"/home/josh/Projects/Ghee/snapshot/btrfs/people/:state:id"}}
./people/Darrel	user.id	5
./people/Darrel	user.name	Darrel
./people/Darrel	user.state	MI
./people/Janella	user.id	3
./people/Janella	user.name	Janella
./people/Janella	user.state	FL
./people/Lilly	user.id	4
./people/Lilly	user.name	Lilly
./people/Lilly	user.state	NM
./people/Sandeep	user.id	2
./people/Sandeep	user.name	Sandeep
./people/Sandeep	user.state	CA
./people/Sofia	user.id	1
./people/Sofia	user.name	Sofia
./people/Sofia	user.state	WA
./people/Wulfrum	user.id	0
./people/Wulfrum	user.name	Wulfrum
./people/Wulfrum	user.state	CA
+ /home/josh/Projects/Ghee/target/debug/ghee get -a -w state=CA -f name ./people
./people/Wulfrum	user.name	Wulfrum
./people/Sandeep	user.name	Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee del -v ./people -w name=Sofia
Removed ./people:id/1
Removed ./people/Sofia
Removed ./people/:state:id/WA/1
+ /home/josh/Projects/Ghee/target/debug/ghee del -v ./people:id 3
Removed ./people:id/3
Removed ./people/Janella
Removed ./people/:state:id/FL/3
+ /home/josh/Projects/Ghee/target/debug/ghee del -v ./people/:state:id CA 0
Removed ./people:id/0
Removed ./people/Wulfrum
Removed ./people/:state:id/CA/0
+ /home/josh/Projects/Ghee/target/debug/ghee get -a -w state=CA -f name ./people/:state:id
./people/:state:id/CA/2	user.name	Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee create -v ./direct -k blah
Initialized table ./direct with key: user.blah
+ /home/josh/Projects/Ghee/target/debug/ghee create -v ./people2 -k id
Initialized table ./people2 with key: user.id
Initialized ./people2/3
Initialized ./people2/4
Initialized ./people2/5
+ /home/josh/Projects/Ghee/target/debug/ghee status ./people2
+./people2
+./people2/3
+./people2/4
+./people2/5
+ mkdir ./empty
+ /home/josh/Projects/Ghee/target/debug/ghee status ./empty
No table found
+ /home/josh/Projects/Ghee/target/debug/ghee get ./empty
+ /home/josh/Projects/Ghee/target/debug/ghee get -a ./empty
+ btrfs .
+ Sanity check status and log on an empty directory
+ /home/josh/Projects/Ghee/target/debug/ghee status .
No table found
+ /home/josh/Projects/Ghee/target/debug/ghee log
No table found; no log exists
+ Create a pizza table
+ /home/josh/Projects/Ghee/target/debug/ghee create -v -k toppings ./pizza
Initialized table ./pizza with key: user.toppings
+ Make sure the status is empty
+ /home/josh/Projects/Ghee/target/debug/ghee status ./pizza
+./pizza
+ Create a record representing an olive pizza
+ /home/josh/Projects/Ghee/target/debug/ghee touch ./pizza/olive
+ Check that the new record shows up the status
+ /home/josh/Projects/Ghee/target/debug/ghee status ./pizza
+./pizza
+./pizza/olive
+ Commit the change with a helpful comment
++ /home/josh/Projects/Ghee/target/debug/ghee commit -m 'Add olive pizza' ./pizza
+ commit1=cb4b5763-902e-ca4d-a600-d69a6719b044
+ Make sure the new commit shows up in the log
+ /home/josh/Projects/Ghee/target/debug/ghee log ./pizza
commit cb4b5763-902e-ca4d-a600-d69a6719b044

	Add olive pizza

+ Check that the status is empty again, since there are no pending changes
+ /home/josh/Projects/Ghee/target/debug/ghee status ./pizza
+ Now create a pepperoni pizza
+ /home/josh/Projects/Ghee/target/debug/ghee touch ./pizza/pepperoni
+ Set text in the file itself, rather than just xattrs
+ echo 'Olives are good on pizza'
+ Also set its yumminess level to 5, as an extended attribute
+ /home/josh/Projects/Ghee/target/debug/ghee set -s yumminess=5 ./pizza/olive
+ Make sure this all shows up in the status
+ FIXME The xattr changes arent reflected
+ /home/josh/Projects/Ghee/target/debug/ghee status ./pizza
m./pizza/olive
+./pizza/pepperoni
+ Commit the new changes
++ /home/josh/Projects/Ghee/target/debug/ghee commit -m 'Add pepperoni; add details to olive' ./pizza
+ commit2=a58c5f48-8f17-ed4a-a10a-68ea074f39dc
+ Make sure status and log reflect this
+ /home/josh/Projects/Ghee/target/debug/ghee status ./pizza
+ /home/josh/Projects/Ghee/target/debug/ghee log ./pizza
commit a58c5f48-8f17-ed4a-a10a-68ea074f39dc

	Add pepperoni; add details to olive

commit cb4b5763-902e-ca4d-a600-d69a6719b044

	Add olive pizza

+ Create a buffalo chicken pizza
+ /home/josh/Projects/Ghee/target/debug/ghee touch ./pizza/buffalo-chicken
+ pwd
/home/josh/Projects/Ghee/snapshot/btrfs
+ pushd ./pizza
~/Projects/Ghee/snapshot/btrfs/pizza ~/Projects/Ghee/snapshot/btrfs
+ Check status, restore, and status again using the current directory form
+ /home/josh/Projects/Ghee/target/debug/ghee status
+./buffalo-chicken
+ /home/josh/Projects/Ghee/target/debug/ghee restore .
+ /home/josh/Projects/Ghee/target/debug/ghee status
+ /home/josh/Projects/Ghee/target/debug/ghee ls
:snapshots	table
olive	record
pepperoni	record
+ /home/josh/Projects/Ghee/target/debug/ghee reset cb4b5763-902e-ca4d-a600-d69a6719b044
+ /home/josh/Projects/Ghee/target/debug/ghee ls
:snapshots	table
olive	record
+ popd
~/Projects/Ghee/snapshot/btrfs
+ pwd
/home/josh/Projects/Ghee/snapshot/btrfs
+ cd ..
+ pwd
/home/josh/Projects/Ghee/snapshot
+ sudo umount btrfs
+ for i in "${!PREFIXES[@]}"
+ Make sure we are in the base path so the relative prefix resolves properly
+ cd /home/josh/Projects/Ghee/snapshot
+ prefix=/home/josh/Projects/Ghee/snapshot/FSNAME
+ '======= absolute prefix: /home/josh/Projects/Ghee/snapshot/FSNAME ======='
+ ext4img=ghee-ext4-absolute.img
+ dd if=/dev/zero of=ghee-ext4-absolute.img bs=1M count=400
+ mkfs.ext4 -L ext4-absolute ghee-ext4-absolute.img
+ sudo mount -o loop ghee-ext4-absolute.img ext4
+ sudo chown josh:josh ext4
+ fsprefix=/home/josh/Projects/Ghee/snapshot/ext4
+ cd ext4
+ main /home/josh/Projects/Ghee/snapshot/ext4
+ mkdir /home/josh/Projects/Ghee/snapshot/ext4/people
+ touch /home/josh/Projects/Ghee/snapshot/ext4/people/Sandeep /home/josh/Projects/Ghee/snapshot/ext4/people/Sofia /home/josh/Projects/Ghee/snapshot/ext4/people/Wulfrum
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Sandeep -s id=2 -s state=CA /home/josh/Projects/Ghee/snapshot/ext4/people/Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Sofia -s id=1 -s state=WA /home/josh/Projects/Ghee/snapshot/ext4/people/Sofia
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Wulfrum -s id=0 -s state=CA /home/josh/Projects/Ghee/snapshot/ext4/people/Wulfrum
+ Check how Ghee sees the files we just set up
+ /home/josh/Projects/Ghee/target/debug/ghee get /home/josh/Projects/Ghee/snapshot/ext4/people
./people/Sandeep	user.id	2
./people/Sandeep	user.name	Sandeep
./people/Sandeep	user.state	CA
./people/Sofia	user.id	1
./people/Sofia	user.name	Sofia
./people/Sofia	user.state	WA
./people/Wulfrum	user.id	0
./people/Wulfrum	user.name	Wulfrum
./people/Wulfrum	user.state	CA
+ Tell Ghee what key the data is indexed by
+ /home/josh/Projects/Ghee/target/debug/ghee init -k name /home/josh/Projects/Ghee/snapshot/ext4/people
+ Index the dataset by ID
+ /home/josh/Projects/Ghee/target/debug/ghee idx -v -k id /home/josh/Projects/Ghee/snapshot/ext4/people /home/josh/Projects/Ghee/snapshot/ext4/people:id
/home/josh/Projects/Ghee/snapshot/ext4/people/Sofia -> /home/josh/Projects/Ghee/snapshot/ext4/people:id/1
/home/josh/Projects/Ghee/snapshot/ext4/people/Sandeep -> /home/josh/Projects/Ghee/snapshot/ext4/people:id/2
/home/josh/Projects/Ghee/snapshot/ext4/people/Wulfrum -> /home/josh/Projects/Ghee/snapshot/ext4/people:id/0
+ /home/josh/Projects/Ghee/target/debug/ghee idx -v -k state -k id /home/josh/Projects/Ghee/snapshot/ext4/people
/home/josh/Projects/Ghee/snapshot/ext4/people/Sofia -> /home/josh/Projects/Ghee/snapshot/ext4/people/:state:id/WA/1
/home/josh/Projects/Ghee/snapshot/ext4/people/Sandeep -> /home/josh/Projects/Ghee/snapshot/ext4/people/:state:id/CA/2
/home/josh/Projects/Ghee/snapshot/ext4/people/Wulfrum -> /home/josh/Projects/Ghee/snapshot/ext4/people/:state:id/CA/0
+ /home/josh/Projects/Ghee/target/debug/ghee ins -v /home/josh/Projects/Ghee/snapshot/ext4/people
Initialized ./people/Janella
Linked ./people:id/3 -> ./people/Janella
Linked ./people/:state:id/FL/3 -> ./people/Janella
Initialized ./people/Lilly
Linked ./people:id/4 -> ./people/Lilly
Linked ./people/:state:id/NM/4 -> ./people/Lilly
Initialized ./people/Darrel
Linked ./people:id/5 -> ./people/Darrel
Linked ./people/:state:id/MI/5 -> ./people/Darrel
+ /home/josh/Projects/Ghee/target/debug/ghee get -a /home/josh/Projects/Ghee/snapshot/ext4/people
	user.ghee.tableinfo	{"key":"name","indices_abs":{"id":"/home/josh/Projects/Ghee/snapshot/ext4/people:id","name":"/home/josh/Projects/Ghee/snapshot/ext4/people","state,id":"/home/josh/Projects/Ghee/snapshot/ext4/people/:state:id"}}
./people/Darrel	user.id	5
./people/Darrel	user.name	Darrel
./people/Darrel	user.state	MI
./people/Janella	user.id	3
./people/Janella	user.name	Janella
./people/Janella	user.state	FL
./people/Lilly	user.id	4
./people/Lilly	user.name	Lilly
./people/Lilly	user.state	NM
./people/Sandeep	user.id	2
./people/Sandeep	user.name	Sandeep
./people/Sandeep	user.state	CA
./people/Sofia	user.id	1
./people/Sofia	user.name	Sofia
./people/Sofia	user.state	WA
./people/Wulfrum	user.id	0
./people/Wulfrum	user.name	Wulfrum
./people/Wulfrum	user.state	CA
+ /home/josh/Projects/Ghee/target/debug/ghee get -a -w state=CA -f name /home/josh/Projects/Ghee/snapshot/ext4/people
./people/Wulfrum	user.name	Wulfrum
./people/Sandeep	user.name	Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee del -v /home/josh/Projects/Ghee/snapshot/ext4/people -w name=Sofia
Removed ./people:id/1
Removed ./people/Sofia
Removed ./people/:state:id/WA/1
+ /home/josh/Projects/Ghee/target/debug/ghee del -v /home/josh/Projects/Ghee/snapshot/ext4/people:id 3
Removed ./people:id/3
Removed ./people/Janella
Removed ./people/:state:id/FL/3
+ /home/josh/Projects/Ghee/target/debug/ghee del -v /home/josh/Projects/Ghee/snapshot/ext4/people/:state:id CA 0
Removed ./people:id/0
Removed ./people/Wulfrum
Removed ./people/:state:id/CA/0
+ /home/josh/Projects/Ghee/target/debug/ghee get -a -w state=CA -f name /home/josh/Projects/Ghee/snapshot/ext4/people/:state:id
./people/:state:id/CA/2	user.name	Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee create -v /home/josh/Projects/Ghee/snapshot/ext4/direct -k blah
Initialized table /home/josh/Projects/Ghee/snapshot/ext4/direct with key: user.blah
+ /home/josh/Projects/Ghee/target/debug/ghee create -v /home/josh/Projects/Ghee/snapshot/ext4/people2 -k id
Initialized table /home/josh/Projects/Ghee/snapshot/ext4/people2 with key: user.id
Initialized ./people2/3
Initialized ./people2/4
Initialized ./people2/5
+ /home/josh/Projects/Ghee/target/debug/ghee status /home/josh/Projects/Ghee/snapshot/ext4/people2
+./people2
+./people2/3
+./people2/4
+./people2/5
+ mkdir /home/josh/Projects/Ghee/snapshot/ext4/empty
+ /home/josh/Projects/Ghee/target/debug/ghee status /home/josh/Projects/Ghee/snapshot/ext4/empty
No table found
+ /home/josh/Projects/Ghee/target/debug/ghee get /home/josh/Projects/Ghee/snapshot/ext4/empty
+ /home/josh/Projects/Ghee/target/debug/ghee get -a /home/josh/Projects/Ghee/snapshot/ext4/empty
+ cd ..
+ sudo umount ext4
+ btrfsimg=ghee-btrfs-absolute.img
+ dd if=/dev/zero of=ghee-btrfs-absolute.img bs=1M count=114
+ mkfs.btrfs -L btrfs-absolute --rootdir empty ghee-btrfs-absolute.img
+ sudo mount -o loop ghee-btrfs-absolute.img btrfs
+ sudo chown josh:josh btrfs
+ fsprefix=/home/josh/Projects/Ghee/snapshot/btrfs
+ cd btrfs
+ main /home/josh/Projects/Ghee/snapshot/btrfs
+ mkdir /home/josh/Projects/Ghee/snapshot/btrfs/people
+ touch /home/josh/Projects/Ghee/snapshot/btrfs/people/Sandeep /home/josh/Projects/Ghee/snapshot/btrfs/people/Sofia /home/josh/Projects/Ghee/snapshot/btrfs/people/Wulfrum
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Sandeep -s id=2 -s state=CA /home/josh/Projects/Ghee/snapshot/btrfs/people/Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Sofia -s id=1 -s state=WA /home/josh/Projects/Ghee/snapshot/btrfs/people/Sofia
+ /home/josh/Projects/Ghee/target/debug/ghee set -s name=Wulfrum -s id=0 -s state=CA /home/josh/Projects/Ghee/snapshot/btrfs/people/Wulfrum
+ Check how Ghee sees the files we just set up
+ /home/josh/Projects/Ghee/target/debug/ghee get /home/josh/Projects/Ghee/snapshot/btrfs/people
./people/Sandeep	user.id	2
./people/Sandeep	user.name	Sandeep
./people/Sandeep	user.state	CA
./people/Sofia	user.id	1
./people/Sofia	user.name	Sofia
./people/Sofia	user.state	WA
./people/Wulfrum	user.id	0
./people/Wulfrum	user.name	Wulfrum
./people/Wulfrum	user.state	CA
+ Tell Ghee what key the data is indexed by
+ /home/josh/Projects/Ghee/target/debug/ghee init -k name /home/josh/Projects/Ghee/snapshot/btrfs/people
+ Index the dataset by ID
+ /home/josh/Projects/Ghee/target/debug/ghee idx -v -k id /home/josh/Projects/Ghee/snapshot/btrfs/people /home/josh/Projects/Ghee/snapshot/btrfs/people:id
/home/josh/Projects/Ghee/snapshot/btrfs/people/Sandeep -> /home/josh/Projects/Ghee/snapshot/btrfs/people:id/2
/home/josh/Projects/Ghee/snapshot/btrfs/people/Sofia -> /home/josh/Projects/Ghee/snapshot/btrfs/people:id/1
/home/josh/Projects/Ghee/snapshot/btrfs/people/Wulfrum -> /home/josh/Projects/Ghee/snapshot/btrfs/people:id/0
+ /home/josh/Projects/Ghee/target/debug/ghee idx -v -k state -k id /home/josh/Projects/Ghee/snapshot/btrfs/people
/home/josh/Projects/Ghee/snapshot/btrfs/people/Sandeep -> /home/josh/Projects/Ghee/snapshot/btrfs/people/:state:id/CA/2
/home/josh/Projects/Ghee/snapshot/btrfs/people/Sofia -> /home/josh/Projects/Ghee/snapshot/btrfs/people/:state:id/WA/1
/home/josh/Projects/Ghee/snapshot/btrfs/people/Wulfrum -> /home/josh/Projects/Ghee/snapshot/btrfs/people/:state:id/CA/0
+ /home/josh/Projects/Ghee/target/debug/ghee ins -v /home/josh/Projects/Ghee/snapshot/btrfs/people
Initialized ./people/Janella
Linked ./people:id/3 -> ./people/Janella
Linked ./people/:state:id/FL/3 -> ./people/Janella
Initialized ./people/Lilly
Linked ./people:id/4 -> ./people/Lilly
Linked ./people/:state:id/NM/4 -> ./people/Lilly
Initialized ./people/Darrel
Linked ./people:id/5 -> ./people/Darrel
Linked ./people/:state:id/MI/5 -> ./people/Darrel
+ /home/josh/Projects/Ghee/target/debug/ghee get -a /home/josh/Projects/Ghee/snapshot/btrfs/people
	user.ghee.tableinfo	{"key":"name","indices_abs":{"id":"/home/josh/Projects/Ghee/snapshot/btrfs/people:id","name":"/home/josh/Projects/Ghee/snapshot/btrfs/people","state,id":"/home/josh/Projects/Ghee/snapshot/btrfs/people/:state:id"}}
./people/Darrel	user.id	5
./people/Darrel	user.name	Darrel
./people/Darrel	user.state	MI
./people/Janella	user.id	3
./people/Janella	user.name	Janella
./people/Janella	user.state	FL
./people/Lilly	user.id	4
./people/Lilly	user.name	Lilly
./people/Lilly	user.state	NM
./people/Sandeep	user.id	2
./people/Sandeep	user.name	Sandeep
./people/Sandeep	user.state	CA
./people/Sofia	user.id	1
./people/Sofia	user.name	Sofia
./people/Sofia	user.state	WA
./people/Wulfrum	user.id	0
./people/Wulfrum	user.name	Wulfrum
./people/Wulfrum	user.state	CA
+ /home/josh/Projects/Ghee/target/debug/ghee get -a -w state=CA -f name /home/josh/Projects/Ghee/snapshot/btrfs/people
./people/Wulfrum	user.name	Wulfrum
./people/Sandeep	user.name	Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee del -v /home/josh/Projects/Ghee/snapshot/btrfs/people -w name=Sofia
Removed ./people:id/1
Removed ./people/Sofia
Removed ./people/:state:id/WA/1
+ /home/josh/Projects/Ghee/target/debug/ghee del -v /home/josh/Projects/Ghee/snapshot/btrfs/people:id 3
Removed ./people:id/3
Removed ./people/Janella
Removed ./people/:state:id/FL/3
+ /home/josh/Projects/Ghee/target/debug/ghee del -v /home/josh/Projects/Ghee/snapshot/btrfs/people/:state:id CA 0
Removed ./people:id/0
Removed ./people/Wulfrum
Removed ./people/:state:id/CA/0
+ /home/josh/Projects/Ghee/target/debug/ghee get -a -w state=CA -f name /home/josh/Projects/Ghee/snapshot/btrfs/people/:state:id
./people/:state:id/CA/2	user.name	Sandeep
+ /home/josh/Projects/Ghee/target/debug/ghee create -v /home/josh/Projects/Ghee/snapshot/btrfs/direct -k blah
Initialized table /home/josh/Projects/Ghee/snapshot/btrfs/direct with key: user.blah
+ /home/josh/Projects/Ghee/target/debug/ghee create -v /home/josh/Projects/Ghee/snapshot/btrfs/people2 -k id
Initialized table /home/josh/Projects/Ghee/snapshot/btrfs/people2 with key: user.id
Initialized ./people2/3
Initialized ./people2/4
Initialized ./people2/5
+ /home/josh/Projects/Ghee/target/debug/ghee status /home/josh/Projects/Ghee/snapshot/btrfs/people2
+./people2
+./people2/3
+./people2/4
+./people2/5
+ mkdir /home/josh/Projects/Ghee/snapshot/btrfs/empty
+ /home/josh/Projects/Ghee/target/debug/ghee status /home/josh/Projects/Ghee/snapshot/btrfs/empty
No table found
+ /home/josh/Projects/Ghee/target/debug/ghee get /home/josh/Projects/Ghee/snapshot/btrfs/empty
+ /home/josh/Projects/Ghee/target/debug/ghee get -a /home/josh/Projects/Ghee/snapshot/btrfs/empty
+ btrfs /home/josh/Projects/Ghee/snapshot/btrfs
+ Sanity check status and log on an empty directory
+ /home/josh/Projects/Ghee/target/debug/ghee status /home/josh/Projects/Ghee/snapshot/btrfs
No table found
+ /home/josh/Projects/Ghee/target/debug/ghee log
No table found; no log exists
+ Create a pizza table
+ /home/josh/Projects/Ghee/target/debug/ghee create -v -k toppings /home/josh/Projects/Ghee/snapshot/btrfs/pizza
Initialized table /home/josh/Projects/Ghee/snapshot/btrfs/pizza with key: user.toppings
+ Make sure the status is empty
+ /home/josh/Projects/Ghee/target/debug/ghee status /home/josh/Projects/Ghee/snapshot/btrfs/pizza
+./pizza
+ Create a record representing an olive pizza
+ /home/josh/Projects/Ghee/target/debug/ghee touch /home/josh/Projects/Ghee/snapshot/btrfs/pizza/olive
+ Check that the new record shows up the status
+ /home/josh/Projects/Ghee/target/debug/ghee status /home/josh/Projects/Ghee/snapshot/btrfs/pizza
+./pizza
+./pizza/olive
+ Commit the change with a helpful comment
++ /home/josh/Projects/Ghee/target/debug/ghee commit -m 'Add olive pizza' /home/josh/Projects/Ghee/snapshot/btrfs/pizza
+ commit1=26639c6a-e730-e94b-9438-099e8674068c
+ Make sure the new commit shows up in the log
+ /home/josh/Projects/Ghee/target/debug/ghee log /home/josh/Projects/Ghee/snapshot/btrfs/pizza
commit 26639c6a-e730-e94b-9438-099e8674068c

	Add olive pizza

+ Check that the status is empty again, since there are no pending changes
+ /home/josh/Projects/Ghee/target/debug/ghee status /home/josh/Projects/Ghee/snapshot/btrfs/pizza
+ Now create a pepperoni pizza
+ /home/josh/Projects/Ghee/target/debug/ghee touch /home/josh/Projects/Ghee/snapshot/btrfs/pizza/pepperoni
+ Set text in the file itself, rather than just xattrs
+ echo 'Olives are good on pizza'
+ Also set its yumminess level to 5, as an extended attribute
+ /home/josh/Projects/Ghee/target/debug/ghee set -s yumminess=5 /home/josh/Projects/Ghee/snapshot/btrfs/pizza/olive
+ Make sure this all shows up in the status
+ FIXME The xattr changes arent reflected
+ /home/josh/Projects/Ghee/target/debug/ghee status /home/josh/Projects/Ghee/snapshot/btrfs/pizza
m./pizza/olive
+./pizza/pepperoni
+ Commit the new changes
++ /home/josh/Projects/Ghee/target/debug/ghee commit -m 'Add pepperoni; add details to olive' /home/josh/Projects/Ghee/snapshot/btrfs/pizza
+ commit2=dd1fdd4f-8731-3f4c-abca-aad2948645b8
+ Make sure status and log reflect this
+ /home/josh/Projects/Ghee/target/debug/ghee status /home/josh/Projects/Ghee/snapshot/btrfs/pizza
+ /home/josh/Projects/Ghee/target/debug/ghee log /home/josh/Projects/Ghee/snapshot/btrfs/pizza
commit dd1fdd4f-8731-3f4c-abca-aad2948645b8

	Add pepperoni; add details to olive

commit 26639c6a-e730-e94b-9438-099e8674068c

	Add olive pizza

+ Create a buffalo chicken pizza
+ /home/josh/Projects/Ghee/target/debug/ghee touch /home/josh/Projects/Ghee/snapshot/btrfs/pizza/buffalo-chicken
+ pwd
/home/josh/Projects/Ghee/snapshot/btrfs
+ pushd /home/josh/Projects/Ghee/snapshot/btrfs/pizza
~/Projects/Ghee/snapshot/btrfs/pizza ~/Projects/Ghee/snapshot/btrfs
+ Check status, restore, and status again using the current directory form
+ /home/josh/Projects/Ghee/target/debug/ghee status
+./buffalo-chicken
+ /home/josh/Projects/Ghee/target/debug/ghee restore .
+ /home/josh/Projects/Ghee/target/debug/ghee status
+ /home/josh/Projects/Ghee/target/debug/ghee ls
:snapshots	table
olive	record
pepperoni	record
+ /home/josh/Projects/Ghee/target/debug/ghee reset 26639c6a-e730-e94b-9438-099e8674068c
+ /home/josh/Projects/Ghee/target/debug/ghee ls
:snapshots	table
olive	record
+ popd
~/Projects/Ghee/snapshot/btrfs
+ pwd
/home/josh/Projects/Ghee/snapshot/btrfs
+ cd ..
+ pwd
/home/josh/Projects/Ghee/snapshot
+ sudo umount btrfs
+ cd ..