]> git.sesse.net Git - casparcg/blob - shell/main.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[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 #include "resource.h"\r
21 \r
22 #include "server.h"\r
23 \r
24 // tbbmalloc_proxy: \r
25 // Replace the standard memory allocation routines in Microsoft* C/C++ RTL \r
26 // (malloc/free, global new/delete, etc.) with the TBB memory allocator. \r
27 #include <tbb/tbbmalloc_proxy.h>\r
28 \r
29 #ifdef _DEBUG\r
30         #define _CRTDBG_MAP_ALLOC\r
31         #include <stdlib.h>\r
32         #include <crtdbg.h>\r
33 #endif\r
34 \r
35 #define NOMINMAX\r
36 \r
37 #include <windows.h>\r
38 #include <atlbase.h>\r
39 #include <conio.h>\r
40 \r
41 #include <core/mixer/gpu/ogl_device.h>\r
42 \r
43 #include <protocol/amcp/AMCPProtocolStrategy.h>\r
44 \r
45 #include <modules/bluefish/bluefish.h>\r
46 #include <modules/decklink/decklink.h>\r
47 #include <modules/flash/flash.h>\r
48 #include <modules/ffmpeg/ffmpeg.h>\r
49 #include <modules/image/image.h>\r
50 \r
51 #include <common/env.h>\r
52 #include <common/exception/win32_exception.h>\r
53 #include <common/exception/exceptions.h>\r
54 #include <common/log/log.h>\r
55 #include <common/os/windows/current_version.h>\r
56 #include <common/os/windows/system_info.h>\r
57 #include <common/utility/assert.h>\r
58 \r
59 #include <Glee.h>\r
60 \r
61 #include <tbb/task_scheduler_observer.h>\r
62 #include <tbb/task_scheduler_init.h>\r
63 \r
64 #include <boost/foreach.hpp>\r
65 \r
66 // NOTE: This is needed in order to make CComObject work since this is not a real ATL project.\r
67 CComModule _AtlModule;\r
68 extern __declspec(selectany) CAtlModule* _pAtlModule = &_AtlModule;\r
69 \r
70 void setup_console_window()\r
71 {        \r
72         auto hOut = GetStdHandle(STD_OUTPUT_HANDLE);\r
73 \r
74         // Disable close button in console to avoid shutdown without cleanup.\r
75         EnableMenuItem(GetSystemMenu(GetConsoleWindow(), FALSE), SC_CLOSE , MF_GRAYED);\r
76         DrawMenuBar(GetConsoleWindow());\r
77 \r
78         // Configure console size and position.\r
79         auto coord = GetLargestConsoleWindowSize(hOut);\r
80         coord.X /= 2;\r
81 \r
82         SetConsoleScreenBufferSize(hOut, coord);\r
83 \r
84         SMALL_RECT DisplayArea = {0, 0, 0, 0};\r
85         DisplayArea.Right = coord.X-1;\r
86         DisplayArea.Bottom = coord.Y-1;\r
87         SetConsoleWindowInfo(hOut, TRUE, &DisplayArea);\r
88                 \r
89         // Set console title.\r
90         std::wstringstream str;\r
91         str << "CasparCG Server " << caspar::env::version();\r
92         SetConsoleTitle(str.str().c_str());\r
93 }\r
94 \r
95 void print_info()\r
96 {\r
97         CASPAR_LOG(info) << L"Copyright (c) 2010 Sveriges Television AB, www.casparcg.com, <info@casparcg.com>";\r
98         CASPAR_LOG(info) << L"Starting CasparCG Video and Graphics Playout Server " << caspar::env::version();\r
99         CASPAR_LOG(info) << L"on " << caspar::get_win_product_name() << L" " << caspar::get_win_sp_version();\r
100         CASPAR_LOG(info) << caspar::get_cpu_info();\r
101         CASPAR_LOG(info) << caspar::get_system_product_name();\r
102         CASPAR_LOG(info) << L"Flash " << caspar::get_flash_version();\r
103         CASPAR_LOG(info) << L"Flash-Template-Host " << caspar::get_cg_version();\r
104         CASPAR_LOG(info) << L"FreeImage " << caspar::get_image_version();\r
105         \r
106         std::wstring decklink_devices;\r
107         BOOST_FOREACH(auto& device, caspar::get_decklink_device_list())\r
108                 decklink_devices += L"\t" + device;\r
109         CASPAR_LOG(info) << L"Decklink " << caspar::get_decklink_version() << (decklink_devices.empty() ? L"" : L"\n\tDevices:\n" + decklink_devices);\r
110         \r
111         std::wstring bluefish_devices;\r
112         BOOST_FOREACH(auto& device, caspar::get_bluefish_device_list())\r
113                 bluefish_devices += L"\t" + device;\r
114         CASPAR_LOG(info) << L"Bluefish " << caspar::get_bluefish_version() << (bluefish_devices.empty() ? L"" : L"\n\tDevices:\n" + bluefish_devices);\r
115 \r
116         CASPAR_LOG(info) << L"FFMPEG-avcodec "  << caspar::get_avcodec_version();\r
117         CASPAR_LOG(info) << L"FFMPEG-swscale "  << caspar::get_avformat_version();\r
118         CASPAR_LOG(info) << L"FFMPEG-avformat " << caspar::get_swscale_version();\r
119         CASPAR_LOG(info) << L"OpenGL " << caspar::mixer::ogl_device::create()->invoke([]{return reinterpret_cast<const char*>(glGetString(GL_VERSION));})\r
120                                          << L" "           << caspar::mixer::ogl_device::create()->invoke([]{return reinterpret_cast<const char*>(glGetString(GL_VENDOR));});\r
121         CASPAR_LOG(info) << L"\n\n";\r
122 }\r
123  \r
124 int main(int argc, wchar_t* argv[])\r
125 {       \r
126         static_assert(sizeof(void*) == 4, "64-bit code generation is not supported.");\r
127         \r
128         // Set debug mode.\r
129         #ifdef _DEBUG\r
130                 _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF | _CRTDBG_CHECK_ALWAYS_DF );\r
131                 _CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_DEBUG );\r
132                 _CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_DEBUG );\r
133                 _CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_DEBUG );\r
134         #endif\r
135 \r
136         // Increase process priotity.\r
137         SetPriorityClass(GetCurrentProcess(), ABOVE_NORMAL_PRIORITY_CLASS);\r
138 \r
139         // Install structured exception handler.\r
140         caspar::win32_exception::install_handler();\r
141                         \r
142         // Increase time precision. This will increase accuracy of function like Sleep(1) from 10 ms to 1 ms.\r
143         struct inc_prec\r
144         {\r
145                 inc_prec(){timeBeginPeriod(1);}\r
146                 ~inc_prec(){timeEndPeriod(1);}\r
147         } inc_prec;     \r
148 \r
149         // Install unstructured exception handlers into all tbb threads.\r
150         struct tbb_thread_installer : public tbb::task_scheduler_observer\r
151         {\r
152                 tbb_thread_installer(){observe(true);}\r
153                 void on_scheduler_entry(bool is_worker){caspar::win32_exception::install_handler();}\r
154         } tbb_thread_installer;\r
155         \r
156         try \r
157         {\r
158                 // Configure environment properties from configuration.\r
159                 caspar::env::configure("caspar.config");\r
160 \r
161         #ifdef _DEBUG\r
162                 if(caspar::env::properties().get("configuration.debugging.remote", false))\r
163                         MessageBox(nullptr, TEXT("Now is the time to connect for remote debugging..."), TEXT("Debug"), MB_OK | MB_TOPMOST);\r
164         #endif   \r
165 \r
166                 // Start logging to file.\r
167                 caspar::log::add_file_sink(caspar::env::log_folder());\r
168                 \r
169                 // Setup console window.\r
170                 setup_console_window();\r
171 \r
172                 // Print environment information.\r
173                 print_info();\r
174                                 \r
175                 // Create server object which initializes channels, protocols and controllers.\r
176                 caspar::server caspar_server;\r
177                                 \r
178                 // Create a amcp parser for console commands.\r
179                 caspar::protocol::amcp::AMCPProtocolStrategy amcp(caspar_server.get_channels());\r
180 \r
181                 // Create a dummy client which prints amcp responses to console.\r
182                 auto dummy = std::make_shared<caspar::IO::ConsoleClientInfo>();\r
183 \r
184                 bool is_running = true;\r
185                 while(is_running)\r
186                 {\r
187                         std::wstring wcmd;\r
188                         std::getline(std::wcin, wcmd); // TODO: It's blocking...\r
189 \r
190                         is_running = wcmd != L"exit" && wcmd != L"q";\r
191                         if(wcmd.substr(0, 2) == L"12")\r
192                         {\r
193                                 wcmd = L"LOADBG 1-1 A LOOP \r\nPLAY 1-1\r\n";\r
194                                 amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
195                                 wcmd = L"LOADBG 1-2 DV LOOP AUTOPLAY\r\nnPLAY 1-1\r\n";\r
196                                 amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
197                                 wcmd = L"MIXER 1-1 VIDEO FIX_RECT 0.0 0.0 0.5 0.5\r\n";\r
198                                 amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
199                                 wcmd = L"MIXER 1-2 VIDEO FIX_RECT 0.5 0.0 0.5 0.5\r\n";\r
200                                 amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
201                         }\r
202                         else if(wcmd.substr(0, 2) == L"10")\r
203                                 wcmd = L"MIXER 1-1 VIDEO CLIP_RECT 0.4 0.4 0.5 0.5";\r
204                         if(wcmd.substr(0, 2) == L"11")\r
205                                 wcmd = L"MIXER 1-1 VIDEO FIX_RECT 0.4 0.4 0.5 0.5";\r
206                         else if(wcmd.substr(0, 1) == L"1")\r
207                                 wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" SLIDE 100 LOOP \r\nPLAY 1-1";\r
208                         else if(wcmd.substr(0, 1) == L"2")\r
209                                 wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" PUSH 100 LOOP \r\nPLAY 1-1";\r
210                         else if(wcmd.substr(0, 1) == L"3")\r
211                                 wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" MIX 100 LOOP \r\nPLAY 1-1";\r
212                         else if(wcmd.substr(0, 1) == L"4")\r
213                                 wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" WIPE 100 LOOP \r\nPLAY 1-1";\r
214                         else if(wcmd.substr(0, 1) == L"5")\r
215                                 wcmd = L"LOADBG 1-2 " + wcmd.substr(1, wcmd.length()-1) + L" LOOP \r\nPLAY 1-2";\r
216                         else if(wcmd.substr(0, 1) == L"6")\r
217                                 wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1";\r
218                         else if(wcmd.substr(0, 1) == L"7")\r
219                                 wcmd = L"LOAD 1-1 720p2500";\r
220                         else if(wcmd.substr(0, 1) == L"8")\r
221                                 wcmd = L"LOAD 1-1 #FFFFFFFF AUTOPLAY";\r
222                         else if(wcmd.substr(0, 1) == L"9")\r
223                                 wcmd = L"LOADBG 1-2 " + wcmd.substr(1, wcmd.length()-1) + L" [1.0-2.0] LOOP AUTOPLAY";\r
224 \r
225                         wcmd += L"\r\n";\r
226                         amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
227                 }\r
228         }\r
229         catch(const std::exception&)\r
230         {\r
231                 CASPAR_LOG(fatal) << "UNHANDLED EXCEPTION in main thread.";\r
232                 CASPAR_LOG_CURRENT_EXCEPTION();\r
233         }       \r
234         \r
235         CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";\r
236         Sleep(100); // CAPSAR_LOG is asynchronous. Try to get text in correct order.\r
237         std::wcout << L"Press Any Key To Exit.\n";\r
238         _getwch();\r
239         return 0;\r
240 }