* fixed refreshing to send another ui refresh message after parsing * keepContent field for MessageBase so that views won't update * fixed searchmatching to only weigh uppercase letters next to lowercase ones * fixed file not jumping back to snippets when activating edge * clicking into empty space deselects active edge * clear file manager files on every fetch * added db transaction for file clearing * use zooming instead of changing font size
165 lines
4.1 KiB
C++
165 lines
4.1 KiB
C++
#include "Application.h"
|
|
|
|
#include "utility/logging/logging.h"
|
|
#include "utility/messaging/MessageQueue.h"
|
|
#include "utility/messaging/type/MessageActivateNodes.h"
|
|
#include "utility/messaging/type/MessageStatus.h"
|
|
#include "utility/scheduling/TaskScheduler.h"
|
|
|
|
#include "component/view/GraphViewStyle.h"
|
|
#include "component/view/MainView.h"
|
|
#include "component/view/ViewFactory.h"
|
|
#include "data/StorageCache.h"
|
|
#include "settings/ApplicationSettings.h"
|
|
#include "settings/ColorScheme.h"
|
|
|
|
std::shared_ptr<Application> Application::create(ViewFactory* viewFactory)
|
|
{
|
|
loadSettings();
|
|
|
|
std::shared_ptr<Application> ptr(new Application());
|
|
|
|
ptr->m_storageCache = std::make_shared<StorageCache>();
|
|
|
|
ptr->m_componentManager = ComponentManager::create(viewFactory, ptr->m_storageCache.get());
|
|
|
|
ptr->m_mainView = viewFactory->createMainView();
|
|
ptr->m_mainView->setTitle("Coati");
|
|
|
|
ptr->m_componentManager->setup(ptr->m_mainView.get());
|
|
ptr->m_mainView->loadLayout();
|
|
|
|
ptr->m_project = Project::create(ptr->m_storageCache.get());
|
|
|
|
std::string startupProjectFilePath = ApplicationSettings::getInstance()->getStartupProjectFilePath();
|
|
if (startupProjectFilePath.size())
|
|
{
|
|
MessageLoadProject(startupProjectFilePath).dispatch();
|
|
}
|
|
else
|
|
{
|
|
ptr->m_mainView->showStartScreen();
|
|
}
|
|
|
|
return ptr;
|
|
}
|
|
|
|
void Application::loadSettings()
|
|
{
|
|
ApplicationSettings::getInstance()->load("data/ApplicationSettings.xml");
|
|
ColorScheme::getInstance()->load(ApplicationSettings::getInstance()->getColorSchemePath());
|
|
|
|
GraphViewStyle::loadStyleSettings();
|
|
}
|
|
|
|
Application::Application()
|
|
{
|
|
TaskScheduler::getInstance()->startSchedulerLoopThreaded();
|
|
MessageQueue::getInstance()->setSendMessagesAsTasks(true);
|
|
MessageQueue::getInstance()->startMessageLoopThreaded();
|
|
}
|
|
|
|
Application::~Application()
|
|
{
|
|
MessageQueue::getInstance()->stopMessageLoop();
|
|
TaskScheduler::getInstance()->stopSchedulerLoop();
|
|
m_mainView->saveLayout();
|
|
}
|
|
|
|
void Application::loadProject(const FilePath& projectSettingsFilePath)
|
|
{
|
|
MessageStatus("Loading Project: " + projectSettingsFilePath.str()).dispatch();
|
|
|
|
updateRecentProjects(projectSettingsFilePath);
|
|
|
|
m_mainView->setTitle(projectSettingsFilePath.fileName());
|
|
|
|
m_storageCache->clear();
|
|
m_componentManager->refreshViews();
|
|
|
|
m_project = Project::create(m_storageCache.get());
|
|
m_project->loadProjectSettings(projectSettingsFilePath);
|
|
m_project->loadStorage();
|
|
}
|
|
|
|
void Application::refreshProject()
|
|
{
|
|
MessageStatus("Refreshing Project").dispatch();
|
|
|
|
m_storageCache->clear();
|
|
m_componentManager->refreshViews();
|
|
|
|
m_project->reloadProjectSettings();
|
|
m_project->parseCode();
|
|
}
|
|
|
|
void Application::saveProject(const FilePath& projectSettingsFilePath)
|
|
{
|
|
if (!m_project->saveProjectSettings(projectSettingsFilePath))
|
|
{
|
|
LOG_ERROR("No Project Settings File defined");
|
|
}
|
|
}
|
|
|
|
void Application::handleMessage(MessageFinishedParsing* message)
|
|
{
|
|
m_project->logStats();
|
|
|
|
if (message->errorCount == 0)
|
|
{
|
|
MessageRefresh().refreshUiOnly().dispatch();
|
|
}
|
|
}
|
|
|
|
void Application::handleMessage(MessageLoadProject* message)
|
|
{
|
|
loadProject(message->projectSettingsFilePath);
|
|
}
|
|
|
|
void Application::handleMessage(MessageRefresh* message)
|
|
{
|
|
loadSettings();
|
|
|
|
if (message->uiOnly)
|
|
{
|
|
m_componentManager->refreshViews();
|
|
}
|
|
else if (message->all)
|
|
{
|
|
m_project->clearStorage();
|
|
refreshProject();
|
|
}
|
|
else
|
|
{
|
|
refreshProject();
|
|
}
|
|
}
|
|
|
|
void Application::handleMessage(MessageSaveProject* message)
|
|
{
|
|
saveProject(message->projectSettingsFilePath);
|
|
}
|
|
|
|
void Application::updateRecentProjects(const FilePath& projectSettingsFilePath)
|
|
{
|
|
ApplicationSettings* appSettings = ApplicationSettings::getInstance().get();
|
|
std::vector<FilePath> recentProjects = appSettings->getRecentProjects();
|
|
if (recentProjects.size())
|
|
{
|
|
std::vector<FilePath>::iterator it = std::find(recentProjects.begin(), recentProjects.end(), projectSettingsFilePath);
|
|
if (it != recentProjects.end())
|
|
{
|
|
recentProjects.erase(it);
|
|
}
|
|
}
|
|
|
|
recentProjects.insert(recentProjects.begin(), projectSettingsFilePath);
|
|
if (recentProjects.size() > 7)
|
|
{
|
|
recentProjects.pop_back();
|
|
}
|
|
|
|
appSettings->setRecentProjects(recentProjects);
|
|
appSettings->save("data/ApplicationSettings.xml");
|
|
}
|