]> git.sesse.net Git - casparcg/blob - shell/main.cpp
b03678e66518e8f14b2aa4078d6d127e701d2855
[casparcg] / shell / main.cpp
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\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 */\r
20 \r
21 // tbbmalloc_proxy: \r
22 // Replace the standard memory allocation routines in Microsoft* C/C++ RTL \r
23 // (malloc/free, global new/delete, etc.) with the TBB memory allocator. \r
24 #include <tbb/tbbmalloc_proxy.h>\r
25 \r
26 #include "resource.h"\r
27 \r
28 #include "server.h"\r
29 \r
30 #ifdef _DEBUG\r
31         #define _CRTDBG_MAP_ALLOC\r
32         #include <stdlib.h>\r
33         #include <crtdbg.h>\r
34 #endif\r
35 \r
36 #define NOMINMAX\r
37 #define WIN32_LEAN_AND_MEAN\r
38 \r
39 #include <windows.h>\r
40 #include <winnt.h>\r
41 #include <mmsystem.h>\r
42 #include <atlbase.h>\r
43 \r
44 #include <protocol/amcp/AMCPProtocolStrategy.h>\r
45 \r
46 #include <modules/bluefish/bluefish.h>\r
47 #include <modules/decklink/decklink.h>\r
48 #include <modules/flash/flash.h>\r
49 #include <modules/ffmpeg/ffmpeg.h>\r
50 #include <modules/image/image.h>\r
51 \r
52 #include <common/env.h>\r
53 #include <common/exception/win32_exception.h>\r
54 #include <common/exception/exceptions.h>\r
55 #include <common/log/log.h>\r
56 #include <common/gl/gl_check.h>\r
57 #include <common/os/windows/current_version.h>\r
58 #include <common/os/windows/system_info.h>\r
59 \r
60 #include <core/mixer/gpu/ogl_device.h>\r
61 \r
62 #include <tbb/task_scheduler_init.h>\r
63 #include <tbb/task_scheduler_observer.h>\r
64 \r
65 #include <boost/property_tree/detail/file_parser_error.hpp>\r
66 #include <boost/property_tree/xml_parser.hpp>\r
67 \r
68 #include <algorithm>\r
69 \r
70 struct application_state\r
71 {\r
72         enum type\r
73         {\r
74                 running,\r
75                 shutdown,\r
76                 pause_and_shutdown\r
77         };\r
78 };\r
79 \r
80 boost::condition_variable       shutdown_cond;\r
81 boost::mutex                            shutdown_mut;\r
82 tbb::atomic<int>                        shutdown_event;\r
83 \r
84 // NOTE: This is needed in order to make CComObject work since this is not a real ATL project.\r
85 CComModule _AtlModule;\r
86 extern __declspec(selectany) CAtlModule* _pAtlModule = &_AtlModule;\r
87 \r
88 void change_icon( const HICON hNewIcon )\r
89 {\r
90    auto hMod = ::LoadLibrary(L"Kernel32.dll"); \r
91    typedef DWORD(__stdcall *SCI)(HICON);\r
92    auto pfnSetConsoleIcon = reinterpret_cast<SCI>(::GetProcAddress(hMod, "SetConsoleIcon")); \r
93    pfnSetConsoleIcon(hNewIcon); \r
94    ::FreeLibrary(hMod);\r
95 }\r
96 \r
97 BOOL WINAPI HandlerRoutine(__in  DWORD dwCtrlType)\r
98 {\r
99         switch(dwCtrlType)\r
100         {\r
101         case CTRL_CLOSE_EVENT:\r
102         case CTRL_SHUTDOWN_EVENT:\r
103                 shutdown_event = application_state::shutdown;\r
104                 shutdown_cond.notify_all();\r
105                 return true;\r
106         }\r
107         return false;\r
108 }\r
109 \r
110 void setup_console_window()\r
111 {        \r
112         auto hOut = GetStdHandle(STD_OUTPUT_HANDLE);\r
113 \r
114         // Disable close button in console to avoid shutdown without cleanup.\r
115         //EnableMenuItem(GetSystemMenu(GetConsoleWindow(), FALSE), SC_CLOSE , MF_GRAYED);\r
116         //DrawMenuBar(GetConsoleWindow());\r
117         SetConsoleCtrlHandler(HandlerRoutine, true);\r
118 \r
119         // Configure console size and position.\r
120         auto coord = GetLargestConsoleWindowSize(hOut);\r
121         coord.X /= 2;\r
122 \r
123         SetConsoleScreenBufferSize(hOut, coord);\r
124 \r
125         SMALL_RECT DisplayArea = {0, 0, 0, 0};\r
126         DisplayArea.Right = coord.X-1;\r
127         DisplayArea.Bottom = (coord.Y-1)/2;\r
128         SetConsoleWindowInfo(hOut, TRUE, &DisplayArea);\r
129                  \r
130         change_icon(::LoadIcon(GetModuleHandle(0), MAKEINTRESOURCE(101)));\r
131 \r
132         // Set console title.\r
133         std::wstringstream str;\r
134         str << "CasparCG Server " << caspar::env::version();\r
135 #ifdef COMPILE_RELEASE\r
136         str << " Release";\r
137 #elif  COMPILE_PROFILE\r
138         str << " Profile";\r
139 #elif  COMPILE_DEVELOP\r
140         str << " Develop";\r
141 #elif  COMPILE_DEBUG\r
142         str << " Debug";\r
143 #endif\r
144         SetConsoleTitle(str.str().c_str());\r
145 }\r
146 \r
147 void print_info()\r
148 {\r
149         CASPAR_LOG(info) << L"Copyright (c) 2010 Sveriges Television AB, www.casparcg.com, <info@casparcg.com>";\r
150         CASPAR_LOG(info) << L"Starting CasparCG Video and Graphics Playout Server " << caspar::env::version();\r
151         CASPAR_LOG(info) << L"on " << caspar::get_win_product_name() << L" " << caspar::get_win_sp_version();\r
152         CASPAR_LOG(info) << caspar::get_cpu_info();\r
153         CASPAR_LOG(info) << caspar::get_system_product_name();\r
154         CASPAR_LOG(info) << L"Flash " << caspar::flash::get_version();\r
155         CASPAR_LOG(info) << L"FreeImage " << caspar::image::get_version();\r
156         \r
157         CASPAR_LOG(info) << L"Decklink " << caspar::decklink::get_version();\r
158         auto deck = caspar::decklink::get_device_list();\r
159         std::for_each(deck.begin(), deck.end(), [](const std::wstring& device)\r
160         {\r
161                 CASPAR_LOG(info) << L" - " << device;\r
162         });\r
163                 \r
164         CASPAR_LOG(info) << L"Bluefish " << caspar::bluefish::get_version();\r
165         auto blue = caspar::bluefish::get_device_list();\r
166         std::for_each(blue.begin(), blue.end(), [](const std::wstring& device)\r
167         {\r
168                 CASPAR_LOG(info) << L" - " << device;\r
169         });\r
170         \r
171         CASPAR_LOG(info) << L"FFMPEG-avcodec "  << caspar::ffmpeg::get_avcodec_version();\r
172         CASPAR_LOG(info) << L"FFMPEG-avformat " << caspar::ffmpeg::get_avformat_version();\r
173         CASPAR_LOG(info) << L"FFMPEG-avfilter " << caspar::ffmpeg::get_avfilter_version();\r
174         CASPAR_LOG(info) << L"FFMPEG-avutil "   << caspar::ffmpeg::get_avutil_version();\r
175         CASPAR_LOG(info) << L"FFMPEG-swscale "  << caspar::ffmpeg::get_swscale_version();\r
176 }\r
177 \r
178 LONG WINAPI UserUnhandledExceptionFilter(EXCEPTION_POINTERS* info)\r
179 {\r
180         try\r
181         {\r
182                 CASPAR_LOG(fatal) << L"#######################\n UNHANDLED EXCEPTION: \n" \r
183                         << L"Adress:" << info->ExceptionRecord->ExceptionAddress << L"\n"\r
184                         << L"Code:" << info->ExceptionRecord->ExceptionCode << L"\n"\r
185                         << L"Flag:" << info->ExceptionRecord->ExceptionFlags << L"\n"\r
186                         << L"Info:" << info->ExceptionRecord->ExceptionInformation << L"\n"\r
187                         << L"Continuing execution. \n#######################";\r
188         }\r
189         catch(...){}\r
190 \r
191     return EXCEPTION_EXECUTE_HANDLER;\r
192 }\r
193 \r
194 int main(int argc, wchar_t* argv[])\r
195 {       \r
196         static_assert(sizeof(void*) == 4, "64-bit code generation is not supported.");\r
197         \r
198         SetUnhandledExceptionFilter(UserUnhandledExceptionFilter);\r
199 \r
200         std::wcout << L"Type \"q\" to close application." << std::endl;\r
201         \r
202         // Set debug mode.\r
203         #ifdef _DEBUG\r
204                 _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF | _CRTDBG_CHECK_ALWAYS_DF );\r
205                 _CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_DEBUG );\r
206                 _CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_DEBUG );\r
207                 _CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_DEBUG );\r
208         #endif\r
209 \r
210         // Increase process priotity.\r
211         SetPriorityClass(GetCurrentProcess(), ABOVE_NORMAL_PRIORITY_CLASS);\r
212 \r
213         // Install structured exception handler.\r
214         caspar::win32_exception::install_handler();\r
215 \r
216         caspar::log::set_log_level(L"debug");\r
217                         \r
218         // Increase time precision. This will increase accuracy of function like Sleep(1) from 10 ms to 1 ms.\r
219         struct inc_prec\r
220         {\r
221                 inc_prec(){timeBeginPeriod(1);}\r
222                 ~inc_prec(){timeEndPeriod(1);}\r
223         } inc_prec;     \r
224 \r
225         // Install unstructured exception handlers into all tbb threads.\r
226         struct tbb_thread_installer : public tbb::task_scheduler_observer\r
227         {\r
228                 tbb_thread_installer(){observe(true);}\r
229                 void on_scheduler_entry(bool is_worker)\r
230                 {\r
231                         //caspar::detail::SetThreadName(GetCurrentThreadId(), "tbb-worker-thread");\r
232                         caspar::win32_exception::install_handler();\r
233                 }\r
234         } tbb_thread_installer;\r
235 \r
236         tbb::task_scheduler_init init;\r
237         \r
238         try \r
239         {\r
240                 {\r
241                         // Configure environment properties from configuration.\r
242                         caspar::env::configure("casparcg.config");\r
243                                 \r
244                 #ifdef _DEBUG\r
245                         if(caspar::env::properties().get("configuration.debugging.remote", false))\r
246                                 MessageBox(nullptr, TEXT("Now is the time to connect for remote debugging..."), TEXT("Debug"), MB_OK | MB_TOPMOST);\r
247                 #endif   \r
248 \r
249                         // Start logging to file.\r
250                         caspar::log::add_file_sink(caspar::env::log_folder());                  \r
251                         std::wcout << L"Logging [info] or higher severity to " << caspar::env::log_folder() << std::endl << std::endl;\r
252                 \r
253                         // Setup console window.\r
254                         setup_console_window();\r
255 \r
256                         // Print environment information.\r
257                         print_info();\r
258                         \r
259                         std::stringstream str;\r
260                         boost::property_tree::xml_writer_settings<char> w(' ', 3);\r
261                         boost::property_tree::write_xml(str, caspar::env::properties(), w);\r
262                         CASPAR_LOG(info) << L"casparcg.config:\n-----------------------------------------\n" << str.str().c_str() << L"-----------------------------------------";\r
263                                 \r
264                         // Create server object which initializes channels, protocols and controllers.\r
265                         caspar::server caspar_server;\r
266                                 \r
267                         // Create a amcp parser for console commands.\r
268                         caspar::protocol::amcp::AMCPProtocolStrategy amcp(caspar_server.get_channels());\r
269 \r
270                         // Create a dummy client which prints amcp responses to console.\r
271                         auto console_client = std::make_shared<caspar::IO::ConsoleClientInfo>();\r
272 \r
273                         boost::thread input_thread([&]\r
274                         {\r
275                                 while(shutdown_event == application_state::running)\r
276                                 {\r
277                                         std::wstring wcmd;\r
278                                         std::getline(std::wcin, wcmd); // TODO: It's blocking...\r
279 \r
280                                         try\r
281                                         {\r
282                                                 if(wcmd == L"exit" || wcmd == L"q")\r
283                                                 {\r
284                                                         shutdown_event = application_state::pause_and_shutdown;\r
285                                                         shutdown_cond.notify_all();\r
286                                                         return;\r
287                                                 }\r
288 \r
289                                                 // This is just dummy code for testing.\r
290                                                 if(wcmd.substr(0, 1) == L"1")\r
291                                                         wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" SLIDE 100 LOOP \r\nPLAY 1-1";\r
292                                                 else if(wcmd.substr(0, 1) == L"2")\r
293                                                         wcmd = L"MIXER 1-0 VIDEO IS_KEY 1";\r
294                                                 else if(wcmd.substr(0, 1) == L"3")\r
295                                                         wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1";\r
296                                                 else if(wcmd.substr(0, 1) == L"4")\r
297                                                         wcmd = L"PLAY 1-1 DV FILTER yadif=1:-1 LOOP";\r
298                                                 else if(wcmd.substr(0, 1) == L"5")\r
299                                                 {\r
300                                                         auto file = wcmd.substr(2, wcmd.length()-1);\r
301                                                         wcmd = L"PLAY 1-1 " + file + L" LOOP\r\n" \r
302                                                                    L"PLAY 1-2 " + file + L" LOOP\r\n" \r
303                                                                    L"PLAY 1-3 " + file + L" LOOP\r\n"\r
304                                                                    L"PLAY 2-1 " + file + L" LOOP\r\n" \r
305                                                                    L"PLAY 2-2 " + file + L" LOOP\r\n" \r
306                                                                    L"PLAY 2-3 " + file + L" LOOP\r\n";\r
307                                                 }\r
308                                                 else if(wcmd.substr(0, 1) == L"X")\r
309                                                 {\r
310                                                         int num = 0;\r
311                                                         std::wstring file;\r
312                                                         try\r
313                                                         {\r
314                                                                 num = boost::lexical_cast<int>(wcmd.substr(1, 2));\r
315                                                                 file = wcmd.substr(4, wcmd.length()-1);\r
316                                                         }\r
317                                                         catch(...)\r
318                                                         {\r
319                                                                 num = boost::lexical_cast<int>(wcmd.substr(1, 1));\r
320                                                                 file = wcmd.substr(3, wcmd.length()-1);\r
321                                                         }\r
322 \r
323                                                         int n = 0;\r
324                                                         int num2 = num;\r
325                                                         while(num2 > 0)\r
326                                                         {\r
327                                                                 num2 >>= 1;\r
328                                                                 n++;\r
329                                                         }\r
330 \r
331                                                         wcmd = L"MIXER 1 GRID " + boost::lexical_cast<std::wstring>(n);\r
332 \r
333                                                         for(int i = 1; i <= num; ++i)\r
334                                                                 wcmd += L"\r\nPLAY 1-" + boost::lexical_cast<std::wstring>(i) + L" " + file + L" LOOP";// + L" SLIDE 100 LOOP";\r
335                                                 }\r
336 \r
337                                                 wcmd += L"\r\n";\r
338                                                 amcp.Parse(wcmd.c_str(), wcmd.length(), console_client);\r
339                                         }\r
340                                         catch(...)\r
341                                         {\r
342                                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
343                                         }\r
344                                 }\r
345                         });\r
346 \r
347                         boost::unique_lock<boost::mutex> lock(shutdown_mut);\r
348                         while(shutdown_event == application_state::running)                     \r
349                                 shutdown_cond.wait(lock);                               \r
350                 }       \r
351                         \r
352                 Sleep(500); // CAPSAR_LOG is asynchronous. Try to get text in correct order.'\r
353 \r
354                 if(shutdown_event == application_state::pause_and_shutdown)\r
355                         system("pause");        \r
356         }\r
357         catch(boost::property_tree::file_parser_error&)\r
358         {\r
359                 CASPAR_LOG_CURRENT_EXCEPTION();\r
360                 CASPAR_LOG(fatal) << L"Unhandled configuration error in main thread. Please check the configuration file (casparcg.config) for errors.";\r
361                 system("pause");        \r
362         }\r
363         catch(caspar::gl::ogl_exception&)\r
364         {\r
365                 CASPAR_LOG_CURRENT_EXCEPTION();\r
366                 CASPAR_LOG(fatal) << L"Unhandled OpenGL Error in main thread. Please try to update graphics drivers for OpenGL 3.0+ Support.";\r
367         }\r
368         catch(...)\r
369         {\r
370                 CASPAR_LOG_CURRENT_EXCEPTION();\r
371                 CASPAR_LOG(fatal) << L"Unhandled exception in main thread. Please report this error on the CasparCG forums (www.casparcg.com/forum).";\r
372         }       \r
373         \r
374         CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";\r
375         return 0;\r
376 }