]> git.sesse.net Git - casparcg/blob - common/env.cpp
Merge branch 'master' of https://github.com/CasparCG/Server into 4k-support
[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 "log/log.h"\r
30 #include "utility/string.h"\r
31 \r
32 #include <boost/property_tree/ptree.hpp>\r
33 #include <boost/property_tree/xml_parser.hpp>\r
34 #include <boost/filesystem.hpp>\r
35 #include <boost/thread/once.hpp>\r
36 \r
37 #include <functional>\r
38 #include <iostream>\r
39 \r
40 namespace caspar { namespace env {\r
41 \r
42 using namespace boost::filesystem2;\r
43 \r
44 std::wstring media;\r
45 std::wstring log;\r
46 std::wstring ftemplate;\r
47 std::wstring data;\r
48 std::wstring thumbnails;\r
49 boost::property_tree::wptree pt;\r
50 \r
51 void check_is_configured()\r
52 {\r
53         if(pt.empty())\r
54                 BOOST_THROW_EXCEPTION(invalid_operation() << msg_info("Enviroment properties has not been configured"));\r
55 }\r
56 \r
57 void configure(const std::wstring& filename)\r
58 {\r
59         try\r
60         {\r
61                 auto initialPath = boost::filesystem::initial_path<boost::filesystem2::wpath>().file_string();\r
62         \r
63                 std::wifstream file(initialPath + L"\\" + filename);\r
64                 boost::property_tree::read_xml(file, pt, boost::property_tree::xml_parser::trim_whitespace | boost::property_tree::xml_parser::no_comments);\r
65 \r
66                 auto paths = pt.get_child(L"configuration.paths");\r
67                 media = widen(paths.get(L"media-path", initialPath + L"\\media\\"));\r
68                 log = widen(paths.get(L"log-path", initialPath + L"\\log\\"));\r
69                 ftemplate = complete(wpath(widen(paths.get(L"template-path", initialPath + L"\\template\\")))).string();                \r
70                 data = widen(paths.get(L"data-path", initialPath + L"\\data\\"));\r
71                 thumbnails = widen(paths.get(L"thumbnails-path", initialPath + L"\\thumbnails\\"));\r
72 \r
73                 try\r
74                 {\r
75                         for(auto it = boost::filesystem2::wdirectory_iterator(initialPath); it != boost::filesystem2::wdirectory_iterator(); ++it)\r
76                         {\r
77                                 if(it->filename().find(L".fth") != std::wstring::npos)                  \r
78                                 {\r
79                                         auto from_path = *it;\r
80                                         auto to_path = boost::filesystem2::wpath(ftemplate + L"/" + it->filename());\r
81                                 \r
82                                         if(boost::filesystem2::exists(to_path))\r
83                                                 boost::filesystem2::remove(to_path);\r
84 \r
85                                         boost::filesystem2::copy_file(from_path, to_path);\r
86                                 }       \r
87                         }\r
88                 }\r
89                 catch(...)\r
90                 {\r
91                         CASPAR_LOG_CURRENT_EXCEPTION();\r
92                         CASPAR_LOG(error) << L"Failed to copy template-hosts from initial-path to template-path.";\r
93                 }\r
94         }\r
95         catch(...)\r
96         {\r
97                 std::wcout << L" ### Invalid configuration file. ###";\r
98                 throw;\r
99         }\r
100 \r
101         try\r
102         {\r
103                 auto media_path = boost::filesystem::wpath(media);\r
104                 if(!boost::filesystem::exists(media_path))\r
105                         boost::filesystem::create_directory(media_path);\r
106                 \r
107                 auto log_path = boost::filesystem::wpath(log);\r
108                 if(!boost::filesystem::exists(log_path))\r
109                         boost::filesystem::create_directory(log_path);\r
110                 \r
111                 auto template_path = boost::filesystem::wpath(ftemplate);\r
112                 if(!boost::filesystem::exists(template_path))\r
113                         boost::filesystem::create_directory(template_path);\r
114                 \r
115                 auto data_path = boost::filesystem::wpath(data);\r
116                 if(!boost::filesystem::exists(data_path))\r
117                         boost::filesystem::create_directory(data_path);\r
118                 \r
119                 auto thumbnails_path = boost::filesystem::wpath(thumbnails);\r
120                 if(!boost::filesystem::exists(thumbnails_path))\r
121                         boost::filesystem::create_directory(thumbnails_path);\r
122         }\r
123         catch(...)\r
124         {\r
125                 CASPAR_LOG_CURRENT_EXCEPTION();\r
126                 CASPAR_LOG(error) << L"Failed to create configured directories.";\r
127         }\r
128 }\r
129         \r
130 const std::wstring& media_folder()\r
131 {\r
132         check_is_configured();\r
133         return media;\r
134 }\r
135 \r
136 const std::wstring& log_folder()\r
137 {\r
138         check_is_configured();\r
139         return log;\r
140 }\r
141 \r
142 const std::wstring& template_folder()\r
143 {\r
144         check_is_configured();\r
145         return ftemplate;\r
146 }\r
147 \r
148 const std::wstring& data_folder()\r
149 {\r
150         check_is_configured();\r
151         return data;\r
152 }\r
153 \r
154 const std::wstring& thumbnails_folder()\r
155 {\r
156         check_is_configured();\r
157         return thumbnails;\r
158 }\r
159 \r
160 #define QUOTE(str) #str\r
161 #define EXPAND_AND_QUOTE(str) QUOTE(str)\r
162 \r
163 const std::wstring& version()\r
164 {\r
165         static std::wstring ver = widen(\r
166                         EXPAND_AND_QUOTE(CASPAR_GEN)    "." \r
167                         EXPAND_AND_QUOTE(CASPAR_MAYOR)  "." \r
168                         EXPAND_AND_QUOTE(CASPAR_MINOR)  "." \r
169                         CASPAR_REV      " " \r
170                         CASPAR_TAG);\r
171         return ver;\r
172 }\r
173 \r
174 const boost::property_tree::wptree& properties()\r
175 {\r
176         check_is_configured();\r
177         return pt;\r
178 }\r
179 \r
180 }}