mirror of
https://github.com/ONLYOFFICE/desktop-apps.git
synced 2026-04-07 14:09:22 +08:00
91 lines
3.3 KiB
C++
91 lines
3.3 KiB
C++
/*
|
|
* (c) Copyright Ascensio System SIA 2010-2019
|
|
*
|
|
* This program is a free software product. You can redistribute it and/or
|
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|
* version 3 as published by the Free Software Foundation. In accordance with
|
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
|
* of any third-party rights.
|
|
*
|
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
|
*
|
|
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
|
* street, Riga, Latvia, EU, LV-1050.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of the Program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU AGPL version 3.
|
|
*
|
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
|
* grant you any rights under trademark law for use of our trademarks.
|
|
*
|
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
|
* well as technical writing content are licensed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
*
|
|
*/
|
|
|
|
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <string>
|
|
#include <list>
|
|
#include "classes/translator.h"
|
|
|
|
using std::string;
|
|
using std::to_string;
|
|
using std::list;
|
|
|
|
#define _TR(str) Translator::tr(str)
|
|
|
|
#define FUNCTION_INFO string(__FUNCTION__) + " Line: " + to_string(__LINE__)
|
|
#define DEFAULT_ERROR_MESSAGE _TR("An error occurred:") + " " + FUNCTION_INFO
|
|
#define ADVANCED_ERROR_MESSAGE DEFAULT_ERROR_MESSAGE + \
|
|
" " + NS_Utils::GetLastErrorAsString()
|
|
|
|
namespace NS_Utils
|
|
{
|
|
void parseCmdArgs(int argc, char *argv[]);
|
|
bool cmdArgContains(const string ¶m);
|
|
string cmdArgValue(const string ¶m);
|
|
string GetLastErrorAsString();
|
|
int ShowMessage(string str, bool showError = false);
|
|
//string GetSysLanguage();
|
|
string GetAppLanguage();
|
|
}
|
|
|
|
namespace NS_File
|
|
{
|
|
bool GetFilesList(const string &path, list<string> *lst, string &error, bool ignore_locked = false, bool folders_only = false);
|
|
bool readFile(const string &filePath, list<string> &linesList);
|
|
bool writeToFile(const string &filePath, list<string> &linesList);
|
|
bool runProcess(const string &fileName, const string &args);
|
|
bool isProcessRunning(const string &fileName);
|
|
bool fileExists(const string &filePath);
|
|
bool dirExists(const string &dirName);
|
|
bool dirIsEmpty(const string &dirName);
|
|
bool makePath(const string &path);
|
|
bool replaceFile(const string &oldFilePath, const string &newFilePath);
|
|
bool replaceFolder(const string &from, const string &to, bool remove_existing = false);
|
|
bool removeFile(const string &filePath);
|
|
bool removeDirRecursively(const string &dir);
|
|
string parentPath(const string &path);
|
|
string tempPath();
|
|
string appPath();
|
|
//string getFileHash(const string &fileName);
|
|
//bool verifyEmbeddedSignature(const string &fileName);
|
|
}
|
|
|
|
namespace NS_Logger
|
|
{
|
|
void AllowWriteLog();
|
|
void WriteLog(const string &log, bool showMessage = false);
|
|
}
|
|
|
|
#endif // UTILS_H
|