85 lines
2.4 KiB
C++
85 lines
2.4 KiB
C++
/*
|
|
* Copyright (C) 2013 Emeric Poupon
|
|
*
|
|
* This file is part of LMS.
|
|
*
|
|
* LMS is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* LMS is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with LMS. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "logger/Logger.hpp"
|
|
|
|
#include "UserInterfaceService.hpp"
|
|
#include "ui/LmsApplication.hpp"
|
|
|
|
namespace Service {
|
|
|
|
UserInterfaceService::UserInterfaceService( boost::filesystem::path runAppPath, const Config& config)
|
|
: _server(runAppPath.string())
|
|
{
|
|
std::vector<std::string> args;
|
|
|
|
args.push_back(runAppPath.string());
|
|
args.push_back("--docroot=" + config.docRootPath.string());
|
|
args.push_back("--approot=" + config.appRootPath.string());
|
|
{
|
|
std::ostringstream oss; oss << config.httpsPort;
|
|
args.push_back("--https-port=" + oss.str());
|
|
}
|
|
args.push_back("--https-address=" + config.httpsAddress.to_string());
|
|
args.push_back("--ssl-certificate=" + config.sslCertificatePath.string());
|
|
args.push_back("--ssl-private-key=" + config.sslPrivateKeyPath.string());
|
|
args.push_back("--ssl-tmp-dh=" + config.sslTempDhPath.string());
|
|
|
|
// Construct argc/argv
|
|
int argc = args.size();
|
|
const char* argv[args.size()];
|
|
for (int i = 0; i < argc; ++i)
|
|
argv[i] = args[i].c_str();
|
|
|
|
for(int i = 0; i < argc; ++i)
|
|
{
|
|
LMS_LOG(MOD_SERVICE, SEV_DEBUG) << "i = " << i << ", arg = '" << argv[i] << "'";
|
|
}
|
|
|
|
_server.setServerConfiguration (argc, const_cast<char**>(argv));
|
|
|
|
// bind entry point
|
|
_server.addEntryPoint(Wt::Application, boost::bind(UserInterface::LmsApplication::create, _1, config.dbPath));
|
|
|
|
}
|
|
|
|
void
|
|
UserInterfaceService::start(void)
|
|
{
|
|
_server.start();
|
|
LMS_LOG(MOD_SERVICE, SEV_DEBUG) << "UserInterfaceService::start -> Service started...";
|
|
}
|
|
|
|
void
|
|
UserInterfaceService::stop(void)
|
|
{
|
|
LMS_LOG(MOD_SERVICE, SEV_DEBUG) << "UserInterfaceService::stop -> stopping...";
|
|
_server.stop();
|
|
LMS_LOG(MOD_SERVICE, SEV_DEBUG) << "UserInterfaceService::stop -> stopped!";
|
|
}
|
|
|
|
void
|
|
UserInterfaceService::restart(void)
|
|
{
|
|
|
|
}
|
|
|
|
} // namespace Service
|
|
|