]> git.sesse.net Git - casparcg/commitdiff
[flash] Moved template host copying to flash module startup instead from env setup...
authorHelge Norberg <helge.norberg@svt.se>
Tue, 15 Nov 2016 17:17:15 +0000 (18:17 +0100)
committerHelge Norberg <helge.norberg@svt.se>
Tue, 15 Nov 2016 17:17:15 +0000 (18:17 +0100)
common/env.cpp
common/env.h
modules/flash/flash.cpp
modules/flash/producer/flash_producer.cpp
protocol/amcp/AMCPCommandsImpl.cpp

index e7b78298cee97a81dd9286bab52f88af9980b7bd..f422fb0c032c43dc82f3e36902743c85c85b467c 100644 (file)
@@ -41,7 +41,8 @@
 #include <fstream>
 
 namespace caspar { namespace env {
-       
+
+std::wstring initial;
 std::wstring media;
 std::wstring log;
 std::wstring ftemplate;
@@ -60,18 +61,18 @@ void configure(const std::wstring& filename)
 {
        try
        {
-               auto initialPath = boost::filesystem::initial_path().wstring();
-       
-               boost::filesystem::wifstream file(initialPath + L"/" + filename);
+               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", initialPath + L"/media/");
-               log                     = paths.get(L"log-path", initialPath + L"/log/");
-               ftemplate       = boost::filesystem::complete(paths.get(L"template-path", initialPath + L"/template/")).wstring();
-               data            = paths.get(L"data-path", initialPath + L"/data/");
-               font            = paths.get(L"font-path", initialPath + L"/font/");
-               thumbnails      = paths.get(L"thumbnail-path", initialPath + L"/thumbnail/");
+               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(...)
        {
@@ -130,30 +131,6 @@ void configure(const std::wstring& filename)
                        font.append(L"/");
                if(thumbnails.at(thumbnails.length()-1) != L'/')
                        thumbnails.append(L"/");
-
-               try
-               {
-                       auto initialPath = boost::filesystem::initial_path().wstring();
-
-                       for(auto it = boost::filesystem::directory_iterator(initialPath); it != boost::filesystem::directory_iterator(); ++it)
-                       {
-                               if(it->path().wstring().find(L".fth") != std::wstring::npos)
-                               {
-                                       auto from_path = *it;
-                                       auto to_path = boost::filesystem::path(ftemplate + L"/" + it->path().filename().wstring());
-
-                                       if(boost::filesystem::exists(to_path))
-                                               boost::filesystem::remove(to_path);
-
-                                       boost::filesystem::copy_file(from_path, to_path);
-                               }
-                       }
-               }
-               catch(...)
-               {
-                       CASPAR_LOG_CURRENT_EXCEPTION();
-                       CASPAR_LOG(error) << L"Failed to copy template-hosts from initial-path to template-path.";
-               }
        }
        catch(...)
        {
@@ -161,7 +138,13 @@ void configure(const std::wstring& filename)
                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();
@@ -204,10 +187,10 @@ const std::wstring& thumbnails_folder()
 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      " " 
+                       EXPAND_AND_QUOTE(CASPAR_GEN)    "."
+                       EXPAND_AND_QUOTE(CASPAR_MAYOR)  "."
+                       EXPAND_AND_QUOTE(CASPAR_MINOR)  "."
+                       CASPAR_REV      " "
                        CASPAR_TAG);
        return ver;
 }
index c7c78ff06872e75b903c8e02c70f68b460384f47..da4cde38d433907f57503410ed93761edb1f7bdf 100644 (file)
@@ -29,6 +29,7 @@ namespace caspar { namespace env {
 
 void configure(const std::wstring& filename);
 
+const std::wstring& initial_folder();
 const std::wstring& media_folder();
 const std::wstring& log_folder();
 const std::wstring& template_folder();
index e0b85e92e65819228bc394d3c219d6bc59970a89..a5d4fcde9108b698da5a4d65717da09542074aab 100644 (file)
@@ -205,8 +205,35 @@ spl::shared_ptr<core::frame_producer> create_ct_producer(
        return producer;
 }
 
+void copy_template_hosts()
+{
+       try
+       {
+               for (auto it = boost::filesystem::directory_iterator(env::initial_folder()); it != boost::filesystem::directory_iterator(); ++it)
+               {
+                       if (it->path().wstring().find(L".fth") != std::wstring::npos)
+                       {
+                               auto from_path = *it;
+                               auto to_path = boost::filesystem::path(env::template_folder() + L"/" + it->path().filename().wstring());
+
+                               if (boost::filesystem::exists(to_path))
+                                       boost::filesystem::remove(to_path);
+
+                               boost::filesystem::copy_file(from_path, to_path);
+                       }
+               }
+       }
+       catch (...)
+       {
+               CASPAR_LOG_CURRENT_EXCEPTION();
+               CASPAR_LOG(error) << L"Failed to copy template-hosts from initial-path to template-path.";
+       }
+}
+
 void init(core::module_dependencies dependencies)
 {
+       copy_template_hosts();
+
        dependencies.producer_registry->register_producer_factory(L"Flash Producer (.ct)", create_ct_producer, describe_ct_producer);
        dependencies.producer_registry->register_producer_factory(L"Flash Producer (.swf)", create_swf_producer, describe_swf_producer);
        dependencies.media_info_repo->register_extractor([](const std::wstring& file, const std::wstring& extension, core::media_info& info)
@@ -249,11 +276,11 @@ std::wstring cg_version()
 }
 
 std::wstring version()
-{              
+{
        std::wstring version = L"Not found";
-#ifdef WIN32 
+#ifdef WIN32
        HKEY   hkey;
+
        DWORD dwType, dwSize;
        if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Macromedia\\FlashPlayerActiveX"), 0, KEY_QUERY_VALUE, &hkey) == ERROR_SUCCESS)
        {
@@ -262,7 +289,7 @@ std::wstring version()
                dwType = REG_SZ;
                dwSize = sizeof(ver_str);
                RegQueryValueEx(hkey, TEXT("Version"), NULL, &dwType, (PBYTE)&ver_str, &dwSize);
+
                version = ver_str;
 
                RegCloseKey(hkey);
index 8cefe4d4cb633bef78e53d4813b1ea9874cddd21..cbbae1aa2286c8dcee28a132523619ebaaac08f6 100644 (file)
@@ -625,7 +625,7 @@ spl::shared_ptr<core::frame_producer> create_producer(const core::frame_producer
        auto filename = env::template_folder() + L"\\" + template_host.filename;
        
        if(!boost::filesystem::exists(filename))
-               CASPAR_THROW_EXCEPTION(file_not_found() << boost::errinfo_file_name(u8(filename)));     
+               CASPAR_THROW_EXCEPTION(file_not_found() << msg_info(L"Could not open flash movie " + filename));        
 
        return create_destroy_proxy(spl::make_shared<flash_producer>(dependencies.frame_factory, dependencies.format_desc, filename, template_host.width, template_host.height));
 }
index 2788325c7dda4b7ed16e0d8f500bff366d8e5556..0fe0d942b0b7d064c79940fecc5e2a94a7245f23 100644 (file)
@@ -2444,7 +2444,7 @@ std::wstring info_paths_command(command_context& ctx)
 {
        boost::property_tree::wptree info;
        info.add_child(L"paths", caspar::env::properties().get_child(L"configuration.paths"));
-       info.add(L"paths.initial-path", boost::filesystem::initial_path().wstring() + L"/");
+       info.add(L"paths.initial-path", caspar::env::initial_folder() + L"/");
 
        return create_info_xml_reply(info, L"PATHS");
 }