mirror of https://gitlab.com/basile.b/dexed.git
libman, DUB fetch, support for dl the latest tag, close #57
+ fix wrong usage of upgrade
This commit is contained in:
parent
7f1bba9094
commit
90d541639d
Binary file not shown.
After Width: | Height: | Size: 595 B |
|
@ -13,7 +13,7 @@
|
||||||
<DpiAware Value="True"/>
|
<DpiAware Value="True"/>
|
||||||
</XPManifest>
|
</XPManifest>
|
||||||
<Icon Value="0"/>
|
<Icon Value="0"/>
|
||||||
<Resources Count="84">
|
<Resources Count="85">
|
||||||
<Resource_0 FileName="../icons/window/layout_add.png" Type="RCDATA" ResourceName="LAYOUT_ADD"/>
|
<Resource_0 FileName="../icons/window/layout_add.png" Type="RCDATA" ResourceName="LAYOUT_ADD"/>
|
||||||
<Resource_1 FileName="../icons/window/layout.png" Type="RCDATA" ResourceName="LAYOUT"/>
|
<Resource_1 FileName="../icons/window/layout.png" Type="RCDATA" ResourceName="LAYOUT"/>
|
||||||
<Resource_2 FileName="../icons/window/application_go.png" Type="RCDATA" ResourceName="APPLICATION_GO"/>
|
<Resource_2 FileName="../icons/window/application_go.png" Type="RCDATA" ResourceName="APPLICATION_GO"/>
|
||||||
|
@ -98,6 +98,7 @@
|
||||||
<Resource_81 FileName="../icons/arrow/arrow_pen.png" Type="RCDATA" ResourceName="ARROW_PEN"/>
|
<Resource_81 FileName="../icons/arrow/arrow_pen.png" Type="RCDATA" ResourceName="ARROW_PEN"/>
|
||||||
<Resource_82 FileName="../icons/arrow/arrow_down.png" Type="RCDATA" ResourceName="ARROW_DOWN"/>
|
<Resource_82 FileName="../icons/arrow/arrow_down.png" Type="RCDATA" ResourceName="ARROW_DOWN"/>
|
||||||
<Resource_83 FileName="../icons/other/case.png" Type="RCDATA" ResourceName="CASE"/>
|
<Resource_83 FileName="../icons/other/case.png" Type="RCDATA" ResourceName="CASE"/>
|
||||||
|
<Resource_84 FileName="../icons/other/tag_purple.png" Type="RCDATA" ResourceName="TAG_PURPLE"/>
|
||||||
</Resources>
|
</Resources>
|
||||||
</General>
|
</General>
|
||||||
<i18n>
|
<i18n>
|
||||||
|
|
|
@ -17,14 +17,18 @@ type
|
||||||
private
|
private
|
||||||
class var fList: TStringList;
|
class var fList: TStringList;
|
||||||
cbb: TComboBox;
|
cbb: TComboBox;
|
||||||
function getText: string;
|
fGetLatestTag: boolean;
|
||||||
|
function getPackageName: string;
|
||||||
|
function getPackageVersion: string;
|
||||||
procedure getList(sender: TObject);
|
procedure getList(sender: TObject);
|
||||||
|
procedure btnTagCLick(sender: TObject);
|
||||||
public
|
public
|
||||||
class function showAndWait(out value: string): TModalResult; static;
|
class function showAndWait(out pName, pVersion: string): TModalResult; static;
|
||||||
class constructor classCtor;
|
class constructor classCtor;
|
||||||
class destructor classDtor;
|
class destructor classDtor;
|
||||||
constructor Create(TheOwner: TComponent); override;
|
constructor Create(TheOwner: TComponent); override;
|
||||||
property text: string read getText;
|
property packageName: string read getPackageName;
|
||||||
|
property packageVersion: string read getPackageVersion;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ TCELibManEditorWidget }
|
{ TCELibManEditorWidget }
|
||||||
|
@ -195,6 +199,7 @@ var
|
||||||
bok: TBitBtn;
|
bok: TBitBtn;
|
||||||
bno: TBitBtn;
|
bno: TBitBtn;
|
||||||
bww: TBitBtn;
|
bww: TBitBtn;
|
||||||
|
bsv: TSpeedButton;
|
||||||
begin
|
begin
|
||||||
inherited;
|
inherited;
|
||||||
|
|
||||||
|
@ -212,6 +217,20 @@ begin
|
||||||
cbb.Items.AddStrings(fList);
|
cbb.Items.AddStrings(fList);
|
||||||
cbb.Sorted:= true;
|
cbb.Sorted:= true;
|
||||||
|
|
||||||
|
bsv := TSpeedButton.Create(self);
|
||||||
|
bsv.Parent := self;
|
||||||
|
bsv.Align := alRight;
|
||||||
|
bsv.Width:= 28;
|
||||||
|
bsv.BorderSpacing.Around := 4;
|
||||||
|
bsv.ShowHint := true;
|
||||||
|
bsv.Hint := 'get latest tag, by default get master';
|
||||||
|
bsv.OnClick:= @btnTagCLick;
|
||||||
|
bsv.AllowAllUp := true;
|
||||||
|
bsv.GroupIndex := 1;
|
||||||
|
bsv.Layout:= blGlyphTop;
|
||||||
|
bsv.Spacing:= 2;
|
||||||
|
AssignPng(bsv, 'TAG_PURPLE');
|
||||||
|
|
||||||
bww := TBitBtn.Create(self);
|
bww := TBitBtn.Create(self);
|
||||||
bww.Parent := self;
|
bww.Parent := self;
|
||||||
bww.Align := alRight;
|
bww.Align := alRight;
|
||||||
|
@ -249,6 +268,11 @@ begin
|
||||||
AssignPng(bno, 'CANCEL');
|
AssignPng(bno, 'CANCEL');
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TDubPackageQueryForm.btnTagCLick(sender: TObject);
|
||||||
|
begin
|
||||||
|
fGetLatestTag:= TSpeedButton(sender).down;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TDubPackageQueryForm.getList(sender: TObject);
|
procedure TDubPackageQueryForm.getList(sender: TObject);
|
||||||
var
|
var
|
||||||
pge: string;
|
pge: string;
|
||||||
|
@ -276,21 +300,49 @@ begin
|
||||||
cbb.Items.AddStrings(fList);
|
cbb.Items.AddStrings(fList);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TDubPackageQueryForm.getText: string;
|
function TDubPackageQueryForm.getPackageName: string;
|
||||||
begin
|
begin
|
||||||
result := cbb.Text;
|
result := cbb.Text;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
class function TDubPackageQueryForm.showAndWait(out value: string): TModalResult;
|
function TDubPackageQueryForm.getPackageVersion: string;
|
||||||
|
begin
|
||||||
|
if fGetLatestTag then
|
||||||
|
begin
|
||||||
|
with TFPHTTPClient.Create(nil) do
|
||||||
|
try
|
||||||
|
try
|
||||||
|
result := Get('https://code.dlang.org/api/packages/' + packageName + '/latest');
|
||||||
|
except
|
||||||
|
result := 'master';
|
||||||
|
end;
|
||||||
|
finally
|
||||||
|
Free;
|
||||||
|
end;
|
||||||
|
if (result.length >= 7) and (result[2] in ['0'..'9']) then
|
||||||
|
result := result[2..result.length-1]
|
||||||
|
else
|
||||||
|
result := 'master';
|
||||||
|
end
|
||||||
|
else result := 'master';
|
||||||
|
end;
|
||||||
|
|
||||||
|
class function TDubPackageQueryForm.showAndWait(out pName, pVersion: string): TModalResult;
|
||||||
var
|
var
|
||||||
frm: TDubPackageQueryForm;
|
frm: TDubPackageQueryForm;
|
||||||
begin
|
begin
|
||||||
frm := TDubPackageQueryForm.Create(nil);
|
frm := TDubPackageQueryForm.Create(nil);
|
||||||
result := frm.ShowModal;
|
result := frm.ShowModal;
|
||||||
if result = mrOk then
|
if result = mrOk then
|
||||||
value := frm.text
|
begin
|
||||||
|
pName := frm.packageName;
|
||||||
|
pVersion := frm.packageVersion;
|
||||||
|
end
|
||||||
else
|
else
|
||||||
value := '';
|
begin
|
||||||
|
pName := '';
|
||||||
|
pVersion := ''
|
||||||
|
end;
|
||||||
frm.Free;
|
frm.Free;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -298,6 +350,7 @@ procedure TCELibManEditorWidget.btnDubFetchClick(Sender: TObject);
|
||||||
var
|
var
|
||||||
dub: TProcess;
|
dub: TProcess;
|
||||||
nme: string = '';
|
nme: string = '';
|
||||||
|
ver: string;
|
||||||
msg: string;
|
msg: string;
|
||||||
pth: string;
|
pth: string;
|
||||||
dfn: string;
|
dfn: string;
|
||||||
|
@ -305,11 +358,10 @@ var
|
||||||
itf: ICEMessagesDisplay;
|
itf: ICEMessagesDisplay;
|
||||||
err: integer;
|
err: integer;
|
||||||
prj: TCEDubProject;
|
prj: TCEDubProject;
|
||||||
upd: boolean = false;
|
|
||||||
ovw: boolean = false;
|
ovw: boolean = false;
|
||||||
row: TListItem = nil;
|
row: TListItem = nil;
|
||||||
begin
|
begin
|
||||||
if TDubPackageQueryForm.showAndWait(nme) <> mrOk then
|
if TDubPackageQueryForm.showAndWait(nme, ver) <> mrOk then
|
||||||
exit;
|
exit;
|
||||||
if List.Items.FindCaption(0, nme, false, false, false).isNotNil then
|
if List.Items.FindCaption(0, nme, false, false, false).isNotNil then
|
||||||
begin
|
begin
|
||||||
|
@ -318,35 +370,28 @@ begin
|
||||||
else ovw := true;
|
else ovw := true;
|
||||||
end;
|
end;
|
||||||
{$IFDEF WINDOWS}
|
{$IFDEF WINDOWS}
|
||||||
pth := GetEnvironmentVariable('APPDATA') + '\dub\packages\' + nme + '-master';
|
pth := GetEnvironmentVariable('APPDATA') + '\dub\packages\' + nme + '-' + ver;
|
||||||
{$ELSE}
|
{$ELSE}
|
||||||
pth := GetEnvironmentVariable('HOME') + '/.dub/packages/' + nme + '-master';
|
pth := GetEnvironmentVariable('HOME') + '/.dub/packages/' + nme + '-' + ver;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
itf := getMessageDisplay;
|
itf := getMessageDisplay;
|
||||||
if pth.dirExists and not DeleteDirectory(pth, false) then
|
if pth.dirExists and not DeleteDirectory(pth, false) then
|
||||||
begin
|
begin
|
||||||
upd := true;
|
itf.message('the existing package cant be deleted. To be updated the package must be deleted manually',
|
||||||
itf.message('information, the dub package is already fetched and will be upgraded', nil, amcMisc, amkInf);
|
nil, amcMisc, amkWarn);
|
||||||
|
exit;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// fetch / updgrade
|
// fetch
|
||||||
dub := TProcess.Create(nil);
|
dub := TProcess.Create(nil);
|
||||||
try
|
try
|
||||||
dub.Executable:= 'dub';
|
dub.Executable:= 'dub';
|
||||||
dub.Options:= [poUsePipes, poStderrToOutPut];
|
dub.Options:= [poUsePipes, poStderrToOutPut];
|
||||||
dub.ShowWindow:= swoHIDE;
|
dub.ShowWindow:= swoHIDE;
|
||||||
if not upd then
|
dub.Parameters.Add('fetch');
|
||||||
begin
|
dub.Parameters.Add(nme);
|
||||||
dub.Parameters.Add('fetch');
|
if ver = 'master' then
|
||||||
dub.Parameters.Add(nme);
|
|
||||||
// fetch project, version handling, pth is hard to set because of semVer suffix.
|
|
||||||
// needed: a folder monitor to detect the one created by dub.
|
|
||||||
dub.Parameters.Add('--version=~master');
|
dub.Parameters.Add('--version=~master');
|
||||||
end else
|
|
||||||
begin
|
|
||||||
dub.CurrentDirectory := pth;
|
|
||||||
dub.Parameters.Add('upgrade');
|
|
||||||
end;
|
|
||||||
dub.Execute;
|
dub.Execute;
|
||||||
while dub.Running do sleep(10);
|
while dub.Running do sleep(10);
|
||||||
err := dub.ExitStatus;
|
err := dub.ExitStatus;
|
||||||
|
|
Loading…
Reference in New Issue