-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgit-tree.js
1267 lines (1124 loc) · 40.2 KB
/
git-tree.js
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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*global -name*/
/*
* This is a mutable filesystem abstraction on top a tree of repositories.
* This has a global read/write lock. Reads are allowed to happen without
* restriction as long as there are no writes happening. When a write gets
* requested, a write batch is created. It will wait till end of event tick to
* see if there are any more changes to write. Once the write has started,
* further reads and writes are queued. When the write finishes, it first
* releases the queued reads and lets them run in the background. If there were
* queued writes as well, the process will start over with the new write batch.
*
* The workspace is represented as one git repository with nested submodules.
*
*/
// Load dependencies
var binary = require('bodec');
var carallel = require('carallel');
var jonParse = require('jon-parse');
var pathJoin = require('pathjoin');
var defer = require('js-git/lib/defer');
var modes = require('js-git/lib/modes');
var codec = require('js-git/lib/config-codec');
var cache = require('js-git/mixins/mem-cache').cache;
// Platform must implement the following interface:
// platform.configs
// platform.repos
// platform.getRootHash() -> rootHash
// platform.setRootHash(rootHash) ->
// platform.saveConfig() ->
// platform.createRepo(config) -> repo
module.exports = function (platform) {
var configs = platform.configs;
var repos = platform.repos;
// Pre-parsed .gitmodules data by path { hash, meta }
// meta is in the form { submodule: { $path: { path, url, ref, ... } } }
var gitmodules = {};
// Remember the onChange hook
var change;
// Setup resolvePath(path, raw, callback(err, {mode,hash,root,...}))
var resolvePath = gitTree({
has: function (hash) { return cache[hash] !== undefined; },
get: function (hash) { return cache[hash]; },
getRootHash: platform.getRootHash,
loadAs: function (root, type, hash, callback) {
if (!(/^[0-9a-f]{40}$/.test(hash))) throw new TypeError("Invalid hash '" + hash + "'");
var repo = repos[root];
if (!repo) return callback(new Error("No repo for root '" + root + "'"));
repo.loadAs(type, hash, function (err, value) {
if (value === undefined) {
return callback(err || new Error("Missing " + type + " " + hash + " in " + root));
}
return callback(null, value, hash);
});
},
hasRepo: function (root) { return !!repos[root]; },
initializeRepo: function (root, hash, path, callback) {
loadSubModule({
mode: modes.commit,
hash: hash,
root: root
}, path, callback);
},
hasGitmodules: function (root, hash) {
if (!hash) {
delete gitmodules[root];
return true;
}
return gitmodules[root] && gitmodules[root].hash === hash;
},
storeGitmodules: function (root, hash, callback) {
// Look up or create cache data for this .gitmodules file
var modules = gitmodules[root] || (gitmodules[root] = {meta:{}});
var repo = repos[root];
repo.loadAs("blob", hash, function (err, blob) {
if (blob === undefined) return callback(err || new Error("Missing blob " + hash));
if (hash === modules.hash) return callback();
try {
var text = binary.toUnicode(blob);
var meta = codec.decode(text);
modules.meta = meta;
modules.hash = hash;
}
catch (err) { return callback(err); }
callback();
});
},
});
// Pending read functions
var readQueue = [];
// This stores to-be-saved changes
var pendingWrites = null;
// registered callbacks that want to know when the bulk write is done
var writeCallbacks = null;
// Flag to know if an actual write is in progress
var writing = false;
// Pending .gitmodules changes
var pendingChanges = {};
// Export public interface
return {
// Initialize the system with a repo config. This is
// the root repo that can't be seen or edited. All projects are
// simply submodules of this master workspace.
// onChange is called whenever the root hash changes.
init: init, // (config, current, onChange) =>
// Set the root commit hash. This triggers an onChange call
setRoot: setRoot, // (hash)
// Slow Write Actions
// These will perform some I/O and then later perform their own batch write.
// Create a new git repo from config {url, ...}. This will first create the
// repo instance and clone/mount it to find the head commit has. It will
// then write the submodule entry
addRepo: addRepo, // (path, config) => hash
setHead: setHead, // (path, hash) => hash
setCurrent: setCurrent, // (path, hash) => hash
// Read Functions (path) => entry, [repo, config, root]
// These function will queue if there is an active write.
// They are not exclusive to each other however.
// readEntry will output nothing if the target doesn't exist, but the others
// will error out if the target is not there and the desired type.
readEntry: readEntry, // (path) => { mode, hash, root }
readRepo: readRepo, // (path) => repo
findRepo: findRepo,
// readPath is like readEntry, except it runs the build system.
readPath: readPath, // (path, bake) => { mode, hash, root, [mime], fetch }
readCommit: readCommit, // (path) => { mode, hash, commit }
readTree: readTree, // (path) => { mode, hash, tree }
readBlob: readBlob, // (path) => { mode, hash, blob }
readLink: readLink, // (path) => { mode, hash, link }
// Safe Writes
// These are safe write because they only write immutable hashes.
// They still need read access to know which repo to save to or read from.
saveAs: saveAs, // (path, type, value) => hash
// Prepare an entry to be moved or copied. If both paths are the same repo
// then this is a no-op that calls the callback immediately. If they are
// different repos, then all containing hashes are copied over.
prepEntry: prepEntry, // (path, target) => entry
// Write Actions
// These actions are auto-batched and create a global lock when they start.
// The write starts at the end of the tick when these start.
// These will error out if the data they need to read is not cached already.
// Thus they gurantee to put their write action in the queue this tick.
// Their callback is called when the write actions are flushed and complete.
writeEntry: writeEntry, // (path, entry) =>
copyEntry: copyEntry, // (path, target) =>
moveEntry: moveEntry, // (path, target) =>
deleteEntry: deleteEntry, // (path) =>
isDirty: isDirty,
isGithub: isGithub,
};
// Define public functions
////////////////////////////////////////////////////////////////////////////////
function init(onChange, callback) {
var config = configs[""] || {};
// Store the change handler
change = onChange;
var rootHash = platform.getRootHash();
livenConfig(config, rootHash, function (err, repo, current) {
if (err) return callback(err);
repos[""] = repo;
configs[""] = config;
rootHash = current;
platform.setRootHash(rootHash);
callback(null, rootHash);
});
}
function setRoot(hash) {
if (!hash) throw new Error("Missing root hash");
platform.setRootHash(hash);
defer(function () { change(hash); });
}
function addRepo(path, config, callback) {
if (!callback) return addRepo.bind(null, path, config);
livenConfig(config, null, function (err, repo, hash) {
if (err) return callback(err);
var newConfig = {};
for (var key in config) {
if (key === "github" || key === "head" || key === "current") continue;
newConfig[key] = config[key];
}
addGitmodule(path, newConfig);
repos[path] = repo;
configs[path] = config;
writeEntry(path, {
mode: modes.commit,
hash: hash
}, callback);
});
}
function setHead(path, hash, callback) {
if (!callback) return setHead.bind(null, path, hash);
// Load the old commit for path
readEntry(path, function (err, entry) {
if (err) return callback(err);
// Set head on the config
var config = configs[entry.root];
config.head = hash;
platform.saveConfig();
// If the entry is not the right hash, update it.
if (entry.hash === hash) return onWrite();
writeEntry(path, {
mode: modes.commit,
hash: hash
}, onWrite);
function onWrite(err) {
if (err) return callback(err);
// Once we know the tree has the right entry, update the ref bookmark
var repo = repos[entry.root];
repo.updateRef(config.ref, hash, callback);
}
});
}
function setCurrent(path, hash, callback) {
if (!callback) return setCurrent.bind(null, path, hash);
readEntry(path, function (err, entry) {
if (err) return callback(err);
if (!hash) {
var config = configs[entry.root];
hash = config.head;
}
var repo = repos[entry.root];
repo.updateRef("refs/current", hash, noop);
if (!hash) {
return callback(new Error("Nothing to revert to"));
}
// Wipe all config state when manually reverting. It will re-initialize.
writeEntry(path, {
mode: modes.commit,
hash: hash
}, callback);
trimConfig(path);
});
}
function readEntry(path, callback) {
if (!callback) return readEntry.bind(null, path);
// If there are any pending writes, wait for them to flush before reading.
if (pendingWrites) {
return readQueue.push(readEntry.bind(null, path, callback));
}
resolvePath(path, null, callback);
}
function readPath(path, bake, callback) {
if (!callback) return readEntry.bind(null, path);
// If there are any pending writes, wait for them to flush before reading.
if (pendingWrites) {
readQueue.push(readPath.bind(null, path, bake, callback));
}
resolvePath(path, bake, callback);
}
function readRepo(path, callback) {
if (!callback) return readRepo.bind(null, path);
readEntry(path, function (err, entry) {
if (err) return callback(err);
callback(null, repos[entry.root]);
});
}
function readCommit(path, callback) {
if (!callback) return readCommit.bind(null, path);
readEntry(path, function (err, entry) {
if (err) return callback(err);
if (!entry.hash) return callback(err || new Error("Missing commit: " + JSON.stringify(path)));
if (entry.mode !== modes.commit) return callback(new Error("Not a commit:" + JSON.stringify(path)));
var config = configs[entry.root];
var repo = repos[entry.root];
// Make sure config.current matches the hash in the tree
config.current = entry.hash;
repo.loadAs("commit", entry.hash, onCurrent);
function onCurrent(err, commit) {
if (!commit) return callback(err || new Error("Problem loading current commit"));
entry.commit = commit;
if (!config.head) return callback(null, entry);
repo.loadAs("commit", config.head, onHead);
}
function onHead(err, commit) {
if (!commit) return callback(err || new Error("Problem loading head commit"));
entry.head = commit;
entry.headHash = config.head;
callback(null, entry);
}
});
}
function readTree(path, callback) {
if (!callback) return readTree.bind(null, path);
readEntry(path, onEntry);
function onEntry(err, entry) {
if (err) return callback(err);
if (!entry.hash) return callback(err || new Error("Missing entry"));
if (entry.mode === modes.commit) {
return commitToTree(path, entry, onEntry);
}
if (entry.mode === modes.tree) {
var repo = repos[entry.root];
return repo.loadAs("tree", entry.hash, onTree);
}
return callback(new Error("Invalid mode 0" + entry.mode.toString(8)));
function onTree(err, tree) {
var hash = entry.hash;
if (!tree) return callback(err || new Error("Missing tree " + hash));
entry.mode = modes.tree;
entry.hash = hash;
entry.tree = tree;
callback(null, entry);
}
}
}
function readBlob(path, callback) {
if (!callback) return readBlob.bind(null, path);
readEntry(path, function (err, entry) {
if (err) return callback(err);
if (!entry.hash) return callback(err || new Error("Missing entry"));
if (!modes.isFile(entry.mode)) return callback("Not a file");
var repo = repos[entry.root];
repo.loadAs("blob", entry.hash, function (err, blob) {
if (!blob) return callback(err || new Error("Problem loading blob"));
entry.blob = blob;
callback(null, entry);
});
});
}
function readLink(path, callback) {
if (!callback) return readLink.bind(null, path);
readEntry(path, function (err, entry) {
if (err) return callback(err);
if (!entry.hash) return callback(err || new Error("Missing entry"));
if (entry.mode !== modes.sym) return callback("Not a symlink");
var repo = repos[entry.root];
repo.loadAs("blob", entry.hash, function (err, blob) {
if (err) return callback(err);
try { entry.link = binary.toUnicode(blob); }
catch (err) { return callback(err); }
callback(null, entry);
});
});
}
function saveAs(path, type, value, callback) {
if (!callback) return saveAs.bind(null, path, type, value);
// Look up the right repo to save the value into.
readEntry(path, function (err, entry) {
if (err) return callback(err);
var repo = repos[entry.root];
repo.saveAs(type, value, callback);
});
}
function prepEntry(path, target, callback) {
if (!callback) return prepEntry.bind(null, path, target);
readEntry(target, function (err, targetEntry) {
if (err) return callback(err);
readEntry(path, function (err, entry) {
if (err) return callback(err);
// If the repos match or the entry is not a tree, we're done.
if (entry.mode !== modes.tree || targetEntry.root === entry.root) {
return callback(null, entry);
}
var targetRepo = repos[targetEntry.root];
var repo = repos[entry.root];
targetRepo.hasHash("tree", entry.hash, function (err, has) {
if (err) return callback(err);
// If the destination already has the tree hash, we're done.
if (has) return callback(null, entry);
deepCopy(repo, targetRepo, entry, function (err) {
if (err) return callback(err);
callback(null, entry);
});
});
});
});
}
// Used to copy a tree of hashes from one repo to another. Used in cross-repo
// copies
function deepCopy(source, dest, entry, callback) {
if (!callback) return deepCopy.bind(null, source, dest, entry);
if (entry.mode === modes.commit) return callback();
var type = modes.toType(entry.mode);
source.loadAs(type, entry.hash, function (err, value) {
if (!value) return callback(err || new Error("Missing " + type + " " + entry.hash));
dest.saveAs(type, value, function (err) {
if (err) return callback(err);
if (type !== "tree") return callback();
carallel(Object.keys(value).map(function (name) {
return deepCopy(source, dest, value[name]);
}), callback);
}, entry.hash);
});
}
function writeEntry(path, entry, callback) {
if (!callback) return writeEntry.bind(null, path, entry);
if (!pendingWrites) {
// Start recording writes to be written
pendingWrites = {};
writeCallbacks = [];
// Defer starting the write to collect more writes this tick.
defer(writeEntries);
}
if (!path) {
if (!entry.hash) {
return callback(new Error("Root cannot be deleted"));
}
if (entry.mode !== modes.commit) {
return callback(new Error("Only commits can be written to root"));
}
}
pendingWrites[path] = entry;
if (callback) writeCallbacks.push(callback);
}
function copyEntry(path, target, callback) {
if (!callback) return copyEntry.bind(null, path, target);
// Copy path related data between trees
var entry = resolvePath(path);
if (!entry.hash) return callback(new Error("Can't find source"));
copyConfig(path, target);
writeEntry(target, {
mode: entry.mode,
hash: entry.hash
}, callback);
platform.saveConfig();
}
function moveEntry(path, target, callback) {
if (!callback) return moveEntry.bind(null, path, target);
var entry = resolvePath(path);
if (!entry.hash) return callback(new Error("Can't find source"));
copyConfig(path, target);
carallel([
writeEntry(path, {}),
writeEntry(target, {
mode: entry.mode,
hash: entry.hash
})
], callback);
deleteConfig(path);
platform.saveConfig();
}
function deleteEntry(path, callback) {
if (!callback) return deleteEntry.bind(null, path);
deleteConfig(path);
writeEntry(path, {}, callback);
platform.saveConfig();
}
function isDirty(path) {
var config = configs[path];
if (!config) return;
return config.current !== config.head;
}
function isGithub(path) {
var config = configs[path] || configs[findParentPath(path)];
if (!config) throw new Error("Can't find config for");
return config.github && getGithubName(config.url);
}
function getGithubName(url) {
var match = url.match(/github.com[:\/](.*?)(?:\.git)?$/);
if (!match) throw new Error("Url is not github repo: " + url);
return match[1];
}
// Define internal helper functions
////////////////////////////////////////////////////////////////////////////////
// Given a path and commit entry, find the tree entry inside it.
function commitToTree(path, entry, callback) {
var repo = repos[entry.root];
repo.loadAs("commit", entry.hash, function (err, commit) {
if (!commit) return callback(err || new Error("Missing commit"));
var repo = repos[path];
if (!repo) return loadSubModule(entry, path, onSub);
onSub(null, { repo: repo, config: configs[path] });
function onSub(err, data) {
if (err) return callback(err);
callback(null, {
mode: modes.tree,
hash: commit.tree,
repo: data.repo,
config: data.config,
root: path
});
}
});
}
function findRepo(path) {
var repo = repos[path];
if (repo) return repo;
var config = configs[path];
if (!config) throw new Error("No repo at " + JSON.srtingify(path));
repo = repos[path] = platform.createRepo(config);
return repo;
}
// Given a bare config with { [url], [ref], [github], [head] },
// create a live repo and look up the head commit hash.
// => repo, current
function livenConfig(config, current, callback) {
var repo;
try {
repo = platform.createRepo(config);
var ref = config.ref || (config.ref = "refs/heads/master");
}
catch (err) { return callback(err); }
if (repo.initChain) return carallel(repo.initChain, onInit);
else return onInit();
function onInit(err) {
if (err) return callback(err);
if (repo.initChain) repo.initChain = null;
if (config.head) onHead();
else repo.readRef(ref, onHead);
}
function onHead(err, hash) {
if (err) return callback(err);
if (hash) config.head = hash;
if (!config.head && repo.fetch) {
config.depth = config.depth || 1;
return repo.fetch(config.ref, config.depth, onHead);
}
if (!current) {
if (config.head) {
current = config.head;
}
else return initEmpty(repo, null, onCurrent);
}
config.current = current;
repo.updateRef("refs/current", current, noop);
callback(null, repo, current);
}
function onCurrent(err, hash) {
if (!hash) return callback(err || new Error("Invalid current hash"));
current = hash;
onHead();
}
return repo;
}
// When creating new empty repos, we still need an empty tree and a temporary commit.
function initEmpty(repo, tree, callback) {
if (tree) return onTree(null, tree);
return repo.saveAs("tree", [], onTree);
function onTree(err, hash) {
if (err) return callback(err);
return repo.saveAs("commit", {
tree: hash,
author: {
name: "AutoInit",
email: "tedit@creationix.com"
},
message: "Initial Empty Commit"
}, callback);
}
}
// Given a path, find the parent state {repo, config}
function findParentPath(path, roots) {
var longest = "";
roots = roots || Object.keys(configs);
roots.forEach(function (root) {
if (!isunder(path, root)) return;
if (root.length > longest.length) {
longest = root;
}
});
return longest;
}
function writeEntries() {
// Exclusive write lock
if (writing) return;
writing = true;
// Import write data into this closure
// Other writes that happen while we're busy will get queued
var writes = pendingWrites;
pendingWrites = null;
var callbacks = writeCallbacks;
writeCallbacks = null;
// If there are any changed .gitmodules we need to write those out as well.
var changeNames = Object.keys(pendingChanges);
if (changeNames.length) {
changeNames.forEach(function (root) {
var meta = pendingChanges[root].meta;
var path = join(root, ".gitmodules");
var encoded = codec.encode(meta);
if (!encoded.trim()) {
// Delete the file if it's now empty
writes[path] = {};
}
else {
writes[path] = {
mode: modes.file,
content: encoded
};
}
});
pendingChanges = {};
}
// Store output hashes by path
var currents = {};
// Break up the writes into the separate repos they belong in.
var groups = {};
var roots = Object.keys(configs);
var paths = Object.keys(writes);
for (var i = 0, l = paths.length; i < l; i++) {
var path = paths[i];
var entry = writes[path];
if (!path) {
currents[""] = entry.hash;
return onWriteDone();
}
var root = findParentPath(path, roots);
var group = groups[root] || (groups[root] = {});
var local = localbase(path, root);
group[local] = entry;
}
var leaves = findLeaves();
if (!leaves.length) return onWriteDone();
carallel(leaves.map(processLeaf), onProcessed);
// Find repo groups that have no dependencies and process them in parallel
function findLeaves() {
var paths = Object.keys(groups);
var parents = {};
paths.forEach(function (path) {
// we use an if to filter out the root path. It doesn't have a parent.
if (path) parents[findParentPath(path, paths)] = true;
});
return paths.filter(function (path) {
return !parents[path];
});
}
// Delegate most of the work out to repo.createTree
// When it comes back, create a temporary commit.
function processLeaf(root) {
var config = configs[root];
var repo = findRepo(root);
var group = groups[root];
delete groups[root];
var actions = Object.keys(group).map(function (path) {
var entry = group[path];
entry.path = path;
return entry;
});
actions.base = cache[config.current].tree;
return function (callback) {
var treeHash;
repo.createTree(actions, onTree);
function onTree(err, hash) {
if (err) return callback(err);
treeHash = hash;
if (config.head) {
return repo.loadAs("commit", config.head, onHead);
}
onHead();
}
function onHead(err, head) {
if (err) return callback(err);
// If the tree matches the one in HEAD, revert to head.
if (head && head.tree === treeHash) return callback(null, config.head);
// If not create a temporary commit.
var commit = {
tree: treeHash,
author: {
name: "AutoCommit",
email: "tedit@creationix.com"
},
message: "Uncommitted changes in tedit"
};
if (config.head) commit.parent = config.head;
repo.saveAs("commit", commit, callback);
}
};
}
function onProcessed(err, hashes) {
if (err) return onWriteDone(err);
for (var i = 0, l = leaves.length; i < l; i++) {
var path = leaves[i];
var hash = hashes[i];
currents[path] = hash;
if (!path) return onWriteDone();
var parent = findParentPath(path, roots);
var parentGroup = groups[parent] || (groups[parent] = {});
var localPath = localbase(path, parent);
parentGroup[localPath] = {
mode: modes.commit,
hash: hash
};
}
leaves = findLeaves();
if (!leaves.length) return onWriteDone();
carallel(leaves.map(processLeaf), onProcessed);
}
function onWriteDone(err) {
if (err) {
return callbacks.forEach(function (callback) {
callback(err);
});
}
// Update the configs
Object.keys(currents).forEach(function (root) {
var hash = currents[root];
configs[root].current = hash;
repos[root].updateRef("refs/current", hash, noop);
});
platform.saveConfig();
// Tell the callbacks we're done.
callbacks.forEach(function (callback) {
callback(err);
});
// Update the tree root to point to the new version
setRoot(currents[""]);
writing = false;
// Flush and pending reads that were waiting on us to finish writing
flushReads();
// If there are writes that were waiting on us, start them now.
if (pendingWrites) writeEntries();
}
}
function flushReads() {
var queue = readQueue;
readQueue = [];
queue.forEach(function (fn) { fn(); });
}
// Entry is entry of commit node in outer repo
// path is global path to submodule inside
function loadSubModule(entry, path, callback) {
var config = configs[path];
var extra = getGitmodule(path);
if (!config) {
if (!extra) return callback(new Error("Missing .gitmodules entry"));
config = extra;
}
else {
Object.keys(extra).forEach(function (key) {
config[key] = extra[key];
});
}
// if (configs[entry.root].github)
config.github = true;
return livenConfig(config, entry.hash, function (err, repo, current) {
if (err) return callback(err);
if (entry.hash !== current) {
return callback(new Error("current mismatch"));
}
var data = {
root: path,
config: configs[path] = config,
repo: repos[path] = repo
};
platform.saveConfig();
callback(null, data);
});
}
// Lookup the .gitmodules entry for submodule at path
// (path) -> {path, url}
function getGitmodule(path) {
var root = findParentPath(path);
var localPath = localbase(path, root);
var modules = gitmodules[root];
if (!modules) return;
var meta = modules.meta;
if (!meta) return;
var submodules = meta.submodule;
if (!submodules) return;
return cloneObject(submodules[localPath]);
}
// Add a .gitmodules entry for submodule at path with url
function addGitmodule(path, config) {
var root = findParentPath(path);
var localPath = localbase(path, root);
var modules = gitmodules[root] || (gitmodules[root] = {});
var meta = modules.meta || (modules.meta = {});
var submodules = meta.submodule || (meta.submodule = {});
config.path = localPath;
submodules[localPath] = config;
pendingChanges[root] = modules;
}
function copyConfig(from, to) {
// Copy any configs at or under `from` to `to`.
var regexp = new RegExp("^" + rescape(from) + "(?=/|$)");
Object.keys(configs).forEach(function (path) {
if (!regexp.test(path)) return;
var newPath = path.replace(regexp, to);
configs[newPath] = cloneObject(configs[path]);
});
// Copy any submodule configs at or under `from` to `to`.
// But to find the config, we need to look up to the roots of `from` and `to`.
var root = findParentPath(from);
var modules = gitmodules[root];
var meta = modules && modules.meta;
var submodules = meta && meta.submodule;
if (submodules) {
var localPath = submodules && localbase(from, root);
var subregexp = new RegExp("^" + rescape(localPath) + "(?=/|$)");
Object.keys(submodules).forEach(function (path) {
var config = submodules[path];
if (!subregexp.test(path)) return;
var oldPath = join(root, path);
var newPath = oldPath.replace(regexp, to);
addGitmodule(newPath, cloneObject(config));
});
}
}
function deleteConfig(from) {
var regexp = new RegExp("^" + rescape(from) + "(?=/|$)");
Object.keys(configs).forEach(function (path) {
if (!regexp.test(path)) return;
delete configs[path];
delete gitmodules[path];
if (repos[path]) delete repos[path];
});
// Look for entries in the parent .gitmodules to remove
var root = findParentPath(from);
var modules = gitmodules[root];
var meta = modules && modules.meta;
var submodules = meta && meta.submodule;
if (submodules) {
var localPath = submodules && localbase(from, root);
var subregexp = new RegExp("^" + rescape(localPath) + "(?=/|$)");
Object.keys(submodules).forEach(function (name) {
var config = submodules[name];
if (!subregexp.test(config.path)) return;
delete submodules[name];
pendingChanges[root] = modules;
});
}
}
function trimConfig(from) {
var regexp = from ? new RegExp("^" + rescape(from) + "(?=/)") :
new RegExp("^.");
Object.keys(configs).forEach(function (path) {
if (!regexp.test(path)) return;
delete configs[path];
if (repos[path]) delete repos[path];
});
}
};
function join(base, path) {
return base ? base + "/" + path : path;
}
// Calculates a local path relative to some root.
// Path "foo/bar" with root "" is "foo/bar".
// Path "foo/bar" with root "foo" is "bar".
function localbase(path, root) {
return root ? path.substring(root.length + 1) : path;
}
// Decides true if path is a subpath of root
// Root "" with any path except "" is true.
// Root "foo" with path "foo" is false.
// Root "foo" with path "foobar" is false.
// Root "foo" with path "foo/bar" is true.
function isunder(path, root) {
if (!root) return !!path;
return path.substring(0, root.length + 1) === root + "/";
}
// Escape a string for inclusion in a regular expression.
function rescape(string) {
return string.replace(/([.?*+^$[\]\\(){}|])/g, "\\$1") ;
}
// Quick deep-clone of an object.
function cloneObject(obj) {
var newObj = {};
Object.keys(obj).forEach(function (key) {
var value = obj[key];
if (value && typeof value === "object") {
if (Array.isArray(value)) value = value.slice();
else value = cloneObject(value);
}
newObj[key] = value;
});
return newObj;
}
function gitTree(storage) {
// storage provides the following interface
//
// storage.has(hash) -> boolean
// storage.get(hash) -> value
// storage.getRootHash() -> hash
// storage.loadAs(root, type, hash) => value, hash
// storage.hasGitmodules(root, hash) -> boolean
// storage.storeGitmodules(root, hash) =>
// storage.hasRepo(root) -> boolean
// storage.initializeRepo(root, hash, path) =>
return resolvePath;
// In raw mode, resolve paths to {mode,hash,root} entries
// In baked mode resolve to {mode,hash,root,[mime],fetch} where fetch accepts
// a callback that results in (string|binary|tree|virtualTree)
// If no callback is provided, return entry or throw if data is missing.
// bake is a function (passed in for bake mode): bake(req) => bakedRes
function resolvePath(path, bake, callback) {
var mode = modes.commit;
var hash = storage.getRootHash();
var root = "";
var parts = path.split("/").filter(Boolean);
path = parts.join("/");
var index = 0;
var partial = "";
// In baked mode, we need to remember tree rules.
var rules = bake ? [] : null;
// Start the walk loop.
return walk();
function walk() {
while (index < parts.length) {
// When a commit node is found (submodule), enter it's tree.
if (mode === modes.commit) {