-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgit.dart
428 lines (353 loc) · 10.8 KB
/
git.dart
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
import 'package:file/file.dart';
import 'package:file/local.dart';
import 'package:path/path.dart' as p;
import 'package:dart_git/config.dart';
import 'package:dart_git/exceptions.dart';
import 'package:dart_git/plumbing/git_hash.dart';
import 'package:dart_git/plumbing/objects/commit.dart';
import 'package:dart_git/plumbing/objects/tree.dart';
import 'package:dart_git/plumbing/reference.dart';
import 'package:dart_git/storage/config_storage_fs.dart';
import 'package:dart_git/storage/index_storage_fs.dart';
import 'package:dart_git/storage/interfaces.dart';
import 'package:dart_git/storage/object_storage_fs.dart';
import 'package:dart_git/storage/reference_storage_fs.dart';
import 'package:dart_git/utils/git_hash_set.dart';
import 'package:dart_git/utils/local_fs_with_checks.dart';
export 'commit.dart';
export 'checkout.dart';
export 'merge_base.dart';
export 'merge.dart';
export 'remotes.dart';
export 'index.dart';
export 'vistors.dart';
export 'reset.dart';
export 'storage/object_storage_extensions.dart';
// A Git Repo has 5 parts -
// * Object Store
// * Ref Store
// * Index
// * Working Tree
// * Config
class GitRepository {
/// Always ends with a '/'
late String workTree;
/// The .git directory path. Always ends with '/'
late String gitDir;
late Config config;
FileSystem fs;
late ReferenceStorage refStorage;
late ObjectStorage objStorage;
late IndexStorage indexStorage;
late ConfigStorage configStorage;
GitRepository._internal({required String rootDir, required this.fs}) {
workTree = rootDir;
if (!workTree.endsWith(p.separator)) {
workTree += p.separator;
}
gitDir = p.join(workTree, '.git');
if (!gitDir.endsWith(p.separator)) {
gitDir += p.separator;
}
}
static String? findRootDir(String path, {FileSystem? fs}) {
fs ??= const LocalFileSystemWithChecks();
while (true) {
var gitDir = p.join(path, '.git');
if (fs.isDirectorySync(gitDir)) {
return path;
}
if (path == p.separator) {
break;
}
path = p.dirname(path);
}
return null;
}
static GitRepository load(
String gitRootDir, {
FileSystem? fs,
}) {
fs ??= const LocalFileSystemWithChecks();
if (!isValidRepo(gitRootDir, fs: fs)) {
throw InvalidRepoException(gitRootDir);
}
var repo = GitRepository._internal(rootDir: gitRootDir, fs: fs);
repo.objStorage = ObjectStorageFS(repo.gitDir, fs);
repo.refStorage = ReferenceStorageFS(repo.gitDir, fs);
repo.indexStorage = IndexStorageFS(repo.gitDir, fs);
repo.configStorage = ConfigStorageFS(repo.gitDir, fs);
repo.reloadConfig();
return repo;
}
static bool isValidRepo(String gitRootDir, {FileSystem? fs}) {
fs ??= const LocalFileSystemWithChecks();
var isDir = fs.isDirectorySync(gitRootDir);
if (!isDir) {
return false;
}
var repo = GitRepository._internal(rootDir: gitRootDir, fs: fs);
var dotGitExists = fs.isDirectorySync(repo.gitDir);
if (!dotGitExists) {
return false;
}
repo.configStorage = ConfigStorageFS(repo.gitDir, fs);
var configExists = repo.configStorage.exists();
if (!configExists) {
return false;
}
return true;
}
static void init(
String path, {
FileSystem? fs,
String defaultBranch = 'main',
bool ignoreIfExists = false,
}) {
fs ??= const LocalFileSystem();
var gitDir = p.join(path, '.git');
if (!ignoreIfExists && fs.directory(gitDir).existsSync()) {
throw GitRepoExists();
}
var dirsToCreate = [
'branches',
'objects/pack',
'refs/heads',
'refs/tags',
];
for (var dir in dirsToCreate) {
fs.directory(p.join(gitDir, dir)).createSync(recursive: true);
}
fs.file(p.join(gitDir, 'description')).writeAsStringSync(
"Unnamed repository; edit this file 'description' to name the repository.\n");
fs
.file(p.join(gitDir, refHead))
.writeAsStringSync('ref: refs/heads/$defaultBranch\n');
var config = Config('');
var core = config.getOrCreateSection('core');
core.options['repositoryformatversion'] = '0';
core.options['filemode'] = 'false';
core.options['bare'] = 'false';
fs.file(p.join(gitDir, 'config')).writeAsStringSync(config.serialize());
}
void close() {
objStorage.close();
refStorage.close();
indexStorage.close();
}
void reloadConfig() {
config = configStorage.readConfig();
}
void saveConfig() {
return configStorage.writeConfig(config);
}
List<String> branches() {
var refs = refStorage.listReferences(refHeadPrefix);
var refNames = refs.map((r) => r.name);
var branchNames = refNames.map((r) => r.branchName()!).toList();
return branchNames;
}
String currentBranch() {
var _head = head();
switch (_head) {
case HashReference():
throw GitHeadDetached();
case SymbolicReference():
return _head.target.branchName()!;
}
}
BranchConfig setUpstreamTo(
GitRemoteConfig remote,
String remoteBranchName,
) {
var branchName = currentBranch();
return setBranchUpstreamTo(branchName, remote, remoteBranchName);
}
BranchConfig setBranchUpstreamTo(
String branchName, GitRemoteConfig remote, String remoteBranchName) {
var brConfig = config.branch(branchName);
if (brConfig == null) {
brConfig = BranchConfig(name: branchName);
config.branches[branchName] = brConfig;
}
brConfig = BranchConfig(
name: branchName,
remote: remote.name,
merge: ReferenceName.branch(remoteBranchName),
);
config.branches[branchName] = brConfig;
saveConfig();
return brConfig;
}
GitHash createBranch(
String name, {
GitHash? hash,
bool overwrite = false,
}) {
hash ??= headHash();
var branch = ReferenceName.branch(name);
var ref = refStorage.reference(branch);
if (ref != null && !overwrite) {
throw GitBranchAlreadyExists(name);
}
refStorage.saveRef(HashReference(branch, hash));
return hash;
}
GitHash deleteBranch(String branchName) {
var refName = ReferenceName.branch(branchName);
var ref = refStorage.reference(refName);
if (ref == null) {
throw GitRefNotFound(refName);
}
// A branch by definition is always a HashReference, but lets still check
switch (ref) {
case HashReference():
refStorage.deleteReference(refName);
return ref.hash;
case SymbolicReference():
throw GitRefNotHash(refName);
}
}
GitCommit? branchCommit(String branchName) {
var refName = ReferenceName.branch(branchName);
var ref = refStorage.reference(refName);
if (ref == null) return null;
switch (ref) {
case HashReference():
return objStorage.readCommit(ref.hash);
case SymbolicReference():
throw GitRefNotHash(refName);
}
}
/// Throws GitMissingHEAD on an empty repo
Reference head() {
var ref = refStorage.reference(ReferenceName.HEAD());
if (ref == null) throw GitMissingHEAD();
return ref;
}
/// Throws GitMissingHEAD on an empty repo
GitHash headHash() {
var ref = resolveReference(head());
return ref.hash;
}
/// Throws GitMissingHEAD on an empty repo
GitCommit headCommit() {
var hash = headHash();
return objStorage.readCommit(hash);
}
/// Throws GitMissingHEAD on an empty repo
GitTree headTree() {
var commit = headCommit();
return objStorage.readTree(commit.treeHash);
}
HashReference resolveReference(Reference ref) {
switch (ref) {
case HashReference():
return ref;
case SymbolicReference():
var resolvedRef = refStorage.reference(ref.target);
if (resolvedRef == null) {
throw GitRefNotFound(ref.target);
}
return resolveReference(resolvedRef);
}
}
HashReference? resolveReferenceName(ReferenceName refName) {
var ref = refStorage.reference(refName);
if (ref == null) return null;
return resolveReference(ref);
}
bool canPush() {
if (config.remotes.isEmpty) {
return false;
}
late Reference _head;
try {
_head = head();
} on GitRefNotFound {
return false;
}
switch (_head) {
case HashReference():
return false;
case SymbolicReference _:
}
var brConfig = config.branch(_head.target.branchName()!);
var brConfigMerge = brConfig?.merge;
var brConfigRemote = brConfig?.remote;
if (brConfig == null || brConfigMerge == null || brConfigRemote == null) {
// FIXME: Maybe we can push other branches!
return false;
}
var resolvedHead = resolveReference(_head);
// Construct remote's branch
var remoteBranchName = brConfigMerge.branchName()!;
var remoteRefName = ReferenceName.remote(brConfigRemote, remoteBranchName);
var remoteRef = resolveReferenceName(remoteRefName);
return resolvedHead.hash != remoteRef?.hash;
}
/// Returns -1 if unreachable
int countTillAncestor(GitHash from, GitHash ancestor) {
var seen = GitHashSet();
var parents = <GitHash>[];
parents.add(from);
while (parents.isNotEmpty) {
var sha = parents[0];
if (sha == ancestor) {
break;
}
parents.removeAt(0);
seen.add(sha);
var commit = objStorage.readCommit(sha);
for (var p in commit.parents) {
if (seen.contains(p)) continue;
parents.add(p);
}
}
return parents.isEmpty ? -1 : seen.length;
}
int numChangesToPush() {
var head = this.head();
switch (head) {
case HashReference():
return 0;
case SymbolicReference _:
}
var brConfig = config.branch(head.target.branchName()!);
var brConfigMerge = brConfig?.merge;
var brConfigRemote = brConfig?.remote;
if (brConfig == null || brConfigMerge == null || brConfigRemote == null) {
return 0;
}
// Construct remote's branch
var remoteBranchName = brConfigMerge.branchName()!;
var remoteRefName = ReferenceName.remote(brConfigRemote, remoteBranchName);
var headRef = resolveReference(head);
var remoteRef = resolveReferenceName(remoteRefName);
var headHash = headRef.hash;
var remoteHash = remoteRef?.hash;
if (headHash == remoteHash || remoteHash == null) {
return 0;
}
var aheadBy = countTillAncestor(headHash, remoteHash);
return aheadBy != -1 ? aheadBy : 0;
}
String normalizePath(String path) {
if (!path.startsWith('/')) {
path = path == '.' ? workTree : p.normalize(p.join(workTree, path));
}
if (!path.startsWith(workTree)) {
throw PathSpecOutsideRepoException(pathSpec: path);
}
return path;
}
String toPathSpec(String path) {
if (path.startsWith(workTree)) {
return path.substring(workTree.length);
}
if (path.startsWith('/')) {
throw PathSpecOutsideRepoException(pathSpec: path);
}
return path;
}
}