forked from microsoft/VFSForGit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiskLayoutUpgrade.cs
More file actions
395 lines (341 loc) · 15.1 KB
/
DiskLayoutUpgrade.cs
File metadata and controls
395 lines (341 loc) · 15.1 KB
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
using GVFS.Common;
using GVFS.Common.FileSystem;
using GVFS.Common.Git;
using GVFS.Common.Tracing;
using System;
using System.Collections.Generic;
using System.IO;
namespace GVFS.DiskLayoutUpgrades
{
public abstract class DiskLayoutUpgrade
{
private static Dictionary<int, MajorUpgrade> majorVersionUpgrades;
private static Dictionary<int, Dictionary<int, MinorUpgrade>> minorVersionUpgrades;
protected abstract int SourceMajorVersion { get; }
protected abstract int SourceMinorVersion { get; }
protected abstract bool IsMajorUpgrade { get; }
public static bool TryRunAllUpgrades(string enlistmentRoot)
{
majorVersionUpgrades = new Dictionary<int, MajorUpgrade>();
minorVersionUpgrades = new Dictionary<int, Dictionary<int, MinorUpgrade>>();
foreach (DiskLayoutUpgrade upgrade in GVFSPlatform.Instance.DiskLayoutUpgrade.Upgrades)
{
RegisterUpgrade(upgrade);
}
using (JsonTracer tracer = new JsonTracer(GVFSConstants.GVFSEtwProviderName, "DiskLayoutUpgrade"))
{
try
{
DiskLayoutUpgrade upgrade = null;
while (TryFindUpgrade(tracer, enlistmentRoot, out upgrade))
{
if (upgrade == null)
{
return true;
}
if (!upgrade.TryUpgrade(tracer, enlistmentRoot))
{
return false;
}
if (!CheckLayoutVersionWasIncremented(tracer, enlistmentRoot, upgrade))
{
return false;
}
}
return false;
}
catch (Exception e)
{
StartLogFile(enlistmentRoot, tracer);
tracer.RelatedError(e.ToString());
return false;
}
finally
{
RepoMetadata.Shutdown();
}
}
}
public static bool TryCheckDiskLayoutVersion(ITracer tracer, string enlistmentRoot, out string error)
{
error = string.Empty;
int majorVersion;
int minorVersion;
try
{
if (TryGetDiskLayoutVersion(tracer, enlistmentRoot, out majorVersion, out minorVersion, out error))
{
if (majorVersion < RepoMetadata.DiskLayoutVersion.MinimumSupportedMajorVersion)
{
error = string.Format(
"Breaking change to GVFS disk layout has been made since cloning. \r\nEnlistment disk layout version: {0} \r\nGVFS disk layout version: {1} \r\nMinimum supported version: {2}",
majorVersion,
RepoMetadata.DiskLayoutVersion.CurrentMajorVersion,
RepoMetadata.DiskLayoutVersion.MinimumSupportedMajorVersion);
return false;
}
else if (majorVersion > RepoMetadata.DiskLayoutVersion.CurrentMajorVersion)
{
error = string.Format(
"Changes to GVFS disk layout do not allow mounting after downgrade. Try mounting again using a more recent version of GVFS. \r\nEnlistment disk layout version: {0} \r\nGVFS disk layout version: {1}",
majorVersion,
RepoMetadata.DiskLayoutVersion.CurrentMajorVersion);
return false;
}
else if (majorVersion != RepoMetadata.DiskLayoutVersion.CurrentMajorVersion)
{
error = string.Format(
"GVFS disk layout version doesn't match current version. Try running 'gvfs mount' to upgrade. \r\nEnlistment disk layout version: {0}.{1} \r\nGVFS disk layout version: {2}.{3}",
majorVersion,
minorVersion,
RepoMetadata.DiskLayoutVersion.CurrentMajorVersion,
RepoMetadata.DiskLayoutVersion.CurrentMinorVersion);
return false;
}
return true;
}
}
finally
{
RepoMetadata.Shutdown();
}
error = "Failed to read disk layout version. " + ConsoleHelper.GetGVFSLogMessage(enlistmentRoot);
return false;
}
public abstract bool TryUpgrade(ITracer tracer, string enlistmentRoot);
protected bool TryDeleteFolder(ITracer tracer, string folderName)
{
try
{
PhysicalFileSystem.RecursiveDelete(folderName);
}
catch (Exception e)
{
tracer.RelatedError("Failed to delete folder {0}: {1}", folderName, e.ToString());
return true;
}
return true;
}
protected bool TryDeleteFile(ITracer tracer, string fileName)
{
try
{
File.Delete(fileName);
}
catch (Exception e)
{
tracer.RelatedError("Failed to delete file {0}: {1}", fileName, e.ToString());
return true;
}
return true;
}
protected bool TryRenameFolderForDelete(ITracer tracer, string folderName, out string backupFolder)
{
backupFolder = folderName + ".deleteme";
tracer.RelatedInfo("Moving " + folderName + " to " + backupFolder);
try
{
Directory.Move(folderName, backupFolder);
}
catch (Exception e)
{
tracer.RelatedError("Failed to move {0} to {1}: {2}", folderName, backupFolder, e.ToString());
return false;
}
return true;
}
protected bool TrySetGitConfig(ITracer tracer, string enlistmentRoot, Dictionary<string, string> configSettings, out string errorMessage)
{
errorMessage = null;
GVFSEnlistment enlistment = GVFSEnlistment.CreateFromDirectory(
enlistmentRoot,
GVFSPlatform.Instance.GitInstallation.GetInstalledGitBinPath(),
ProcessHelper.GetCurrentProcessLocation(),
authentication: null);
GitProcess git = enlistment.CreateGitProcess();
foreach (string key in configSettings.Keys)
{
GitProcess.Result result = git.SetInLocalConfig(key, configSettings[key]);
if (result.ExitCodeIsFailure)
{
tracer.RelatedError("Could not set git config setting {0}. Error: {1}", key, result.Errors);
return false;
}
}
return true;
}
private static void RegisterUpgrade(DiskLayoutUpgrade upgrade)
{
if (upgrade.IsMajorUpgrade)
{
majorVersionUpgrades.Add(upgrade.SourceMajorVersion, (MajorUpgrade)upgrade);
}
else
{
if (minorVersionUpgrades.ContainsKey(upgrade.SourceMajorVersion))
{
minorVersionUpgrades[upgrade.SourceMajorVersion].Add(upgrade.SourceMinorVersion, (MinorUpgrade)upgrade);
}
else
{
minorVersionUpgrades.Add(upgrade.SourceMajorVersion, new Dictionary<int, MinorUpgrade> { { upgrade.SourceMinorVersion, (MinorUpgrade)upgrade } });
}
}
}
private static bool CheckLayoutVersionWasIncremented(JsonTracer tracer, string enlistmentRoot, DiskLayoutUpgrade upgrade)
{
string error;
int actualMajorVersion;
int actualMinorVersion;
if (!TryGetDiskLayoutVersion(tracer, enlistmentRoot, out actualMajorVersion, out actualMinorVersion, out error))
{
tracer.RelatedError(error);
return false;
}
int expectedMajorVersion =
upgrade.IsMajorUpgrade
? upgrade.SourceMajorVersion + 1
: upgrade.SourceMajorVersion;
int expectedMinorVersion =
upgrade.IsMajorUpgrade
? 0
: upgrade.SourceMinorVersion + 1;
if (actualMajorVersion != expectedMajorVersion ||
actualMinorVersion != expectedMinorVersion)
{
throw new InvalidDataException(string.Format(
"Disk layout upgrade did not increment layout version. Expected: {0}.{1}, Actual: {2}.{3}",
expectedMajorVersion,
expectedMinorVersion,
actualMajorVersion,
actualMinorVersion));
}
return true;
}
private static bool TryFindUpgrade(JsonTracer tracer, string enlistmentRoot, out DiskLayoutUpgrade upgrade)
{
int majorVersion;
int minorVersion;
string error;
if (!TryGetDiskLayoutVersion(tracer, enlistmentRoot, out majorVersion, out minorVersion, out error))
{
StartLogFile(enlistmentRoot, tracer);
tracer.RelatedError(error);
upgrade = null;
return false;
}
Dictionary<int, MinorUpgrade> minorVersionUpgradesForCurrentMajorVersion;
if (minorVersionUpgrades.TryGetValue(majorVersion, out minorVersionUpgradesForCurrentMajorVersion))
{
MinorUpgrade minorUpgrade;
if (minorVersionUpgradesForCurrentMajorVersion.TryGetValue(minorVersion, out minorUpgrade))
{
StartLogFile(enlistmentRoot, tracer);
tracer.RelatedInfo(
"Upgrading from disk layout {0}.{1} to {0}.{2}",
majorVersion,
minorVersion,
minorVersion + 1);
upgrade = minorUpgrade;
return true;
}
}
MajorUpgrade majorUpgrade;
if (majorVersionUpgrades.TryGetValue(majorVersion, out majorUpgrade))
{
StartLogFile(enlistmentRoot, tracer);
tracer.RelatedInfo("Upgrading from disk layout {0} to {1}", majorVersion, majorVersion + 1);
upgrade = majorUpgrade;
return true;
}
// return true to indicate that we succeeded, and no upgrader was found
upgrade = null;
return true;
}
private static bool TryGetDiskLayoutVersion(
ITracer tracer,
string enlistmentRoot,
out int majorVersion,
out int minorVersion,
out string error)
{
majorVersion = 0;
minorVersion = 0;
string dotGVFSPath = Path.Combine(enlistmentRoot, GVFSConstants.DotGVFS.Root);
if (!GVFSPlatform.Instance.DiskLayoutUpgrade.TryParseLegacyDiskLayoutVersion(dotGVFSPath, out majorVersion))
{
if (!RepoMetadata.TryInitialize(tracer, dotGVFSPath, out error))
{
majorVersion = 0;
return false;
}
if (!RepoMetadata.Instance.TryGetOnDiskLayoutVersion(out majorVersion, out minorVersion, out error))
{
return false;
}
}
error = null;
return true;
}
private static void StartLogFile(string enlistmentRoot, JsonTracer tracer)
{
if (!tracer.HasLogFileEventListener)
{
tracer.AddLogFileEventListener(
GVFSEnlistment.GetNewGVFSLogFileName(
Path.Combine(enlistmentRoot, GVFSConstants.DotGVFS.LogPath),
GVFSConstants.LogFileTypes.MountUpgrade),
EventLevel.Informational,
Keywords.Any);
tracer.WriteStartEvent(enlistmentRoot, repoUrl: "N/A", cacheServerUrl: "N/A");
}
}
public abstract class MajorUpgrade : DiskLayoutUpgrade
{
protected sealed override bool IsMajorUpgrade
{
get { return true; }
}
protected sealed override int SourceMinorVersion
{
get { throw new NotSupportedException(); }
}
protected bool TryIncrementMajorVersion(ITracer tracer, string enlistmentRoot)
{
string newMajorVersion = (this.SourceMajorVersion + 1).ToString();
string dotGVFSPath = Path.Combine(enlistmentRoot, GVFSConstants.DotGVFS.Root);
string error;
if (!RepoMetadata.TryInitialize(tracer, dotGVFSPath, out error))
{
tracer.RelatedError("Could not initialize repo metadata: " + error);
return false;
}
RepoMetadata.Instance.SetEntry(RepoMetadata.Keys.DiskLayoutMajorVersion, newMajorVersion);
RepoMetadata.Instance.SetEntry(RepoMetadata.Keys.DiskLayoutMinorVersion, "0");
tracer.RelatedInfo("Disk layout version is now: " + newMajorVersion);
return true;
}
}
public abstract class MinorUpgrade : DiskLayoutUpgrade
{
protected sealed override bool IsMajorUpgrade
{
get { return false; }
}
protected bool TryIncrementMinorVersion(ITracer tracer, string enlistmentRoot)
{
string newMinorVersion = (this.SourceMinorVersion + 1).ToString();
string dotGVFSPath = Path.Combine(enlistmentRoot, GVFSConstants.DotGVFS.Root);
string error;
if (!RepoMetadata.TryInitialize(tracer, dotGVFSPath, out error))
{
tracer.RelatedError("Could not initialize repo metadata: " + error);
return false;
}
RepoMetadata.Instance.SetEntry(RepoMetadata.Keys.DiskLayoutMinorVersion, newMinorVersion);
tracer.RelatedInfo("Disk layout version is now: {0}.{1}", this.SourceMajorVersion, newMinorVersion);
return true;
}
}
}
}