Subversion Repositories Kolibri OS

Compare Revisions

No changes between revisions

Regard whitespace Rev 7993 → Rev 7994

/programs/develop/backy/Backy
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/programs/develop/backy/Backy.c
1,21 → 1,22
 
/*
* Author: JohnXenox aka Aleksandr Igorevich.
*
* Programme name: Backy
* Description: The programme for backing up a file.
*
* Backy.c
* Author: JohnXenox aka Aleksandr Igorevich.
*
* Works from command line, only!
*/
 
#define CREATION_DATE "2020.05.17"
#define CREATION_DATE "2020.05.27"
 
#include <conio.h>
//#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
#include "Backy-lib.h"
#include "Backy_lang.h"
#include "Backy_lib.h"
 
int date = 0;
int time = 0;
41,11 → 42,15
 
char flag = 0;
 
char state;
 
 
int main(int argc, char** argv)
{
if (con_init_console_dll()) return 1; // init fail.
 
con_set_title("Backy");
 
// ============================================================ //
// preprocessing arguments from the command line. ============= //
//
60,7 → 65,7
 
 
// ============================================================ //
// preprocess the command line arguments. ===================== //
// process the command line arguments. ======================== //
 
if (argc > 1)
{
88,7 → 93,7
}
}
 
// if inut path is found, then copy it into the array "path_in".
// if input path is found, then copy it into the array "path_in".
if (*argv[i] == '/')
{
flag = 2;
146,29 → 151,47
}
else
{
//con_init_console_dll_param(-1, 23, -1, 23, "Backy");
if (con_init_console_dll()) return 1; // init fail
con_set_title("Useful info!");
 
printf("Useful info!");
#if defined (lang_en)
 
printf("\n Name: Backy");
printf("\n Date: %s", CREATION_DATE);
printf("\n Description: The programme for backing up a file.\n");
con_printf("\n Name: Backy");
con_printf("\n Date: %s", CREATION_DATE);
con_printf("\n Description: The programme for backing up a file.\n");
 
printf("\n Author: JohnXenox\n");
con_printf("\n Author: JohnXenox\n");
 
printf("\n Usage: backy <path1> <-o path2>\n");
printf(" path1 - path to a file to be backuped.\n");
printf(" -o path2 - path to the output directory without the name of a file.\n\n");
con_printf("\n Usage: backy <path1> <-o path2>\n");
con_printf(" path1 - path to a file to be backuped.\n");
con_printf(" -o path2 - path to the output directory without the name of a file.\n\n");
 
printf(" Examples:\n");
printf(" backy test.c\n");
printf(" backy test.c -o /tmp0/1/\n");
printf(" backy /hd0/1/test.c\n");
printf(" backy /hd0/1/test.c -o /tmp0/1/\n");
con_printf(" Examples:\n");
con_printf(" backy test.c\n");
con_printf(" backy test.c -o /tmp0/1/\n");
con_printf(" backy /hd0/1/test.c\n");
con_printf(" backy /hd0/1/test.c -o /tmp0/1/\n");
 
exit(0);
return 1;
#elif defined (lang_ru)
 
con_printf("\n ˆ¬ï: Backy");
con_printf("\n „ â : %s", CREATION_DATE);
con_printf("\n Ž¯¨á ­¨¥: à®£à ¬¬  ¤«ï ᮧ¤ ­¨ï १¥à¢­®© ª®¯¨¨ ä ©« .\n");
 
con_printf("\n €¢â®à: JohnXenox\n");
 
con_printf("\n ˆá¯®«ì§®¢ ­¨¥: backy <path1> <-o path2>\n");
con_printf(" path1 - ¯ãâì ª ä ©«ã, ª®â®àë© ­ ¤® ᪮¯¨à®¢ âì.\n");
con_printf(" -o path2 - ¯ãâì ª ¤¨à¥ªâ®à¨¨, ¢ ª®â®àãî ¡ã¤¥â ᪮¯¨à®¢ ­  १¥à¢­ ï ª®¯¨ï ä ©« .\n\n");
 
con_printf(" à¨¬¥àë:\n");
con_printf(" backy test.c\n");
con_printf(" backy test.c -o /tmp0/1/\n");
con_printf(" backy /hd0/1/test.c\n");
con_printf(" backy /hd0/1/test.c -o /tmp0/1/\n");
 
#endif
 
return 0;
}
 
//printf("Path_in: %s\n", path_in);
293,29 → 316,28
// ============================================================ //
// adding the name of the input file to the output path. ====== //
 
// searching the end of the path string.
int i = 0;
int y = 0;
 
// searching for zero terminator in the input path.
// searching for a zero terminator in the input path.
while (path_in[i] != 0)
{
i++;
}
 
// searching for slash in the input path.
// searching for a slash in the input path.
while (path_in[i] != '/')
{
i--;
}
 
// searching for zero terminator in the output path.
// searching for a zero terminator in the output path.
while (path_out[y] != 0)
{
y++;
}
 
