/src/service/main/Cynara.cpp
https://gitlab.com/github-cloud-corporation/cynara · C++ · 99 lines · 58 code · 18 blank · 23 comment · 3 complexity · 1e356e99a7b12d363728eeff6ad44d2c MD5 · raw file
- /*
- * Copyright (c) 2014-2015 Samsung Electronics Co., Ltd All Rights Reserved
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * @file src/service/main/Cynara.cpp
- * @author Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
- * @author Aleksander Zdyb <a.zdyb@samsung.com>
- * @author Pawel Wieczorek <p.wieczorek2@samsung.com>
- * @version 1.0
- * @brief This file implements main class of cynara service
- */
- #include <memory>
- #include <stddef.h>
- #include <config/PathConfig.h>
- #include <log/log.h>
- #include <exceptions/InitException.h>
- #include <agent/AgentManager.h>
- #include <logic/Logic.h>
- #include <plugin/PluginManager.h>
- #include <sockets/SocketManager.h>
- #include <storage/InMemoryStorageBackend.h>
- #include <storage/Storage.h>
- #include <storage/StorageBackend.h>
- #include "Cynara.h"
- namespace Cynara {
- Cynara::Cynara()
- : m_logic(nullptr), m_socketManager(nullptr), m_storage(nullptr), m_storageBackend(nullptr),
- m_lockFile(PathConfig::StoragePath::lockFile), m_databaseLock(m_lockFile) {
- }
- Cynara::~Cynara() {
- finalize();
- }
- void Cynara::init(void) {
- m_agentManager = std::make_shared<AgentManager>();
- m_logic = std::make_shared<Logic>();
- m_pluginManager = std::make_shared<PluginManager>(PathConfig::PluginPath::serviceDir);
- m_socketManager = std::make_shared<SocketManager>();
- m_storageBackend = std::make_shared<InMemoryStorageBackend>(PathConfig::StoragePath::dbDir);
- m_storage = std::make_shared<Storage>(*m_storageBackend);
- m_logic->bindAgentManager(m_agentManager);
- m_logic->bindPluginManager(m_pluginManager);
- m_logic->bindStorage(m_storage);
- m_logic->bindSocketManager(m_socketManager);
- m_socketManager->bindLogic(m_logic);
- m_databaseLock.lock(); // Wait until database lock can be acquired
- m_logic->loadDb();
- m_pluginManager->loadPlugins();
- }
- void Cynara::run(void) {
- if (!m_socketManager) {
- throw InitException();
- }
- m_socketManager->run();
- }
- void Cynara::finalize(void) {
- if (m_logic) {
- m_logic->unbindAll();
- }
- if (m_socketManager) {
- m_socketManager->unbindAll();
- }
- m_agentManager.reset();
- m_logic.reset();
- m_pluginManager.reset();
- m_socketManager.reset();
- m_storageBackend.reset();
- m_storage.reset();
- }
- } // namespace Cynara