2016-09-09 13:58:28 +00:00
|
|
|
#ifndef __UTILITY_H
|
|
|
|
#define __UTILITY_H
|
|
|
|
|
|
|
|
#ifndef __STRINGS_H
|
|
|
|
#include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __ARRAY_H
|
|
|
|
#include <array.h>
|
|
|
|
#endif
|
|
|
|
|
2018-01-09 09:31:50 +00:00
|
|
|
#ifndef __VARIANT_H
|
|
|
|
#include <variant.h>
|
|
|
|
#endif
|
|
|
|
|
2019-06-11 11:07:47 +02:00
|
|
|
#include <lffiles.h>
|
|
|
|
|
2016-09-09 13:58:28 +00:00
|
|
|
#define STRINGIFY(x) #x
|
2020-04-26 14:24:05 +02:00
|
|
|
#define SAFE_DELETE(p) { if( (p) != nullptr ) delete (p); (p) = nullptr; }
|
2016-09-09 13:58:28 +00:00
|
|
|
#define TOSTRING(x) STRINGIFY(x)
|
2017-11-08 10:45:17 +00:00
|
|
|
#define DEBUG_ENABLED is_debug_station()
|
2016-09-09 13:58:28 +00:00
|
|
|
|
2019-12-09 09:36:04 +01:00
|
|
|
bool sirio_codesigning(const TFilename& filename, bool verify = false);
|
2019-11-28 11:04:32 +01:00
|
|
|
#define SIRIOSIGN(filename) sirio_codesigning((const TFilename&)((filename)), false)
|
|
|
|
#define SIRIOSIGN_VERIFY(filename) sirio_codesigning((const TFilename&)((filename)), true)
|
2019-11-27 18:04:18 +01:00
|
|
|
|
2019-06-11 11:07:47 +02:00
|
|
|
|
2016-09-09 13:58:28 +00:00
|
|
|
class TPerformance_profiler : public TObject
|
|
|
|
{
|
|
|
|
TString _desc;
|
|
|
|
long _start;
|
|
|
|
bool _trc;
|
|
|
|
|
|
|
|
public:
|
|
|
|
void show() const;
|
|
|
|
|
|
|
|
TPerformance_profiler(const char* desc = "", bool trc = false);
|
|
|
|
~TPerformance_profiler();
|
|
|
|
};
|
|
|
|
|
|
|
|
char* format (const char* fmt, ...);
|
|
|
|
const char* cmd2name(const char* argv0, const char* argv1 = "");
|
|
|
|
int rtoi(const char * roman);
|
|
|
|
const char* itor(int i);
|
|
|
|
bool fcopy(const char* orig, const char* dest, bool append = false, bool advanced = false);
|
|
|
|
bool fexist(const char* file);
|
|
|
|
long fsize(const char* file);
|
|
|
|
bool dexist(const char* file);
|
|
|
|
void log_message(const char* fmt, ...);
|
|
|
|
|
|
|
|
bool make_dir(const char* dir);
|
|
|
|
bool remove_file(const char* file);
|
|
|
|
int remove_files(const char* mask, bool subdirs);
|
|
|
|
int count_files(const char* dir, bool subdirs);
|
|
|
|
int list_files(const char* mask, TString_array& result);
|
|
|
|
bool input_filename(TFilename& file);
|
|
|
|
|
|
|
|
const char* encode(const char* data);
|
|
|
|
const char* decode(const char* data);
|
|
|
|
|
|
|
|
inline bool is_slash(char s) // @parm Carattere da confrontare
|
|
|
|
{ return s == '\\' || s == '/'; }
|
|
|
|
|
|
|
|
inline bool is_not_slash(char s) // @parm Carattere da confrontare
|
|
|
|
{ return s != '\\' && s != '/'; }
|
|
|
|
|
|
|
|
const char* esc(const char* str); // Trasforma le sequenze "\n" nel carattere '\n'
|
|
|
|
const char* unesc(const char* str); // Trasforma i caratteri '\n' nella sequenza "\n"
|
|
|
|
|
|
|
|
istream& eatwhite (istream& i);
|
|
|
|
|
|
|
|
const TString& get_hostname();
|
2017-11-08 10:45:17 +00:00
|
|
|
bool is_debug_station();
|
2016-09-09 13:58:28 +00:00
|
|
|
bool is_power_station();
|
|
|
|
bool is_power_reseller(bool power_user_only = false);
|
|
|
|
long daytime();
|
|
|
|
bool expand_sys_vars(TString& str);
|
|
|
|
void quoted_string(TString& query, const char* val);
|
|
|
|
|
2018-01-09 09:31:50 +00:00
|
|
|
inline const char* get_iva_sirio() // Ritorna la partita IVA della Sirio
|
|
|
|
{ return "04879210963"; }
|
2017-04-28 15:19:48 +00:00
|
|
|
|
2018-07-06 16:30:37 +02:00
|
|
|
TString& to_tstring(long n);
|
|
|
|
TString& to_tstring(int n);
|
|
|
|
|
2019-06-11 11:07:47 +02:00
|
|
|
inline bool is_multi_table(const int file) { return file == LF_TAB || file == LF_TABGEN || file == LF_TABCOM || file == LF_TABMOD; }
|
2019-06-13 17:40:53 +02:00
|
|
|
|
2016-09-09 13:58:28 +00:00
|
|
|
#endif /* __UTILITY_H */
|