// searching for slash in the output path.
// searching for a slash in the output path.
if (path_out[y - 1] == '/')
{
y--;
329,7 → 351,7
 
i = 0;
 
// searching for zero terminator in the output path.
// searching for a zero terminator in the output path.
while (path_out[i] != 0)
{
i++;
343,7 → 365,7
 
i += strlen(full_date);
 
// adding the extension to path.
// adding the extension to a path.
strncpy(&path_out[i], ext, 4);
 
//printf("Path_in: %s\n", path_in);
351,9 → 373,21
 
data = openFile(&length, path_in);
 
saveFile(length, data, 0, path_out);
if(data == 0)
{
#if defined (lang_en)
 
con_printf("\nThe file isn't found!\n");
 
return 0;
#elif defined (lang_ru)
 
con_printf("\n” ©« ­¥ ­ ©¤¥­!\n");
 
#endif
 
return 13;
}
 
return checkStateOnSave(saveFile(length, data, 0, path_out));
}
 
/programs/develop/backy/Backy.png
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/programs/develop/backy/Backy_lang.h
0,0 → 1,3
 
//#define lang_ru
#define lang_en
/programs/develop/backy/Backy_lib.h
0,0 → 1,152
 
/*
* Backy_lib.h
* Author: JohnXenox aka Aleksandr Igorevich.
*/
 
#ifndef __Backy_lib_h__
#define __Backy_lib_h__
 
typedef unsigned int uint32_t;
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef unsigned long long uint64_t;
typedef char int8_t;
typedef short int int16_t;
typedef int int32_t;
typedef long long int64_t;
 
static inline uint32_t getDate(void)
{
uint32_t date;
__asm__ __volatile__("int $0x40":"=a"(date):"a"(29));
return date;
}
 
 
 
static inline uint32_t getTime(void)
{
uint32_t time;
__asm__ __volatile__("int $0x40":"=a"(time):"a"(3));
return time;
}
 
 
 
static inline void *openFile(uint32_t *length, const uint8_t *path)
{
uint8_t *fd;
 
__asm__ __volatile__ ("int $0x40":"=a"(fd), "=d"(*length):"a" (68), "b"(27),"c"(path));
 
return fd;
}
 
 
 
static inline int32_t saveFile(uint32_t nbytes, uint8_t *data, uint32_t enc, uint8_t *path)
{
int32_t val;
 
uint8_t dt[28]; // basic information structure.
 
(uint32_t) dt[0] = 2; // subfunction number.
(uint32_t) dt[4] = 0; // reserved.
(uint32_t) dt[8] = 0; // reserved.
(uint32_t) dt[12] = nbytes; // number of bytes to write.
(uint8_t *) dt[16] = data; // pointer to data.
(uint32_t) dt[20] = enc; // string encoding (0 = default, 1 = cp866, 2 = UTF-16LE, 3 = UTF-8).
(uint8_t *) dt[24] = path; // pointer to path.
 
__asm__ __volatile__("int $0x40":"=a"(val):"a"(80), "b"(&dt));
 
return val;
}
 
 
 
 
 
int checkStateOnSave(int state)
{
#if defined (lang_en)
 
switch(state)
{
case 2: con_printf("\nThe function isn't supported for the given file system!\n");
return 2;
 
case 3: con_printf("\nUnknown file system!\n");
return 3;
 
case 5: con_printf("\nFile isn't found!\n");
return 5;
 
case 6: con_printf("\nEnd of a file, EOF!\n");
return 6;
 
case 7: con_printf("\nPointer lies outside of application memory!\n");
return 7;
 
case 8: con_printf("\nDisk is full!\n");
return 8;
 
case 9: con_printf("\nFile system error!\n");
return 9;
 
case 10: con_printf("\nAccess denied!\n");
return 10;
 
case 11: con_printf("\nDevice error!\n");
return 11;
 
case 12: con_printf("\nFile system requires more memory!\n");
return 12;
}
 
#elif defined (lang_ru)
 
switch(state)
{
case 2: con_printf("\n”ã­ªæ¨ï ­¥ ¯®¤¤¥à¦¨¢ ¥âáï ¤«ï ¤ ­­®© ä ©«®¢®© á¨á⥬ë!\n");
return 2;
 
case 3: con_printf("\n¥¨§¢¥áâ­ ï ä ©«®¢ ï á¨á⥬ !\n");
return 3;
 
case 5: con_printf("\n” ©« ­¥ ­ ©¤¥­!\n");
return 5;
 
case 6: con_printf("\n” ©« § ª®­ç¨«áï!\n");
return 6;
 
case 7: con_printf("\n“ª § â¥«ì ¢­¥ ¯ ¬ï⨠¯à¨«®¦¥­¨ï!\n");
return 7;
 
case 8: con_printf("\n„¨áª § ¯®«­¥­!\n");
return 8;
 
case 9: con_printf("\nŽè¨¡ª  ä ©«®¢®© á¨á⥬ë!\n");
return 9;
 
case 10: con_printf("\n„®áâ㯠§ ¯à¥éñ­!\n");
return 10;
 
case 11: con_printf("\nŽè¨¡ª  ãáâனá⢠!\n");
return 11;
 
case 12: con_printf("\n” ©«®¢®© á¨á⥬¥ ­¥¤®áâ â®ç­® ®¯¥à â¨¢­®© ¯ ¬ïâ¨!\n");
return 12;
}
 
#endif
}
 
 
 
 
 
 
 
#endif
/programs/develop/backy/Backy_ru
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/programs/develop/backy/Backy_ru.png
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/programs/develop/backy/History.txt
1,9 → 1,13
History:
 
Backy 2020.05.27
Added warnings about errors.
Added translation on Russian language.
 
Backy 2020.05.17
Code optimization.
 
Backy 2020.05.05
Backy 2020.05.07
Changed an output file name.
 
Backy 2020.04.27
/programs/develop/backy/Readme-en.txt
1,4 → 1,4
Backy (release date 2020.05.17)
Backy (release date 2020.05.27)
 
Backy is a programme for backing up a file.
 
/programs/develop/backy/Readme-ru.txt
1,4 → 1,4
Backy (дата выпуска 2020.05.17)
Backy (дата выпуска 2020.05.27)
 
Backy - это программа для создания резервной копии файла.
 
/programs/system/notify3/build.bat
0,0 → 1,2
@fasm notify.asm @notify
@pause