fix #141- DCD causes dexed to crash violently

- remove old code that was used to determine if DCD is able to upagete cache
  and that was based on `dcd-client --version` + internal SemVar handling
- default to 0 for bad SemVer component
This commit is contained in:
Basile Burg 2025-03-03 14:00:05 +01:00
parent d4766a2d2a
commit 647daa96c8
4 changed files with 19 additions and 26 deletions

View File

@ -351,6 +351,9 @@ type
// Converts the delta between two calls to GetTickCount64 to a string indicating a duration. // Converts the delta between two calls to GetTickCount64 to a string indicating a duration.
function formatTicksAsDuration(ticks: UInt64): string; function formatTicksAsDuration(ticks: UInt64): string;
// Returns wether runing in a dark DE
function isDarkDE(): boolean;
(** (**
* Compares two TPoints. * Compares two TPoints.
*) *)
@ -1562,6 +1565,11 @@ begin
result += value[p .. value.length]; result += value[p .. value.length];
end; end;
function isDarkDE(): boolean;
begin
result := clBackground < clCaptionText;
end;
{$IFDEF DEBUG} {$IFDEF DEBUG}
initialization initialization

View File

@ -38,7 +38,6 @@ type
fProj: ICommonProject; fProj: ICommonProject;
fPortAsProcParam: string; fPortAsProcParam: string;
fVersion: TSemVer; fVersion: TSemVer;
fCanRemove: boolean;
procedure killServer; procedure killServer;
procedure terminateClient; {$IFNDEF DEBUG}inline;{$ENDIF} procedure terminateClient; {$IFNDEF DEBUG}inline;{$ENDIF}
procedure waitClient; {$IFNDEF DEBUG}inline;{$ENDIF} procedure waitClient; {$IFNDEF DEBUG}inline;{$ENDIF}
@ -105,7 +104,7 @@ var
begin begin
inherited; inherited;
fVersion.init('v0.0.0'); fVersion.init('v0.0.0', false);
fname := getDocPath + optsname; fname := getDocPath + optsname;
if fname.fileExists then if fname.fileExists then
loadFromFile(fname); loadFromFile(fname);
@ -137,16 +136,6 @@ begin
fTempLines := TStringList.Create; fTempLines := TStringList.Create;
fImportCache := TStringHashSet.Create; fImportCache := TStringHashSet.Create;
fClient.Parameters.Add('--version');
fClient.Execute;
processOutputToStrings(fClient, fTempLines);
while fClient.Running do ;
fVersion.init(fTempLines.strictText);
r.major := 0;
r.minor := 9;
r.patch := 10;
fCanRemove := fVersion > r;
if fServer.isAssigned then if fServer.isAssigned then
begin begin
fServer.Execute; fServer.Execute;
@ -442,8 +431,6 @@ end;
procedure TDcdWrapper.remImportFolder(const folder: string); procedure TDcdWrapper.remImportFolder(const folder: string);
begin begin
if not fCanRemove then
exit;
if not fAvailable or not fServerListening or not fImportCache.contains(folder) then if not fAvailable or not fServerListening or not fImportCache.contains(folder) then
exit; exit;
@ -460,8 +447,6 @@ var
i: string; i: string;
c: integer; c: integer;
begin begin
if not fCanRemove then
exit;
if not fAvailable or not fServerListening then if not fAvailable or not fServerListening then
exit; exit;

View File

@ -326,9 +326,9 @@ var
begin begin
v := new(PSemVer); v := new(PSemVer);
if value = 'vmaster' then if value = 'vmaster' then
v^.init('v0.0.0-master') v^.init('v0.0.0-master', false)
else try else try
v^.init(value); v^.init(value, true);
except except
dispose(v); dispose(v);
exit; exit;
@ -1726,18 +1726,18 @@ procedure TDubProject.updateImportPathsFromJson;
p := '0.0.0'; p := '0.0.0';
end end
else if (p = 'master') or (v = '~master') then else if (p = 'master') or (v = '~master') then
q.init('v0.0.0-master') q.init('v0.0.0-master', false)
else else
begin begin
try try
q.init('v' + p); q.init('v' + p, true);
except except
// while editing a DUB project from the DUB project editor, // while editing a DUB project from the DUB project editor,
// '<value>', i.e "undefined JSON value" can be found here. // '<value>', i.e "undefined JSON value" can be found here.
// So get DUB to fetch the most recent if the 'autoFetch' IDE option // So get DUB to fetch the most recent if the 'autoFetch' IDE option
// is ON, even if another version is set later. // is ON, even if another version is set later.
o := '>='; o := '>=';
q.init('v0.0.0'); q.init('v0.0.0', false);
end; end;
end; end;

View File

@ -20,7 +20,7 @@ type
public public
// Initializes with the semVer text. // Initializes with the semVer text.
// When throw is set to true an Exception is raised if the format is not compliant. // When throw is set to true an Exception is raised if the format is not compliant.
procedure init(const text: string; throw: boolean = true); procedure init(const text: string; throw: boolean);
// Indicates wether the version is not a final release. // Indicates wether the version is not a final release.
function isPreRelease: boolean; function isPreRelease: boolean;
@ -58,7 +58,7 @@ implementation
var v1, v2: TSemVer; var v1, v2: TSemVer;
{$ENDIF} {$ENDIF}
procedure TSemVer.init(const text: string; throw: boolean = true); procedure TSemVer.init(const text: string; throw: boolean);
procedure resetFields(); procedure resetFields();
begin begin
@ -84,12 +84,12 @@ begin
if throw and (r.front <> 'v') then if throw and (r.front <> 'v') then
error('Invalid semVer format, the text must start with "v"'); error('Invalid semVer format, the text must start with "v"');
r.popFront; r.popFront;
fMajor := r.takeUntil('.').yield.ToInteger; fMajor := StrToInt64Def(r.takeUntil('.').yield, 0);
if throw and r.empty then if throw and r.empty then
error('Invalid semVer format, minor and patch miss'); error('Invalid semVer format, minor and patch miss');
fMinor := r.popFront^.takeUntil('.').yield.ToInteger; fMinor := StrToInt64Def(r.popFront^.takeUntil('.').yield, 0);
if not r.empty then if not r.empty then
fPatch := r.popFront^.takeWhile(['0'..'9']).yield.ToInteger; fPatch := StrToInt64Def(r.popFront^.takeWhile(['0'..'9']).yield, 0);
if not r.empty then if not r.empty then
fAdditional := r.popFront^.takeUntil(#0).yield; fAdditional := r.popFront^.takeUntil(#0).yield;
fValid := true; fValid := true;