]> git.sesse.net Git - casparcg/blobdiff - common/env.cpp
[flash] Moved template host copying to flash module startup instead from env setup...
[casparcg] / common / env.cpp
index d424f824f58415ce38ce13a91e22998b36e2450e..f422fb0c032c43dc82f3e36902743c85c85b467c 100644 (file)
-#include "stdafx.h"\r
-\r
-#include "env.h"\r
-\r
-#include "../version.h"\r
-\r
-#include "exception\exceptions.h"\r
-#include "utility/string.h"\r
-\r
-#include <boost/property_tree/ptree.hpp>\r
-#include <boost/property_tree/xml_parser.hpp>\r
-#include <boost/filesystem.hpp>\r
-#include <boost/thread/once.hpp>\r
-\r
-#include <functional>\r
-\r
-namespace caspar { namespace env {\r
-\r
-std::wstring media;\r
-std::wstring log;\r
-std::wstring ftemplate;\r
-std::wstring ftemplate_host;\r
-std::wstring data;\r
-boost::property_tree::ptree pt;\r
-\r
-void check_is_configured()\r
-{\r
-       if(pt.empty())\r
-               BOOST_THROW_EXCEPTION(invalid_operation() << msg_info("Enviroment properties has not been configured"));\r
-}\r
-\r
-void configure(const std::string& filename)\r
-{\r
-       std::string initialPath = boost::filesystem::initial_path().file_string();\r
-       \r
-       boost::property_tree::read_xml(initialPath + "\\" + filename, pt);\r
-\r
-       auto paths = pt.get_child("configuration.paths");\r
-       media = widen(paths.get("media-path", initialPath + "\\media\\"));\r
-       log = widen(paths.get("log-path", initialPath + "\\log\\"));\r
-       ftemplate = widen(paths.get("template-path", initialPath + "\\template\\"));\r
-       ftemplate_host = widen(paths.get("template-host", "cg.fth"));\r
-       data = widen(paths.get("data-path", initialPath + "\\data\\"));\r
-}\r
-       \r
-const std::wstring& media_folder()\r
-{\r
-       check_is_configured();\r
-       return media;\r
-}\r
-\r
-const std::wstring& log_folder()\r
-{\r
-       check_is_configured();\r
-       return log;\r
-}\r
-\r
-const std::wstring& template_folder()\r
-{\r
-       check_is_configured();\r
-       return ftemplate;\r
-}\r
-\r
-const std::wstring& template_host()\r
-{\r
-       check_is_configured();\r
-       return ftemplate_host;\r
-}\r
-\r
-const std::wstring& data_folder()\r
-{\r
-       check_is_configured();\r
-       return data;\r
-}\r
-\r
-const std::wstring& version()\r
-{\r
-       static std::wstring ver = std::wstring(L"") + CASPAR_GEN + L"." + CASPAR_MAYOR + L"." + CASPAR_MINOR + L"." + CASPAR_REV;\r
-       return ver;\r
-}\r
-\r
-const boost::property_tree::ptree& properties()\r
-{\r
-       check_is_configured();\r
-       return pt;\r
-}\r
-\r
-}}
\ No newline at end of file
+/*
+* Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
+*
+* This file is part of CasparCG (www.casparcg.com).
+*
+* CasparCG 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.
+*
+* CasparCG 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 CasparCG. If not, see <http://www.gnu.org/licenses/>.
+*
+* Author: Robert Nagy, ronag89@gmail.com
+*/
+
+#include "stdafx.h"
+
+#include "env.h"
+
+#include "../version.h"
+
+#include "except.h"
+#include "log.h"
+#include "string.h"
+#include "os/filesystem.h"
+
+#include <boost/property_tree/ptree.hpp>
+#include <boost/property_tree/xml_parser.hpp>
+#include <boost/filesystem.hpp>
+#include <boost/filesystem/fstream.hpp>
+#include <boost/thread/once.hpp>
+
+#include <functional>
+#include <iostream>
+#include <fstream>
+
+namespace caspar { namespace env {
+
+std::wstring initial;
+std::wstring media;
+std::wstring log;
+std::wstring ftemplate;
+std::wstring data;
+std::wstring font;
+std::wstring thumbnails;
+boost::property_tree::wptree pt;
+
+void check_is_configured()
+{
+       if(pt.empty())
+               CASPAR_THROW_EXCEPTION(invalid_operation() << msg_info(L"Enviroment properties has not been configured"));
+}
+
+void configure(const std::wstring& filename)
+{
+       try
+       {
+               initial = boost::filesystem::initial_path().wstring();
+
+               boost::filesystem::wifstream file(initial + L"/" + filename);
+               boost::property_tree::read_xml(file, pt, boost::property_tree::xml_parser::trim_whitespace | boost::property_tree::xml_parser::no_comments);
+
+               auto paths      = pt.get_child(L"configuration.paths");
+               media           = paths.get(L"media-path", initial + L"/media/");
+               log                     = paths.get(L"log-path", initial + L"/log/");
+               ftemplate       = boost::filesystem::complete(paths.get(L"template-path", initial + L"/template/")).wstring();
+               data            = paths.get(L"data-path", initial + L"/data/");
+               font            = paths.get(L"font-path", initial + L"/font/");
+               thumbnails      = paths.get(L"thumbnail-path", initial + L"/thumbnail/");
+       }
+       catch(...)
+       {
+               CASPAR_LOG(error) << L" ### Invalid configuration file. ###";
+               throw;
+       }
+
+       try
+       {
+               auto found_media_path = find_case_insensitive(media);
+               if (found_media_path)
+                       media = *found_media_path;
+               else
+                       boost::filesystem::create_directories(media);
+
+               auto found_template_path = find_case_insensitive(ftemplate);
+               if (found_template_path)
+                       ftemplate = *found_template_path;
+               else
+                       boost::filesystem::create_directories(ftemplate);
+
+               auto found_data_path = find_case_insensitive(data);
+               if (found_data_path)
+                       data = *found_data_path;
+               else
+                       boost::filesystem::create_directories(data);
+
+               auto found_font_path = find_case_insensitive(font);
+               if (found_font_path)
+                       font = *found_font_path;
+               else
+                       boost::filesystem::create_directories(font);
+
+               auto found_thumbnails_path = find_case_insensitive(thumbnails);
+               if (found_thumbnails_path)
+                       thumbnails = *found_thumbnails_path;
+               else
+                       boost::filesystem::create_directories(thumbnails);
+
+               auto found_log_path = find_case_insensitive(log);
+               if (found_log_path)
+                       log = *found_log_path;
+               else if (!boost::filesystem::create_directories(log))
+                       log = L"./";
+
+               //Make sure that all paths have a trailing slash
+               if(media.at(media.length()-1) != L'/')
+                       media.append(L"/");
+               if(log.at(log.length()-1) != L'/')
+                       log.append(L"/");
+               if(ftemplate.at(ftemplate.length()-1) != L'/')
+                       ftemplate.append(L"/");
+               if(data.at(data.length()-1) != L'/')
+                       data.append(L"/");
+               if(font.at(font.length()-1) != L'/')
+                       font.append(L"/");
+               if(thumbnails.at(thumbnails.length()-1) != L'/')
+                       thumbnails.append(L"/");
+       }
+       catch(...)
+       {
+               CASPAR_LOG_CURRENT_EXCEPTION();
+               CASPAR_LOG(error) << L"Failed to create configured directories.";
+       }
+}
+
+const std::wstring& initial_folder()
+{
+       check_is_configured();
+       return initial;
+}
+
+const std::wstring& media_folder()
+{
+       check_is_configured();
+       return media;
+}
+
+const std::wstring& log_folder()
+{
+       check_is_configured();
+       return log;
+}
+
+const std::wstring& template_folder()
+{
+       check_is_configured();
+       return ftemplate;
+}
+
+const std::wstring& data_folder()
+{
+       check_is_configured();
+       return data;
+}
+
+const std::wstring& font_folder()
+{
+       check_is_configured();
+       return font;
+}
+
+const std::wstring& thumbnails_folder()
+{
+       check_is_configured();
+       return thumbnails;
+}
+
+#define QUOTE(str) #str
+#define EXPAND_AND_QUOTE(str) QUOTE(str)
+
+const std::wstring& version()
+{
+       static std::wstring ver = u16(
+                       EXPAND_AND_QUOTE(CASPAR_GEN)    "."
+                       EXPAND_AND_QUOTE(CASPAR_MAYOR)  "."
+                       EXPAND_AND_QUOTE(CASPAR_MINOR)  "."
+                       CASPAR_REV      " "
+                       CASPAR_TAG);
+       return ver;
+}
+
+const boost::property_tree::wptree& properties()
+{
+       check_is_configured();
+       return pt;
+}
+
+}}