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