Files
Sourcetrail/src/lib/settings/ApplicationSettings.cpp
T

730 lines
19 KiB
C++

#include "ApplicationSettings.h"
#include "AppPath.h"
#include "Logger.h"
#include "ResourcePaths.h"
#include "SettingsMigrationLambda.h"
#include "SettingsMigrationMoveKey.h"
#include "SettingsMigrator.h"
#include "Status.h"
#include "TimeStamp.h"
#include "UserPaths.h"
#include "Version.h"
#include "utility.h"
#include "utilityFile.h"
const size_t ApplicationSettings::VERSION = 8;
std::shared_ptr<ApplicationSettings> ApplicationSettings::s_instance;
std::shared_ptr<ApplicationSettings> ApplicationSettings::getInstance()
{
if (!s_instance)
{
s_instance = std::shared_ptr<ApplicationSettings>(new ApplicationSettings());
}
return s_instance;
}
bool ApplicationSettings::load(const FilePath& filePath, bool readOnly)
{
bool loaded = Settings::load(filePath, readOnly);
if (!loaded)
{
return false;
}
SettingsMigrator migrator;
migrator.addMigration(
1,
std::make_shared<SettingsMigrationMoveKey>(
"source/header_search_paths/header_search_path",
"indexing/cxx/header_search_paths/header_search_path"));
migrator.addMigration(
1,
std::make_shared<SettingsMigrationMoveKey>(
"source/framework_search_paths/framework_search_path",
"indexing/cxx/framework_search_paths/framework_search_path"));
migrator.addMigration(
1,
std::make_shared<SettingsMigrationMoveKey>(
"application/indexer_thread_count", "indexing/indexer_thread_count"));
migrator.addMigration(
2,
std::make_shared<SettingsMigrationMoveKey>(
"network/coati_port", "network/sourcetrail_port"));
migrator.addMigration(
4,
std::make_shared<SettingsMigrationLambda>(
[](const SettingsMigration* migration, Settings* settings) {
std::wstring colorSchemePathString = migration->getValueFromSettings<std::wstring>(
settings, "application/color_scheme", L"");
if (!colorSchemePathString.empty())
{
FilePath colorSchemePath(colorSchemePathString);
migration->setValueInSettings(
settings,
"application/color_scheme",
colorSchemePath.withoutExtension().fileName());
}
}));
migrator.addMigration(
7,
std::make_shared<SettingsMigrationLambda>([](const SettingsMigration* migration,
Settings* settings) {
std::vector<std::string> recentProjects;
recentProjects.push_back("./projects/tictactoe_py/tictactoe_py.srctrlprj");
utility::append(
recentProjects,
migration->getValuesFromSettings(
settings, "user/recent_projects/recent_project", std::vector<std::string>()));
for (size_t i = 0; i < recentProjects.size(); i++)
{
if (recentProjects[i] == "./projects/tictactoe/tictactoe.srctrlprj")
{
recentProjects[i] = "./projects/tictactoe_cpp/tictactoe_cpp.srctrlprj";
}
}
migration->setValuesInSettings(
settings, "user/recent_projects/recent_project", recentProjects);
}));
migrator.addMigration(
8,
std::make_shared<SettingsMigrationLambda>(
[](const SettingsMigration* migration, Settings* settings) {
std::vector<FilePath> cxxHeaderSearchPaths = migration->getValuesFromSettings(
settings,
"indexing/cxx/header_search_paths/header_search_path",
std::vector<FilePath>());
std::vector<FilePath> newCxxHeaderSearchPaths;
for (const FilePath& path: cxxHeaderSearchPaths)
{
if (path.getCanonical().getConcatenated(L"/stdarg.h").exists() &&
path.str().find("data/cxx/include") != std::string::npos)
{
continue;
}
newCxxHeaderSearchPaths.push_back(path);
}
migration->setValuesInSettings(
settings,
"indexing/cxx/header_search_paths/header_search_path",
newCxxHeaderSearchPaths);
if (newCxxHeaderSearchPaths.size() == 0)
{
migration->setValueInSettings(
settings, "indexing/cxx/has_prefilled_header_search_paths", false);
}
}));
bool migrated = migrator.migrate(this, ApplicationSettings::VERSION);
if (migrated)
{
save();
}
return true;
}
bool ApplicationSettings::operator==(const ApplicationSettings& other) const
{
return utility::isPermutation<FilePath>(getHeaderSearchPaths(), other.getHeaderSearchPaths()) &&
utility::isPermutation<FilePath>(getFrameworkSearchPaths(), other.getFrameworkSearchPaths());
}
size_t ApplicationSettings::getMaxRecentProjectsCount() const
{
return 7;
}
std::string ApplicationSettings::getFontName() const
{
return getValue<std::string>("application/font_name", "Source Code Pro");
}
void ApplicationSettings::setFontName(const std::string& fontName)
{
setValue<std::string>("application/font_name", fontName);
}
int ApplicationSettings::getFontSize() const
{
return getValue<int>("application/font_size", 14);
}
void ApplicationSettings::setFontSize(int fontSize)
{
setValue<int>("application/font_size", fontSize);
}
std::string ApplicationSettings::getTextEncoding() const
{
return getValue<std::string>("application/text_encoding", "UTF-8");
}
void ApplicationSettings::setTextEncoding(const std::string& textEncoding)
{
setValue<std::string>("application/text_encoding", textEncoding);
}
bool ApplicationSettings::getUseAnimations() const
{
return getValue<bool>("application/use_animations", true);
}
void ApplicationSettings::setUseAnimations(bool useAnimations)
{
setValue<bool>("application/use_animations", useAnimations);
}
bool ApplicationSettings::getShowBuiltinTypesInGraph() const
{
return getValue<bool>("application/builtin_types_in_graph", false);
}
void ApplicationSettings::setShowBuiltinTypesInGraph(bool showBuiltinTypes)
{
setValue<bool>("application/builtin_types_in_graph", showBuiltinTypes);
}
bool ApplicationSettings::getShowDirectoryInCodeFileTitle() const
{
return getValue<bool>("application/directory_in_code_title", false);
}
void ApplicationSettings::setShowDirectoryInCodeFileTitle(bool showDirectory)
{
setValue<bool>("application/directory_in_code_title", showDirectory);
}
std::wstring ApplicationSettings::getColorSchemeName() const
{
return getValue<std::wstring>("application/color_scheme", L"bright");
}
FilePath ApplicationSettings::getColorSchemePath() const
{
FilePath defaultPath(ResourcePaths::getColorSchemesPath().concatenate(L"bright.xml"));
FilePath path(ResourcePaths::getColorSchemesPath().concatenate(getColorSchemeName() + L".xml"));
if (path != defaultPath && !path.exists())
{
return defaultPath;
}
return path;
}
void ApplicationSettings::setColorSchemeName(const std::wstring& colorSchemeName)
{
setValue("application/color_scheme", colorSchemeName);
}
int ApplicationSettings::getFontSizeMax() const
{
return getValue<int>("application/font_size_max", 24);
}
void ApplicationSettings::setFontSizeMax(const int fontSizeMax)
{
setValue<int>("application/font_size_max", fontSizeMax);
}
int ApplicationSettings::getFontSizeMin() const
{
return getValue<int>("application/font_size_min", 4);
}
void ApplicationSettings::setFontSizeMin(const int fontSizeMin)
{
setValue<int>("application/font_size_min", fontSizeMin);
}
int ApplicationSettings::getFontSizeStd() const
{
return getValue<int>("application/font_size_std", 12);
}
void ApplicationSettings::setFontSizeStd(const int fontSizeStd)
{
setValue<int>("application/font_size_std", fontSizeStd);
}
int ApplicationSettings::getWindowBaseWidth() const
{
return getValue<int>("application/window_base_width", 500);
}
int ApplicationSettings::getWindowBaseHeight() const
{
return getValue<int>("application/window_base_height", 500);
}
float ApplicationSettings::getScrollSpeed() const
{
return getValue<float>("application/scroll_speed", 1.0f);
}
void ApplicationSettings::setScrollSpeed(float scrollSpeed)
{
setValue<float>("application/scroll_speed", scrollSpeed);
}
bool ApplicationSettings::getGraphControlsVisible() const
{
return getValue<bool>("application/graph_controls_visible", true);
}
void ApplicationSettings::setGraphControlsVisible(bool visible)
{
setValue<bool>("application/graph_controls_visible", visible);
}
GroupType ApplicationSettings::getGraphGrouping() const
{
return stringToGroupType(
getValue<std::wstring>("application/graph_grouping", groupTypeToString(GroupType::NONE)));
}
void ApplicationSettings::setGraphGrouping(GroupType type)
{
setValue<std::wstring>("application/graph_grouping", groupTypeToString(type));
}
int ApplicationSettings::getScreenAutoScaling() const
{
return getValue<int>("screen/auto_scaling", 1);
}
void ApplicationSettings::setScreenAutoScaling(int autoScaling)
{
setValue<int>("screen/auto_scaling", autoScaling);
}
float ApplicationSettings::getScreenScaleFactor() const
{
return getValue<float>("screen/scale_factor", -1.0);
}
void ApplicationSettings::setScreenScaleFactor(float scaleFactor)
{
setValue<float>("screen/scale_factor", scaleFactor);
}
bool ApplicationSettings::getLoggingEnabled() const
{
return getValue<bool>("application/logging_enabled", true);
}
void ApplicationSettings::setLoggingEnabled(bool value)
{
setValue<bool>("application/logging_enabled", value);
}
bool ApplicationSettings::getVerboseIndexerLoggingEnabled() const
{
return getValue<bool>("application/verbose_indexer_logging_enabled", false);
}
void ApplicationSettings::setVerboseIndexerLoggingEnabled(bool value)
{
setValue<bool>("application/verbose_indexer_logging_enabled", value);
}
FilePath ApplicationSettings::getLogDirectoryPath() const
{
return FilePath(getValue<std::wstring>(
"application/log_directory_path", UserPaths::getLogPath().getAbsolute().wstr()));
}
void ApplicationSettings::setLogDirectoryPath(const FilePath& path)
{
setValue<std::wstring>("application/log_directory_path", path.wstr());
}
void ApplicationSettings::setLogFilter(int mask)
{
setValue<int>("application/log_filter", mask);
}
void ApplicationSettings::setStatusFilter(int mask)
{
setValue<int>("application/status_filter", mask);
}
int ApplicationSettings::getStatusFilter() const
{
return getValue<int>(
"application/status_filter", StatusType::STATUS_INFO | StatusType::STATUS_ERROR);
}
int ApplicationSettings::getLogFilter() const
{
return getValue<int>("application/log_filter", Logger::LOG_WARNINGS | Logger::LOG_ERRORS);
}
int ApplicationSettings::getIndexerThreadCount() const
{
return getValue<int>("indexing/indexer_thread_count", 0);
}
void ApplicationSettings::setIndexerThreadCount(const int count)
{
setValue<int>("indexing/indexer_thread_count", count);
}
bool ApplicationSettings::getMultiProcessIndexingEnabled() const
{
return getValue<bool>("indexing/multi_process_indexing", true);
}
void ApplicationSettings::setMultiProcessIndexingEnabled(bool enabled)
{
setValue<bool>("indexing/multi_process_indexing", enabled);
}
FilePath ApplicationSettings::getJavaPath() const
{
return FilePath(getValue<std::wstring>("indexing/java/java_path", L""));
}
void ApplicationSettings::setJavaPath(const FilePath& path)
{
setValue<std::wstring>("indexing/java/java_path", path.wstr());
}
bool ApplicationSettings::getHasPrefilledJavaPath() const
{
return getValue<bool>("indexing/java/has_prefilled_java_path", false);
}
void ApplicationSettings::setHasPrefilledJavaPath(bool v)
{
setValue<bool>("indexing/java/has_prefilled_java_path", v);
}
std::vector<FilePath> ApplicationSettings::getJreSystemLibraryPaths() const
{
return getPathValues("indexing/java/jre_system_library_paths/jre_system_library_path");
}
std::vector<FilePath> ApplicationSettings::getJreSystemLibraryPathsExpanded() const
{
return utility::getExpandedPaths(getJreSystemLibraryPaths());
}
bool ApplicationSettings::setJreSystemLibraryPaths(const std::vector<FilePath>& jreSystemLibraryPaths)
{
return setPathValues(
"indexing/java/jre_system_library_paths/jre_system_library_path", jreSystemLibraryPaths);
}
bool ApplicationSettings::getHasPrefilledJreSystemLibraryPaths() const
{
return getValue<bool>("indexing/java/has_prefilled_jre_system_library_paths", false);
}
void ApplicationSettings::setHasPrefilledJreSystemLibraryPaths(bool v)
{
setValue<bool>("indexing/java/has_prefilled_jre_system_library_paths", v);
}
FilePath ApplicationSettings::getMavenPath() const
{
return FilePath(getValue<std::wstring>("indexing/java/maven_path", L""));
}
void ApplicationSettings::setMavenPath(const FilePath& path)
{
setValue<std::wstring>("indexing/java/maven_path", path.wstr());
}
bool ApplicationSettings::getHasPrefilledMavenPath() const
{
return getValue<bool>("indexing/java/has_prefilled_maven_path", false);
}
void ApplicationSettings::setHasPrefilledMavenPath(bool v)
{
setValue<bool>("indexing/java/has_prefilled_maven_path", v);
}
bool ApplicationSettings::getPythonPostProcessingEnabled() const
{
return getValue<bool>("indexing/python/post_processing", true);
}
void ApplicationSettings::setPythonPostProcessingEnabled(bool enabled)
{
setValue<bool>("indexing/python/post_processing", enabled);
}
std::vector<FilePath> ApplicationSettings::getHeaderSearchPaths() const
{
return getPathValues("indexing/cxx/header_search_paths/header_search_path");
}
std::vector<FilePath> ApplicationSettings::getHeaderSearchPathsExpanded() const
{
return utility::getExpandedPaths(getHeaderSearchPaths());
}
bool ApplicationSettings::setHeaderSearchPaths(const std::vector<FilePath>& headerSearchPaths)
{
return setPathValues("indexing/cxx/header_search_paths/header_search_path", headerSearchPaths);
}
bool ApplicationSettings::getHasPrefilledHeaderSearchPaths() const
{
return getValue<bool>("indexing/cxx/has_prefilled_header_search_paths", false);
}
void ApplicationSettings::setHasPrefilledHeaderSearchPaths(bool v)
{
setValue<bool>("indexing/cxx/has_prefilled_header_search_paths", v);
}
std::vector<FilePath> ApplicationSettings::getFrameworkSearchPaths() const
{
return getPathValues("indexing/cxx/framework_search_paths/framework_search_path");
}
std::vector<FilePath> ApplicationSettings::getFrameworkSearchPathsExpanded() const
{
return utility::getExpandedPaths(getFrameworkSearchPaths());
}
bool ApplicationSettings::setFrameworkSearchPaths(const std::vector<FilePath>& frameworkSearchPaths)
{
return setPathValues(
"indexing/cxx/framework_search_paths/framework_search_path", frameworkSearchPaths);
}
bool ApplicationSettings::getHasPrefilledFrameworkSearchPaths() const
{
return getValue<bool>("indexing/cxx/has_prefilled_framework_search_paths", false);
}
void ApplicationSettings::setHasPrefilledFrameworkSearchPaths(bool v)
{
setValue<bool>("indexing/cxx/has_prefilled_framework_search_paths", v);
}
int ApplicationSettings::getCodeTabWidth() const
{
return getValue<int>("code/tab_width", 4);
}
void ApplicationSettings::setCodeTabWidth(int codeTabWidth)
{
setValue<int>("code/tab_width", codeTabWidth);
}
int ApplicationSettings::getCodeSnippetSnapRange() const
{
return getValue<int>("code/snippet/snap_range", 4);
}
void ApplicationSettings::setCodeSnippetSnapRange(int range)
{
setValue<int>("code/snippet/snap_range", range);
}
int ApplicationSettings::getCodeSnippetExpandRange() const
{
return getValue<int>("code/snippet/expand_range", 3);
}
void ApplicationSettings::setCodeSnippetExpandRange(int range)
{
setValue<int>("code/snippet/expand_range", range);
}
bool ApplicationSettings::getCodeViewModeSingle() const
{
return getValue<bool>("code/view_mode_single", false);
}
void ApplicationSettings::setCodeViewModeSingle(bool enabled)
{
setValue<bool>("code/view_mode_single", enabled);
}
std::vector<FilePath> ApplicationSettings::getRecentProjects() const
{
std::vector<FilePath> recentProjects;
std::vector<FilePath> loadedRecentProjects = getPathValues(
"user/recent_projects/recent_project");
for (const FilePath& project: loadedRecentProjects)
{
if (project.isAbsolute())
{
recentProjects.push_back(project);
}
else
{
recentProjects.push_back(UserPaths::getUserDataPath().concatenate(project));
}
}
return recentProjects;
}
bool ApplicationSettings::setRecentProjects(const std::vector<FilePath>& recentProjects)
{
return setPathValues("user/recent_projects/recent_project", recentProjects);
}
std::string ApplicationSettings::getUserToken() const
{
return getValue<std::string>("user/token", "");
}
void ApplicationSettings::setUserToken(std::string token)
{
setValue<std::string>("user/token", token);
}
bool ApplicationSettings::getAutomaticUpdateCheck() const
{
return getValue<bool>("user/update_check/automatic", true);
}
void ApplicationSettings::setAutomaticUpdateCheck(bool automaticUpdates)
{
setValue<bool>("user/update_check/automatic", automaticUpdates);
}
TimeStamp ApplicationSettings::getLastUpdateCheck() const
{
return TimeStamp(getValue<std::string>("user/update_check/time_stamp", ""));
}
void ApplicationSettings::setLastUpdateCheck(const TimeStamp& time)
{
setValue<std::string>("user/update_check/time_stamp", time.toString());
}
Version ApplicationSettings::getSkipUpdateForVersion() const
{
return Version::fromString(getValue<std::string>("user/update_check/skip_version", "2017.1.0"));
}
void ApplicationSettings::setSkipUpdateForVersion(const Version& version)
{
if (version.isValid())
{
setValue<std::string>("user/update_check/skip_version", version.toDisplayString());
}
}
std::string ApplicationSettings::getUpdateDownloadUrl() const
{
return getValue<std::string>("user/update_check/update_url", "");
}
void ApplicationSettings::setUpdateDownloadUrl(const std::string& url)
{
setValue<std::string>("user/update_check/update_url", url);
}
Version ApplicationSettings::getUpdateVersion() const
{
return Version::fromString(
getValue<std::string>("user/update_check/update_version", "2017.1.0"));
}
std::string ApplicationSettings::getUpdateNews() const
{
return getValue<std::string>("user/update_check/news", "");
}
void ApplicationSettings::setUpdateNews(const std::string& news)
{
setValue<std::string>("user/update_check/news", news);
}
void ApplicationSettings::setUpdateVersion(const Version& version)
{
if (version.isValid())
{
setValue<std::string>("user/update_check/update_version", version.toDisplayString());
}
}
bool ApplicationSettings::getSeenErrorHelpMessage() const
{
return getValue<bool>("user/seen_error_help_message", false);
}
void ApplicationSettings::setSeenErrorHelpMessage(bool seen)
{
setValue<bool>("user/seen_error_help_message", seen);
}
FilePath ApplicationSettings::getLastFilepickerLocation() const
{
return FilePath(getValue<std::wstring>("user/last_filepicker_location", L""));
}
void ApplicationSettings::setLastFilepickerLocation(const FilePath& path)
{
setValue<std::wstring>("user/last_filepicker_location", path.wstr());
}
float ApplicationSettings::getGraphZoomLevel() const
{
return getValue<float>("user/graph_zoom_level", 1.0f);
}
void ApplicationSettings::setGraphZoomLevel(float zoomLevel)
{
setValue<float>("user/graph_zoom_level", zoomLevel);
}
int ApplicationSettings::getPluginPort() const
{
return getValue<int>("network/plugin_port", 6666);
}
void ApplicationSettings::setPluginPort(const int pluginPort)
{
setValue<int>("network/plugin_port", pluginPort);
}
int ApplicationSettings::getSourcetrailPort() const
{
return getValue<int>("network/sourcetrail_port", 6667);
}
void ApplicationSettings::setSourcetrailPort(const int sourcetrailPort)
{
setValue<int>("network/sourcetrail_port", sourcetrailPort);
}
int ApplicationSettings::getControlsMouseBackButton() const
{
return getValue<int>("controls/mouse_back_button", 0x8);
}
int ApplicationSettings::getControlsMouseForwardButton() const
{
return getValue<int>("controls/mouse_forward_button", 0x10);
}
bool ApplicationSettings::getControlsGraphZoomOnMouseWheel() const
{
return getValue<bool>("controls/graph_zoom_on_mouse_wheel", false);
}
void ApplicationSettings::setControlsGraphZoomOnMouseWheel(bool zoomingDefault)
{
setValue<bool>("controls/graph_zoom_on_mouse_wheel", zoomingDefault);
}