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