-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathportablemain.pas
299 lines (251 loc) · 6.21 KB
/
portablemain.pas
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
unit portablemain;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ComCtrls, zlibexgz, FileCtrl, ExtCtrls;
type
TForm1 = class(TForm)
ProgressBar1: TProgressBar;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Timer1: TTimer;
procedure Button3Click(Sender: TObject);
procedure WMNCHitTest(var Msg: TWMNCHitTest) ; message WM_NCHitTest;
procedure Timer1Timer(Sender: TObject);
procedure Timer2Timer(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
TBufferstream = class(TStream)
protected
belsobuf:pointer;
procedure SetSize(NewSize: Longint);
public
position,size:integer;
function Read(var Buffer; Count: Longint): Longint;override;
function Write(const Buffer; Count: Longint): Longint; override;
function Seek(Offset: Longint; Origin: Word): Longint;override;
constructor Create(buf:pointer; siz:integer);
destructor destroy;virtual;
end;
Tmyfilerecord = record
nev:string;
gzsiz:integer;
infiloffset:integer;
end;
var
Form1: TForm1;
fajlok:array of Tmyfilerecord;
procid:cardinal;
adir:string;
implementation
{$R *.DFM}
uses ShellAPI;
Function DelTree(DirName : string): Boolean;
var
SHFileOpStruct : TSHFileOpStruct;
DirBuf : array [0..255] of char;
begin
try
Fillchar(SHFileOpStruct,Sizeof(SHFileOpStruct),0) ;
FillChar(DirBuf, Sizeof(DirBuf), 0 ) ;
StrPCopy(DirBuf, DirName) ;
with SHFileOpStruct do begin
Wnd := 0;
pFrom := @DirBuf;
wFunc := FO_DELETE;
fFlags := FOF_ALLOWUNDO;
fFlags := fFlags or FOF_NOCONFIRMATION;
fFlags := fFlags or FOF_SILENT;
end;
Result := (SHFileOperation(SHFileOpStruct) = 0) ;
except
Result := False;
end;
end;
procedure TBufferStream.SetSize(NewSize: Longint);
begin
//üres...
end;
function TBufferStream.Read(var Buffer; Count: Longint): Longint;
begin
if count>size-position then
count:=size-position;
copymemory(@Buffer,pointer(dword(belsobuf)+position),count);
position:=position+count;
result:=count;
end;
function TBufferStream.Write(const Buffer; Count: Longint): Longint;
begin
messagebox(0,'Read only stream','not good',0);
end;
constructor TBufferStream.Create(buf:pointer; siz:integer);
begin
inherited Create;
position:=0;
size:=siz;
getmem(belsobuf,siz);
copymemory(belsobuf,buf,siz);
end;
destructor TBufferStream.destroy;
begin
freemem(belsobuf);
inherited;
end;
function TBufferStream.Seek(Offset: Longint; Origin: Word): Longint;
begin
case origin of
soFromBeginning:position:=offset;
soFromCurrent :position:=position+offset;
soFromEnd :position:=size-offset;
end;
result:=position;
end;
procedure msde(nev:string);
var
str2:string;
begin
str2:='';
while pos('\',nev)>0 do
begin
str2:=str2+copy(nev,1,pos('\',nev));
if not directoryexists(str2) then
mkdir(str2);
nev:=copy(nev,pos('\',nev)+1,1000);
end;
end;
procedure olvasfajl(filname:string;dir:string;offset:integer);
var
i,ln:integer;
fil:file;
str:string;
curroffs:integer;
chr:char;
buf:pointer;
uzbuf:pointer;
uzsiz:integer;
buf2:TStream;
OutputStream: TFileStream;
begin
with Form1 do begin
assignfile(fil,filname);
filemode:=0;
reset(fil,1);
seek(fil,offset);
setlength(fajlok,1000);
i:=0;
repeat
str:='';
repeat
blockread(fil,chr,1);
str:=str+chr;
until pos(#13#10,str)>0;
setlength(str,length(str)-2);
if str='' then break;
fajlok[i].nev:=dir+stringreplace(str,'/','\',[rfReplaceAll]);
str:='';
repeat
blockread(fil,chr,1);
str:=str+chr;
until pos(#13#10,str)>0;
setlength(str,length(str)-2);
fajlok[i].gzsiz:=strtoint(str);
inc(i);
until false;
setlength(fajlok,i);
ProgressBar1.Max:=i-1;
progressbar1.Repaint;
curroffs:=filepos(fil);
for i:=0 to high(fajlok) do
begin
fajlok[i].infiloffset:=curroffs;
inc(curroffs,fajlok[i].gzsiz);
end;
for i:=0 to high(fajlok) do
begin
ProgressBar1.Position:=i;
progressbar1.Repaint;
msde(fajlok[i].nev);
seek(fil,fajlok[i].infiloffset);
getmem(buf,fajlok[i].gzsiz);
blockread(fil,buf^,fajlok[i].gzsiz);
buf2:=Tbufferstream.Create(buf,fajlok[i].gzsiz);
freemem(buf);
if fileexists(fajlok[i].nev) then deletefile(fajlok[i].nev);
OutputStream := TFileStream.Create(fajlok[i].nev, fmCreate);
GZDecompressStream(buf2,Outputstream);
Freeandnil(Outputstream);
freeandnil(buf2);
end;
closefile(fil);
end; end;
procedure TForm1.WMNCHitTest(var Msg: TWMNCHitTest) ;
begin
inherited;
if Msg.Result = htClient then Msg.Result := htCaption;
end;
procedure TForm1.Button3Click(Sender: TObject);
begin
close;
end;
procedure startprocwithid(mit,params:string);
var
startupinfo:Tstartupinfo;
procinf:TProcessInformation;
begin
zeromemory(@startupinfo, sizeof(startupinfo));
startupinfo.cb:=sizeof(startupinfo);
createprocess(nil,Pchar(mit+' '+params),nil,nil,false,0,nil,nil,startupinfo,procinf);
procid:=procinf.hProcess;
end;
procedure TForm1.Timer1Timer(Sender: TObject);
var
tmp:Pchar;
tmpdir:string;
begin
Timer1.onTimer:=Timer2Timer;
Timer1.enabled:=false;
getmem(tmp,1000);
gettemppath(1000,tmp);
tmpdir:=string(tmp);
freemem(tmp);
repaint;
adir:=extractfilepath(Application.exename)+'\Stickman';
if not DirectoryExists(tmpdir+'Stickman') then
begin
if CreateDir(tmpdir+'Stickman') then
adir:=tmpdir+'Stickman'
else
if not DirectoryExists(adir) then
if not CreateDir(adir) then
begin
application.messagebox('Could not unpack','SMWF Portable',0);
close;
exit;
end;
end
else
adir:=tmpdir+'Stickman';
adir:=adir+'\';
if fileexists(adir+'Setup.exe') then
deltree(adir+'data\');
olvasfajl(application.exename,adir,356864);
startprocwithid(adir+'Setup.exe','');
Timer1.enabled:=true;
end;
procedure TForm1.Timer2Timer(Sender: TObject);
var
exitc:cardinal;
begin
exitc:=0;
Getexitcodeprocess(procid,exitc);
if exitc<>STILL_ACTIVE then
begin
deltree(copy(adir,0,length(adir)-1));
close;
end;
end;
end.