Skip to content

Commit 0741f87

Browse files
lucidBrotvHanda
authored andcommittedDec 10, 2023
Speedup by relying on filesystem ctime/mtime/filesize
On my test repo with a few text files and some images, but not too large (194 MB in total) this speeds "add" and "commit" up as follows: * When the command is "add", this takes 2 seconds without my ctime/mtime patch and ~0.2 without. * When the command is "commit", this takes 2 seconds but only due to asserts that get removed for release builds.. The use-case I have in mind is that GitJournal takes 30 seconds to startup on my phone, using this same folder of notes files. This commit makes that usable again.
1 parent f5a8d46 commit 0741f87

File tree

2 files changed

+20
-10
lines changed

2 files changed

+20
-10
lines changed
 

‎lib/commit.dart

+7-3
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,12 @@ extension Commit on GitRepository {
128128
// Write all the tree objects
129129
var hashMap = <String, GitHash>{};
130130

131+
// sort dir paths by number of slashes
131132
var allDirs = allTreeDirs.toList();
132133
allDirs.sort(dirSortFunc);
133134

135+
// `reversed`-> start with the deepest folders as we need the hash of
136+
// all the sub-folders before we can write the parent folder.
134137
for (var dir in allDirs.reversed) {
135138
var tree = treeObjects[dir]!;
136139
var entries = tree.entries.unlock;
@@ -140,9 +143,10 @@ extension Commit on GitRepository {
140143
var leaf = entries[i];
141144

142145
if (leaf.hash.isNotEmpty) {
143-
//
144-
// Making sure the leaf is a blob
145-
//
146+
// Making sure the leaf is a blob.
147+
// This is slow because it reads every leaf,
148+
// but that is alright because asserts get
149+
// removed for release builds.
146150
assert(() {
147151
var leafObj = objStorage.read(leaf.hash);
148152
return leafObj?.formatStr() == 'blob';

‎lib/index.dart

+13-7
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,25 @@ extension Index on GitRepository {
3636
throw GitFileNotFound(filePath);
3737
}
3838

39-
// Save that file as a blob
40-
var data = file.readAsBytesSync();
41-
var blob = GitBlob(data, null);
42-
var hash = objStorage.writeObject(blob);
43-
4439
var pathSpec = filePath;
4540
if (pathSpec.startsWith(workTree)) {
4641
pathSpec = filePath.substring(workTree.length);
4742
}
48-
49-
// Add it to the index
43+
// LB: Wait is this a linear search over all files??
44+
// Maybe... but omitting it fully does not speed things up.
5045
var entry = index.entries.firstWhereOrNull((e) => e.path == pathSpec);
5146
var stat = FileStat.statSync(filePath);
47+
if (entry != null &&
48+
entry.cTime.isAtSameMomentAs(stat.changed) &&
49+
entry.mTime.isAtSameMomentAs(stat.modified) &&
50+
entry.fileSize == stat.size) {
51+
// We assume it is the same file.
52+
return entry;
53+
}
54+
55+
var data = file.readAsBytesSync();
56+
var blob = GitBlob(data, null); // Hash the file (takes time!)
57+
var hash = objStorage.writeObject(blob);
5258

5359
// Existing file
5460
if (entry != null) {

0 commit comments

Comments
 (0)
Please sign in to comment.