2016-02-11 00:00:00 +00:00
|
|
|
/*
|
2020-05-22 13:18:41 +00:00
|
|
|
* Copyright (c) 2013-2020, The PurpleI2P Project
|
2016-02-11 00:00:00 +00:00
|
|
|
*
|
|
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
|
|
*
|
|
|
|
* See full license text in LICENSE file at top of project tree
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
|
2016-03-09 08:47:35 +00:00
|
|
|
#ifdef _WIN32
|
2016-02-22 14:53:26 +00:00
|
|
|
#include <shlobj.h>
|
2019-02-12 01:27:09 +00:00
|
|
|
#include <windows.h>
|
2016-02-22 14:53:26 +00:00
|
|
|
#endif
|
|
|
|
|
2016-02-11 00:00:00 +00:00
|
|
|
#include "Base.h"
|
|
|
|
#include "FS.h"
|
|
|
|
#include "Log.h"
|
2017-04-03 19:05:10 +00:00
|
|
|
#include "Garlic.h"
|
2016-02-11 00:00:00 +00:00
|
|
|
|
|
|
|
namespace i2p {
|
|
|
|
namespace fs {
|
2019-02-12 01:27:09 +00:00
|
|
|
std::string appName = "i2pd";
|
|
|
|
std::string dataDir = "";
|
2016-02-11 00:00:00 +00:00
|
|
|
#ifdef _WIN32
|
2019-02-12 01:27:09 +00:00
|
|
|
std::string dirSep = "\\";
|
2016-02-11 00:00:00 +00:00
|
|
|
#else
|
2019-02-12 01:27:09 +00:00
|
|
|
std::string dirSep = "/";
|
2016-02-11 00:00:00 +00:00
|
|
|
#endif
|
|
|
|
|
2019-02-12 01:27:09 +00:00
|
|
|
const std::string & GetAppName () {
|
|
|
|
return appName;
|
|
|
|
}
|
2016-02-11 00:00:00 +00:00
|
|
|
|
2019-02-12 01:27:09 +00:00
|
|
|
void SetAppName (const std::string& name) {
|
|
|
|
appName = name;
|
|
|
|
}
|
2016-02-11 00:00:00 +00:00
|
|
|
|
2019-02-12 01:27:09 +00:00
|
|
|
const std::string & GetDataDir () {
|
|
|
|
return dataDir;
|
|
|
|
}
|
2016-02-11 00:00:00 +00:00
|
|
|
|
2019-02-12 01:27:09 +00:00
|
|
|
void DetectDataDir(const std::string & cmdline_param, bool isService) {
|
|
|
|
if (cmdline_param != "") {
|
|
|
|
dataDir = cmdline_param;
|
|
|
|
return;
|
|
|
|
}
|
2016-02-11 00:00:00 +00:00
|
|
|
#if defined(WIN32) || defined(_WIN32)
|
2019-02-12 01:27:09 +00:00
|
|
|
char localAppData[MAX_PATH];
|
|
|
|
|
|
|
|
// check executable directory first
|
|
|
|
if(!GetModuleFileName(NULL, localAppData, MAX_PATH))
|
|
|
|
{
|
|
|
|
#if defined(WIN32_APP)
|
|
|
|
MessageBox(NULL, TEXT("Unable to get application path!"), TEXT("I2Pd: error"), MB_ICONERROR | MB_OK);
|
|
|
|
#else
|
|
|
|
fprintf(stderr, "Error: Unable to get application path!");
|
|
|
|
#endif
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto execPath = boost::filesystem::path(localAppData).parent_path();
|
|
|
|
|
|
|
|
// if config file exists in .exe's folder use it
|
|
|
|
if(boost::filesystem::exists(execPath/"i2pd.conf")) // TODO: magic string
|
|
|
|
dataDir = execPath.string ();
|
|
|
|
else // otherwise %appdata%
|
|
|
|
{
|
|
|
|
if(SHGetFolderPath(NULL, CSIDL_APPDATA, NULL, 0, localAppData) != S_OK)
|
|
|
|
{
|
|
|
|
#if defined(WIN32_APP)
|
|
|
|
MessageBox(NULL, TEXT("Unable to get AppData path!"), TEXT("I2Pd: error"), MB_ICONERROR | MB_OK);
|
|
|
|
#else
|
|
|
|
fprintf(stderr, "Error: Unable to get AppData path!");
|
|
|
|
#endif
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
dataDir = std::string(localAppData) + "\\" + appName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
2016-02-11 00:00:00 +00:00
|
|
|
#elif defined(MAC_OSX)
|
2019-02-12 01:27:09 +00:00
|
|
|
char *home = getenv("HOME");
|
|
|
|
dataDir = (home != NULL && strlen(home) > 0) ? home : "";
|
|
|
|
dataDir += "/Library/Application Support/" + appName;
|
|
|
|
return;
|
2016-02-11 00:00:00 +00:00
|
|
|
#else /* other unix */
|
2016-06-19 13:58:29 +00:00
|
|
|
#if defined(ANDROID)
|
2019-02-12 01:27:09 +00:00
|
|
|
const char * ext = getenv("EXTERNAL_STORAGE");
|
|
|
|
if (!ext) ext = "/sdcard";
|
|
|
|
if (boost::filesystem::exists(ext))
|
|
|
|
{
|
|
|
|
dataDir = std::string (ext) + "/" + appName;
|
|
|
|
return;
|
|
|
|
}
|
2016-10-19 16:54:13 +00:00
|
|
|
#endif
|
2019-02-12 01:27:09 +00:00
|
|
|
// otherwise use /data/files
|
|
|
|
char *home = getenv("HOME");
|
|
|
|
if (isService) {
|
|
|
|
dataDir = "/var/lib/" + appName;
|
|
|
|
} else if (home != NULL && strlen(home) > 0) {
|
|
|
|
dataDir = std::string(home) + "/." + appName;
|
|
|
|
} else {
|
|
|
|
dataDir = "/tmp/" + appName;
|
|
|
|
}
|
|
|
|
return;
|
2016-02-11 00:00:00 +00:00
|
|
|
#endif
|
2019-02-12 01:27:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Init() {
|
|
|
|
if (!boost::filesystem::exists(dataDir))
|
|
|
|
boost::filesystem::create_directory(dataDir);
|
|
|
|
|
|
|
|
std::string destinations = DataDirPath("destinations");
|
|
|
|
if (!boost::filesystem::exists(destinations))
|
|
|
|
boost::filesystem::create_directory(destinations);
|
|
|
|
|
|
|
|
std::string tags = DataDirPath("tags");
|
|
|
|
if (!boost::filesystem::exists(tags))
|
|
|
|
boost::filesystem::create_directory(tags);
|
|
|
|
else
|
|
|
|
i2p::garlic::CleanUpTagsFiles ();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ReadDir(const std::string & path, std::vector<std::string> & files) {
|
|
|
|
if (!boost::filesystem::exists(path))
|
|
|
|
return false;
|
|
|
|
boost::filesystem::directory_iterator it(path);
|
|
|
|
boost::filesystem::directory_iterator end;
|
|
|
|
|
|
|
|
for ( ; it != end; it++) {
|
|
|
|
if (!boost::filesystem::is_regular_file(it->status()))
|
|
|
|
continue;
|
|
|
|
files.push_back(it->path().string());
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exists(const std::string & path) {
|
|
|
|
return boost::filesystem::exists(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t GetLastUpdateTime (const std::string & path)
|
|
|
|
{
|
|
|
|
if (!boost::filesystem::exists(path))
|
|
|
|
return 0;
|
|
|
|
boost::system::error_code ec;
|
|
|
|
auto t = boost::filesystem::last_write_time (path, ec);
|
|
|
|
return ec ? 0 : t;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Remove(const std::string & path) {
|
|
|
|
if (!boost::filesystem::exists(path))
|
|
|
|
return false;
|
|
|
|
return boost::filesystem::remove(path);
|
|
|
|
}
|
2016-02-11 00:00:00 +00:00
|
|
|
|
2018-01-06 04:01:44 +00:00
|
|
|
bool CreateDirectory (const std::string& path)
|
2016-03-14 20:05:57 +00:00
|
|
|
{
|
2019-02-12 01:27:09 +00:00
|
|
|
if (boost::filesystem::exists(path) && boost::filesystem::is_directory (boost::filesystem::status (path)))
|
|
|
|
return true;
|
2016-03-14 20:05:57 +00:00
|
|
|
return boost::filesystem::create_directory(path);
|
2016-10-19 16:54:13 +00:00
|
|
|
}
|
2016-03-14 20:05:57 +00:00
|
|
|
|
2019-02-12 01:27:09 +00:00
|
|
|
void HashedStorage::SetPlace(const std::string &path) {
|
|
|
|
root = path + i2p::fs::dirSep + name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HashedStorage::Init(const char * chars, size_t count) {
|
|
|
|
if (!boost::filesystem::exists(root)) {
|
|
|
|
boost::filesystem::create_directories(root);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < count; i++) {
|
|
|
|
auto p = root + i2p::fs::dirSep + prefix1 + chars[i];
|
|
|
|
if (boost::filesystem::exists(p))
|
|
|
|
continue;
|
|
|
|
if (boost::filesystem::create_directory(p))
|
|
|
|
continue; /* ^ throws exception on failure */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string HashedStorage::Path(const std::string & ident) const {
|
|
|
|
std::string safe_ident = ident;
|
|
|
|
std::replace(safe_ident.begin(), safe_ident.end(), '/', '-');
|
|
|
|
std::replace(safe_ident.begin(), safe_ident.end(), '\\', '-');
|
|
|
|
|
|
|
|
std::stringstream t("");
|
|
|
|
t << this->root << i2p::fs::dirSep;
|
|
|
|
t << prefix1 << safe_ident[0] << i2p::fs::dirSep;
|
|
|
|
t << prefix2 << safe_ident << "." << suffix;
|
|
|
|
|
|
|
|
return t.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HashedStorage::Remove(const std::string & ident) {
|
|
|
|
std::string path = Path(ident);
|
|
|
|
if (!boost::filesystem::exists(path))
|
|
|
|
return;
|
|
|
|
boost::filesystem::remove(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void HashedStorage::Traverse(std::vector<std::string> & files) {
|
|
|
|
Iterate([&files] (const std::string & fname) {
|
|
|
|
files.push_back(fname);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void HashedStorage::Iterate(FilenameVisitor v)
|
|
|
|
{
|
|
|
|
boost::filesystem::path p(root);
|
|
|
|
boost::filesystem::recursive_directory_iterator it(p);
|
|
|
|
boost::filesystem::recursive_directory_iterator end;
|
|
|
|
|
|
|
|
for ( ; it != end; it++) {
|
|
|
|
if (!boost::filesystem::is_regular_file( it->status() ))
|
|
|
|
continue;
|
|
|
|
const std::string & t = it->path().string();
|
|
|
|
v(t);
|
|
|
|
}
|
|
|
|
}
|
2016-02-11 00:00:00 +00:00
|
|
|
} // fs
|
|
|
|
} // i2p
|