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