/* * 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 . */ #include #include #include #include "utils/Config.hpp" #include "utils/Logger.hpp" #include "av/AvInfo.hpp" #include "av/AvTranscoder.hpp" #include "image/Image.hpp" #include "feature/FeatureExtractor.hpp" #include "scanner/MediaScanner.hpp" //#include "database/updater/DatabaseFeatureExtractor.hpp" //#include "database/updater/DatabaseHighLevelCluster.hpp" #include "ui/LmsApplication.hpp" std::vector generateWtConfig(std::string execPath) { std::vector args; boost::filesystem::path wtConfigPath = Config::instance().getPath("working-dir") / "wt_config.xml"; boost::filesystem::path wtLogFilePath = Config::instance().getPath("working-dir") / "lms.log"; args.push_back(execPath); args.push_back("--config=" + wtConfigPath.string()); args.push_back("--docroot=" + Config::instance().getString("docroot")); args.push_back("--approot=" + Config::instance().getString("approot")); if (Config::instance().getBool("tls-enable", false)) { args.push_back("--https-port=" + std::to_string( Config::instance().getULong("listen-port", 5081))); args.push_back("--https-address=" + Config::instance().getString("listen-addr", "0.0.0.0")); args.push_back("--ssl-certificate=" + Config::instance().getString("tls-cert")); args.push_back("--ssl-private-key=" + Config::instance().getString("tls-key")); args.push_back("--ssl-tmp-dh=" + Config::instance().getString("tls-dh")); } else { args.push_back("--http-port=" + std::to_string( Config::instance().getULong("listen-port", 5081))); args.push_back("--http-address=" + Config::instance().getString("listen-addr", "0.0.0.0")); } // Generate the wt_config.xml file boost::property_tree::ptree pt; pt.put("server.application-settings..location", "*"); pt.put("server.application-settings.log-file", wtLogFilePath.string()); pt.put("server.application-settings.behind-reverse-proxy", Config::instance().getBool("behind-reverse-proxy", false)); pt.put("server.application-settings.progressive-bootstrap", true); std::ofstream oss(wtConfigPath.string().c_str(), std::ios::out); boost::property_tree::xml_parser::write_xml(oss, pt); return args; } int main(int argc, char* argv[]) { boost::filesystem::path configFilePath = "/etc/lms.conf"; int res = EXIT_FAILURE; assert(argc > 0); assert(argv[0] != NULL); if (argc >= 2) configFilePath = std::string(argv[1], 0, 256); try { // Make pstream work with ffmpeg close(STDIN_FILENO); Config::instance().setFile(configFilePath); // Make sure the working directory exists // TODO check with boost::system::error_code ec; boost::filesystem::create_directories(Config::instance().getPath("working-dir")); boost::filesystem::create_directories(Config::instance().getPath("working-dir") / "features"); // Construct WT configuration and get the argc/argv back std::vector wtServerArgs = generateWtConfig(argv[0]); const char* wtArgv[wtServerArgs.size()]; for (std::size_t i = 0; i < wtServerArgs.size(); ++i) { std::cout << "ARG = " << wtServerArgs[i] << std::endl; wtArgv[i] = wtServerArgs[i].c_str(); } Wt::WServer server(argv[0]); server.setServerConfiguration (wtServerArgs.size(), const_cast(wtArgv)); Wt::WServer::instance()->logger().configure("*"); // log everything, TODO configure this // lib init Image::init(argv[0]); Av::AvInit(); Av::Transcoder::init(); Database::Handler::configureAuth(); Feature::Extractor::init(); // Initializing a connection pool to the database that will be shared along services std::unique_ptr connectionPool( Database::Handler::createConnectionPool(Config::instance().getPath("working-dir") / "lms.db")); Scanner::MediaScanner scanner(*connectionPool); // bind entry point server.addEntryPoint(Wt::Application, boost::bind(UserInterface::LmsApplication::create, _1, boost::ref(*connectionPool))); // Start LMS_LOG(MAIN, INFO) << "Starting Media scanner..."; scanner.start(); LMS_LOG(MAIN, INFO) << "Starting server..."; server.start(); // Wait LMS_LOG(MAIN, INFO) << "Now running..."; Wt::WServer::waitForShutdown(argv[0]); // Stop LMS_LOG(MAIN, INFO) << "Stopping server..."; server.stop(); LMS_LOG(MAIN, INFO) << "Stopping database updater..."; scanner.stop(); res = EXIT_SUCCESS; } catch( libconfig::FileIOException& e) { std::cerr << "Cannot open config file '" << configFilePath << "'" << std::endl; } catch( libconfig::ParseException& e) { std::cerr << "Caught libconfig::ParseException! error='" << e.getError() << "', file = '" << e.getFile() << "', line = " << e.getLine() << std::endl; } catch(Wt::WServer::Exception& e) { std::cerr << "Caught a WServer::Exception: " << e.what() << std::endl; } catch(std::exception& e) { std::cerr << "Caught std::exception: " << e.what() << std::endl; } return res; }