2020-05-31 16:37:09 +02:00
|
|
|
|
#define MEMSIZE 1024*50
|
2020-05-17 17:52:41 +02:00
|
|
|
|
|
|
|
|
|
#include "../lib/gui.h"
|
|
|
|
|
#include "../lib/copyf.h"
|
|
|
|
|
|
|
|
|
|
#include "../lib/obj/libini.h"
|
|
|
|
|
#include "../lib/obj/libimg.h"
|
|
|
|
|
#include "../lib/obj/http.h"
|
|
|
|
|
#include "../lib/obj/network.h"
|
|
|
|
|
|
|
|
|
|
#include "../lib/patterns/restart_process.h"
|
|
|
|
|
|
|
|
|
|
#ifndef AUTOBUILD
|
|
|
|
|
#include "lang.h--"
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-05-17 20:05:05 +02:00
|
|
|
|
bool install_complete = false;
|
2020-05-31 16:37:09 +02:00
|
|
|
|
_http http;
|
2020-05-17 17:52:41 +02:00
|
|
|
|
|
2020-05-17 20:05:05 +02:00
|
|
|
|
#define WINW 460
|
2020-05-31 16:37:09 +02:00
|
|
|
|
#define WINH 380
|
2020-05-17 17:52:41 +02:00
|
|
|
|
|
2020-05-17 20:05:05 +02:00
|
|
|
|
//#define LANG_RUS 1
|
2020-05-17 17:52:41 +02:00
|
|
|
|
|
|
|
|
|
#ifdef LANG_RUS
|
2020-05-17 20:05:05 +02:00
|
|
|
|
#define T_WINDOW_TITLE "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> KolibriOS"
|
|
|
|
|
#define T_TITLE_H1 "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
|
|
|
|
#define T_INTRO "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ਫ<EFBFBD><E0A8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ᪠砥<E1AAA0> <20><><EFBFBD><E1ABA5><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> KolibriOS <20> <20><>ᯠ<EFBFBD><E1AFA0><EFBFBD><EFBFBD> <20><> <20><> RAM-<2D><><EFBFBD><EFBFBD>. <20><><EFBFBD> <20>⮬ <20><><EFBFBD><EFBFBD> <20><> <20>㤥<EFBFBD> <20><>१<EFBFBD><E0A5A7><EFBFBD>饭<EFBFBD>, <20><><EFBFBD> <20>⮣<EFBFBD> <20><><EFBFBD><EFBFBD>室<EFBFBD><E5AEA4><EFBFBD> <20><><EFBFBD>࠭<EFBFBD><E0A0AD><EFBFBD> <20><>ࠧ <20> <20><>१<EFBFBD><E0A5A7><EFBFBD>㧨<EFBFBD><E3A7A8><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD>ன<EFBFBD><E0AEA9> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ਫ<EFBFBD><E0A8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>। <20><>砫<EFBFBD><E7A0AB> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
|
|
|
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: <EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 䠩<EFBFBD><EFBFBD> <EFBFBD><EFBFBD> RAM-<EFBFBD><EFBFBD>᪥ <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD>१<EFBFBD><EFBFBD><EFBFBD>ᠭ<EFBFBD>!";
|
|
|
|
|
#define T_INSTALL "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
|
|
|
|
#define T_COMPLETE "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>襭<EFBFBD>"
|
2020-05-17 17:52:41 +02:00
|
|
|
|
#define T_EXIT "<22><>室"
|
|
|
|
|
#define IMG_URL "http://builds.kolibrios.org/rus/data/data/kolibri.img"
|
2020-05-31 16:37:09 +02:00
|
|
|
|
#define KS "<22><><EFBFBD>࠭<EFBFBD><E0A0AD><EFBFBD> <20><><EFBFBD><EFBFBD>ன<EFBFBD><E0AEA9>"
|
|
|
|
|
#define RA "<22><>१<EFBFBD><E0A5A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20>ணࠬ<E0AEA3><E0A0AC>"
|
2020-05-17 17:52:41 +02:00
|
|
|
|
#else
|
2020-05-17 20:05:05 +02:00
|
|
|
|
#define T_WINDOW_TITLE "KolibriOS Online Updater"
|
|
|
|
|
#define T_TITLE_H1 "ONLINE UPDATE"
|
|
|
|
|
#define T_INTRO "This app will download the latest KolibriOS dirsto and update your RAM-disk with it. Kernel won't be restarted.
|
|
|
|
|
Please close all opened apps before start.
|
2020-05-31 16:37:09 +02:00
|
|
|
|
Note that all changes on RAM-disk will be lost.";
|
2020-05-17 17:52:41 +02:00
|
|
|
|
#define T_INSTALL "Update"
|
|
|
|
|
#define T_COMPLETE "Update complete"
|
|
|
|
|
#define T_EXIT "Exit"
|
|
|
|
|
#define IMG_URL "http://builds.kolibrios.org/eng/data/data/kolibri.img"
|
2020-05-31 16:37:09 +02:00
|
|
|
|
#define KS "Keep settings folder"
|
|
|
|
|
#define RA "Restart all apps"
|
2020-05-17 17:52:41 +02:00
|
|
|
|
#endif
|
2020-05-17 20:05:05 +02:00
|
|
|
|
char accept_language[]="en"; //not used, necessary for http.get()
|
2020-05-31 16:37:09 +02:00
|
|
|
|
void Operation_Draw_Progress(dword f) {} //not used, necessary for copyf()
|
|
|
|
|
|
|
|
|
|
checkbox keep_settings = { KS, true };
|
|
|
|
|
checkbox restart_apps = { RA, true };
|
2020-05-17 17:52:41 +02:00
|
|
|
|
|
|
|
|
|
void main()
|
|
|
|
|
{
|
2020-05-31 16:37:09 +02:00
|
|
|
|
int btn;
|
|
|
|
|
sensor progress;
|
2020-05-17 17:52:41 +02:00
|
|
|
|
load_dll(libimg, #libimg_init,1);
|
|
|
|
|
load_dll(libHTTP, #http_lib_init,1);
|
2020-05-31 16:37:09 +02:00
|
|
|
|
@SetEventMask(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_STACK);
|
|
|
|
|
loop() switch(@WaitEventTimeout(300))
|
2020-05-17 17:52:41 +02:00
|
|
|
|
{
|
2020-05-31 16:37:09 +02:00
|
|
|
|
case evButton:
|
|
|
|
|
btn = @GetButtonID();
|
|
|
|
|
if (btn<=2) ExitProcess();
|
|
|
|
|
if (btn==9) goto _INSTALL;
|
|
|
|
|
keep_settings.click(btn);
|
|
|
|
|
restart_apps.click(btn);
|
2020-05-17 17:52:41 +02:00
|
|
|
|
break;
|
2020-05-31 16:37:09 +02:00
|
|
|
|
|
2020-05-17 17:52:41 +02:00
|
|
|
|
case evKey:
|
2020-05-31 16:37:09 +02:00
|
|
|
|
switch (@GetKeyScancode()) {
|
|
|
|
|
case SCAN_CODE_ESC: ExitProcess();
|
|
|
|
|
case SCAN_CODE_ENTER:
|
|
|
|
|
if (install_complete) ExitProcess();
|
|
|
|
|
else {
|
|
|
|
|
_INSTALL:
|
|
|
|
|
http.get(IMG_URL);
|
|
|
|
|
goto _DRAW_WINDOW;
|
|
|
|
|
}
|
2020-05-17 17:52:41 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
2020-05-31 16:37:09 +02:00
|
|
|
|
|
2020-05-17 17:52:41 +02:00
|
|
|
|
case evReDraw:
|
2020-05-31 16:37:09 +02:00
|
|
|
|
_DRAW_WINDOW:
|
|
|
|
|
sc.get();
|
|
|
|
|
DefineAndDrawWindow(screen.width-WINW/2,screen.height-WINH/2,
|
|
|
|
|
WINW+9,WINH+skin_height,0x34,sc.work,T_WINDOW_TITLE,0);
|
|
|
|
|
WriteText(30, 20, 0x81, 0xEC008C, T_TITLE_H1);
|
|
|
|
|
if (!install_complete) {
|
|
|
|
|
DrawTextViewArea(30, 50, WINW-60, WINH-80, T_INTRO, -1, sc.work_text);
|
|
|
|
|
progress.set_size(30, WINH-130, WINW-60, 20);
|
|
|
|
|
if (http.transfer<=0) {
|
|
|
|
|
DrawCaptButton(WINW-110/2, WINH-70, 110, 28, 9, 0x0092D8, 0xFFFfff, T_INSTALL);
|
|
|
|
|
keep_settings.draw(30, WINH - 210);
|
|
|
|
|
restart_apps.draw(30, WINH - 185);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
DrawIcon32(WINW-32/2, 140, sc.work, 49);
|
|
|
|
|
WriteTextCenter(0,185, WINW, sc.work_text, T_COMPLETE);
|
|
|
|
|
DrawCaptButton(WINW-110/2, WINH-70, 110, 28, 2,
|
|
|
|
|
0x0092D8, 0xFFFfff, T_EXIT);
|
|
|
|
|
}
|
2020-05-17 17:52:41 +02:00
|
|
|
|
|
|
|
|
|
case evNetwork:
|
|
|
|
|
if (http.transfer <= 0) break;
|
|
|
|
|
http.receive();
|
2020-05-17 20:05:05 +02:00
|
|
|
|
if (http.content_length) {
|
2020-05-31 16:37:09 +02:00
|
|
|
|
progress.draw_progress(http.content_length - http.content_received
|
|
|
|
|
* progress.w / http.content_length);
|
|
|
|
|
}
|
|
|
|
|
if (!http.receive_result) {
|
|
|
|
|
CreateFile(http.content_received,
|
|
|
|
|
http.content_pointer, "/tmp0/1/latest.img");
|
2020-12-08 12:26:22 +01:00
|
|
|
|
http.stop();
|
2020-05-31 16:37:09 +02:00
|
|
|
|
EventDownloadComplete();
|
2020-05-17 20:05:05 +02:00
|
|
|
|
}
|
2020-05-17 17:52:41 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-31 16:37:09 +02:00
|
|
|
|
dword GetFreeSpaceOfRamdisk()
|
2020-05-17 17:52:41 +02:00
|
|
|
|
{
|
2020-05-31 16:37:09 +02:00
|
|
|
|
dword rdempty = malloc(1440*1024);
|
|
|
|
|
CreateFile(0, 1440*1024, rdempty, "/rd/1/rdempty");
|
|
|
|
|
free(rdempty);
|
2020-12-13 13:31:53 +01:00
|
|
|
|
rdempty = get_file_size("/rd/1/rdempty");
|
2020-05-31 16:37:09 +02:00
|
|
|
|
DeleteFile("/rd/1/rdempty");
|
|
|
|
|
return rdempty;
|
2020-05-17 17:52:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-31 16:37:09 +02:00
|
|
|
|
signed CheckFreeSpace(dword _latest, _combined)
|
2020-05-17 17:52:41 +02:00
|
|
|
|
{
|
2020-05-31 16:37:09 +02:00
|
|
|
|
dword cur_size, new_size, empty;
|
|
|
|
|
DIR_SIZE dir_size;
|
2020-05-17 17:52:41 +02:00
|
|
|
|
|
2020-05-31 16:37:09 +02:00
|
|
|
|
dir_size.get("/sys");
|
|
|
|
|
cur_size = dir_size.bytes;
|
2020-05-17 17:52:41 +02:00
|
|
|
|
|
2020-05-31 16:37:09 +02:00
|
|
|
|
copyf("/sys", _combined);
|
|
|
|
|
copyf(_latest, _combined);
|
|
|
|
|
dir_size.get(_combined);
|
|
|
|
|
new_size = dir_size.bytes;
|
|
|
|
|
|
|
|
|
|
empty = GetFreeSpaceOfRamdisk();
|
|
|
|
|
|
|
|
|
|
return cur_size + empty - new_size / 1024;
|
2020-05-17 17:52:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EventDownloadComplete()
|
|
|
|
|
{
|
|
|
|
|
dword unimg_id, slot_n;
|
2020-05-31 16:37:09 +02:00
|
|
|
|
signed space_delta;
|
|
|
|
|
int i=0;
|
|
|
|
|
|
|
|
|
|
char osupdate[32];
|
|
|
|
|
char latest[40];
|
|
|
|
|
char backup[40];
|
|
|
|
|
char combined[40];
|
|
|
|
|
char exract_param[64];
|
|
|
|
|
char backup_settings[64];
|
|
|
|
|
|
|
|
|
|
do { sprintf(#osupdate, "/tmp0/1/osupdate%d", i); i++;
|
|
|
|
|
} while (dir_exists(#osupdate));
|
|
|
|
|
CreateDir(#osupdate);
|
|
|
|
|
|
|
|
|
|
sprintf(#latest, "%s/latest", #osupdate);
|
|
|
|
|
sprintf(#backup, "%s/rdbackup", #osupdate);
|
|
|
|
|
sprintf(#combined, "%s/combined", #osupdate);
|
|
|
|
|
sprintf(#backup_settings, "%s/settings", #backup);
|
|
|
|
|
sprintf(#exract_param, "/tmp0/1/latest.img %s -e", #latest);
|
2020-05-17 17:52:41 +02:00
|
|
|
|
|
|
|
|
|
|
2020-05-31 16:37:09 +02:00
|
|
|
|
unimg_id = RunProgram("/sys/unimg", #exract_param);
|
2020-05-17 17:52:41 +02:00
|
|
|
|
do {
|
|
|
|
|
slot_n = GetProcessSlot(unimg_id);
|
|
|
|
|
pause(10);
|
|
|
|
|
} while (slot_n!=0);
|
|
|
|
|
|
2020-05-31 16:37:09 +02:00
|
|
|
|
space_delta = CheckFreeSpace(#latest, #combined);
|
|
|
|
|
if (space_delta<0) {
|
|
|
|
|
sprintf(#param, "'Not enought free space! You need %d Kb more.'E", -space_delta);
|
|
|
|
|
notify(#param);
|
|
|
|
|
} else {
|
|
|
|
|
copyf("/sys", #backup);
|
|
|
|
|
copyf(#latest, "/sys");
|
|
|
|
|
if (keep_settings.checked) copyf(#backup_settings, "/rd/1/settings");
|
|
|
|
|
if (restart_apps.checked) RestartAllProcess();
|
|
|
|
|
install_complete = true;
|
2020-05-17 17:52:41 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-31 16:37:09 +02:00
|
|
|
|
|
|
|
|
|
|