]> git.sesse.net Git - casparcg/blob - common/env.cpp
2.0.2: - Updated to use std::wstring more consistently.
[casparcg] / common / env.cpp
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\r
5 *\r
6 * CasparCG is free software: you can redistribute it and/or modify\r
7 * it under the terms of the GNU General Public License as published by\r
8 * the Free Software Foundation, either version 3 of the License, or\r
9 * (at your option) any later version.\r
10 *\r
11 * CasparCG is distributed in the hope that it will be useful,\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 * GNU General Public License for more details.\r
15 *\r
16 * You should have received a copy of the GNU General Public License\r
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #include "stdafx.h"\r
23 \r
24 #include "env.h"\r
25 \r
26 #include "../version.h"\r
27 \r
28 #include "exception\exceptions.h"\r
29 #include "utility/string.h"\r
30 \r
31 #include <boost/property_tree/ptree.hpp>\r
32 #include <boost/property_tree/xml_parser.hpp>\r
33 #include <boost/filesystem.hpp>\r
34 #include <boost/thread/once.hpp>\r
35 \r
36 #include <functional>\r
37 #include <iostream>\r
38 \r
39 namespace caspar { namespace env {\r
40 \r
41 using namespace boost::filesystem2;\r
42 \r
43 std::wstring media;\r
44 std::wstring log;\r
45 std::wstring ftemplate;\r
46 std::wstring data;\r
47 boost::property_tree::wptree pt;\r
48 \r
49 void check_is_configured()\r
50 {\r
51         if(pt.empty())\r
52                 BOOST_THROW_EXCEPTION(invalid_operation() << msg_info("Enviroment properties has not been configured"));\r
53 }\r
54 \r
55 void configure(const std::wstring& filename)\r
56 {\r
57         try\r
58         {\r
59                 auto initialPath = boost::filesystem::initial_path<boost::filesystem2::wpath>().file_string();\r
60         \r
61                 std::wifstream file(initialPath + L"\\" + filename);\r
62                 boost::property_tree::read_xml(file, pt, boost::property_tree::xml_parser::trim_whitespace | boost::property_tree::xml_parser::no_comments);\r
63 \r
64                 auto paths = pt.get_child(L"configuration.paths");\r
65                 media = widen(paths.get(L"media-path", initialPath + L"\\media\\"));\r
66                 log = widen(paths.get(L"log-path", initialPath + L"\\log\\"));\r
67                 ftemplate = complete(wpath(widen(paths.get(L"template-path", initialPath + L"\\template\\")))).string();                \r
68                 data = widen(paths.get(L"data-path", initialPath + L"\\data\\"));\r
69         }\r
70         catch(...)\r
71         {\r
72                 std::wcout << L" ### Invalid configuration file. ###";\r
73                 throw;\r
74         }\r
75 }\r
76         \r
77 const std::wstring& media_folder()\r
78 {\r
79         check_is_configured();\r
80         return media;\r
81 }\r
82 \r
83 const std::wstring& log_folder()\r
84 {\r
85         check_is_configured();\r
86         return log;\r
87 }\r
88 \r
89 const std::wstring& template_folder()\r
90 {\r
91         check_is_configured();\r
92         return ftemplate;\r
93 }\r
94 \r
95 const std::wstring& data_folder()\r
96 {\r
97         check_is_configured();\r
98         return data;\r
99 }\r
100 \r
101 const std::wstring& version()\r
102 {\r
103         static std::wstring ver = std::wstring(L"") + CASPAR_GEN + L"." + CASPAR_MAYOR + L"." + CASPAR_MINOR + L"." + CASPAR_REV + L" " + CASPAR_TAG;\r
104         return ver;\r
105 }\r
106 \r
107 const boost::property_tree::wptree& properties()\r
108 {\r
109         check_is_configured();\r
110         return pt;\r
111 }\r
112 \r
113 }}