]> 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 \r
40 #include <core/mixer/gpu/ogl_device.h>\r
41 \r
42 #include <protocol/amcp/AMCPProtocolStrategy.h>\r
43 \r
44 #include <modules/bluefish/bluefish.h>\r
45 #include <modules/decklink/decklink.h>\r
46 #include <modules/flash/flash.h>\r
47 #include <modules/ffmpeg/ffmpeg.h>\r
48 #include <modules/image/image.h>\r
49 \r
50 #include <common/env.h>\r
51 #include <common/exception/win32_exception.h>\r
52 #include <common/exception/exceptions.h>\r
53 #include <common/log/log.h>\r
54 #include <common/os/windows/current_version.h>\r
55 #include <common/os/windows/system_info.h>\r
56 #include <common/utility/assert.h>\r
57 \r
58 #include <tbb/task_scheduler_observer.h>\r
59 #include <tbb/task_scheduler_init.h>\r
60 \r
61 #include <boost/foreach.hpp>\r
62 \r
63 // NOTE: This is needed in order to make CComObject work since this is not a real ATL project.\r
64 CComModule _AtlModule;\r
65 extern __declspec(selectany) CAtlModule* _pAtlModule = &_AtlModule;\r
66 \r
67 void setup_console_window()\r
68 {        \r
69         auto hOut = GetStdHandle(STD_OUTPUT_HANDLE);\r
70 \r
71         // Disable close button in console to avoid shutdown without cleanup.\r
72         EnableMenuItem(GetSystemMenu(GetConsoleWindow(), FALSE), SC_CLOSE , MF_GRAYED);\r
73         DrawMenuBar(GetConsoleWindow());\r
74 \r
75         // Configure console size and position.\r
76         auto coord = GetLargestConsoleWindowSize(hOut);\r
77         coord.X /= 2;\r
78 \r
79         SetConsoleScreenBufferSize(hOut, coord);\r
80 \r
81         SMALL_RECT DisplayArea = {0, 0, 0, 0};\r
82         DisplayArea.Right = coord.X-1;\r
83         DisplayArea.Bottom = (coord.Y-1)/2;\r
84         SetConsoleWindowInfo(hOut, TRUE, &DisplayArea);\r
85                 \r
86         // Set console title.\r
87         std::wstringstream str;\r
88         str << "CasparCG Server " << caspar::env::version();\r
89 #ifdef COMPILE_RELEASE\r
90         str << " Release";\r
91 #elif  COMPILE_PROFILE\r
92         str << " Profile";\r
93 #elif  COMPILE_DEVELOP\r
94         str << " Develop";\r
95 #elif  COMPILE_DEBUG\r
96         str << " Debug";\r
97 #endif\r
98         SetConsoleTitle(str.str().c_str());\r
99 }\r
100 \r
101 void print_info()\r
102 {\r
103         CASPAR_LOG(info) << L"Copyright (c) 2010 Sveriges Television AB, www.casparcg.com, <info@casparcg.com>";\r
104         CASPAR_LOG(info) << L"Starting CasparCG Video and Graphics Playout Server " << caspar::env::version();\r
105         CASPAR_LOG(info) << L"on " << caspar::get_win_product_name() << L" " << caspar::get_win_sp_version();\r
106         CASPAR_LOG(info) << caspar::get_cpu_info();\r
107         CASPAR_LOG(info) << caspar::get_system_product_name();\r
108         CASPAR_LOG(info) << L"Flash " << caspar::get_flash_version();\r
109         CASPAR_LOG(info) << L"Flash-Template-Host " << caspar::get_cg_version();\r
110         CASPAR_LOG(info) << L"FreeImage " << caspar::get_image_version();\r
111         \r
112         CASPAR_LOG(info) << L"Decklink " << caspar::get_decklink_version();\r
113         BOOST_FOREACH(auto& device, caspar::get_decklink_device_list())\r
114                 CASPAR_LOG(info) << device;\r
115                 \r
116         CASPAR_LOG(info) << L"Bluefish " << caspar::get_bluefish_version();\r
117         BOOST_FOREACH(auto& device, caspar::get_bluefish_device_list())\r
118                 CASPAR_LOG(info) << device;\r
119 \r
120         CASPAR_LOG(info) << L"FFMPEG-avcodec "  << caspar::get_avcodec_version();\r
121         CASPAR_LOG(info) << L"FFMPEG-avformat " << caspar::get_avformat_version();\r
122         CASPAR_LOG(info) << L"FFMPEG-avfilter " << caspar::get_avfilter_version();\r
123         CASPAR_LOG(info) << L"FFMPEG-avutil " << caspar::get_avutil_version();\r
124         CASPAR_LOG(info) << L"FFMPEG-swscale "  << caspar::get_swscale_version();\r
125         CASPAR_LOG(info) << L"OpenGL " << caspar::core::ogl_device::get_version() << "\n\n";\r
126 }\r
127  \r
128 int main(int argc, wchar_t* argv[])\r
129 {       \r
130         static_assert(sizeof(void*) == 4, "64-bit code generation is not supported.");\r
131         \r
132         CASPAR_LOG(info) << L"THIS IS AN UNSTABLE BUILD";\r
133 \r
134         // Set debug mode.\r
135         #ifdef _DEBUG\r
136                 _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF | _CRTDBG_CHECK_ALWAYS_DF );\r
137                 _CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_DEBUG );\r
138                 _CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_DEBUG );\r
139                 _CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_DEBUG );\r
140         #endif\r
141 \r
142         // Increase process priotity.\r
143         SetPriorityClass(GetCurrentProcess(), ABOVE_NORMAL_PRIORITY_CLASS);\r
144 \r
145         // Install structured exception handler.\r
146         caspar::win32_exception::install_handler();\r
147                         \r
148         // Increase time precision. This will increase accuracy of function like Sleep(1) from 10 ms to 1 ms.\r
149         struct inc_prec\r
150         {\r
151                 inc_prec(){timeBeginPeriod(1);}\r
152                 ~inc_prec(){timeEndPeriod(1);}\r
153         } inc_prec;     \r
154 \r
155         // Install unstructured exception handlers into all tbb threads.\r
156         struct tbb_thread_installer : public tbb::task_scheduler_observer\r
157         {\r
158                 tbb_thread_installer(){observe(true);}\r
159                 void on_scheduler_entry(bool is_worker){caspar::win32_exception::install_handler();}\r
160         } tbb_thread_installer;\r
161         \r
162         try \r
163         {\r
164                 // Configure environment properties from configuration.\r
165                 caspar::env::configure("casparcg.config");\r
166 \r
167         #ifdef _DEBUG\r
168                 if(caspar::env::properties().get("configuration.debugging.remote", false))\r
169                         MessageBox(nullptr, TEXT("Now is the time to connect for remote debugging..."), TEXT("Debug"), MB_OK | MB_TOPMOST);\r
170         #endif   \r
171 \r
172                 // Start logging to file.\r
173                 caspar::log::add_file_sink(caspar::env::log_folder());\r
174                 \r
175                 // Setup console window.\r
176                 setup_console_window();\r
177 \r
178                 // Print environment information.\r
179                 print_info();\r
180                                 \r
181                 // Create server object which initializes channels, protocols and controllers.\r
182                 caspar::server caspar_server;\r
183                                 \r
184                 // Create a amcp parser for console commands.\r
185                 caspar::protocol::amcp::AMCPProtocolStrategy amcp(caspar_server.get_channels());\r
186 \r
187                 // Create a dummy client which prints amcp responses to console.\r
188                 auto dummy = std::make_shared<caspar::IO::ConsoleClientInfo>();\r
189 \r
190                 bool is_running = true;\r
191                 while(is_running)\r
192                 {\r
193                         std::wstring wcmd;\r
194                         std::getline(std::wcin, wcmd); // TODO: It's blocking...\r
195 \r
196                         is_running = wcmd != L"exit" && wcmd != L"q";\r
197                         if(wcmd.substr(0, 1) == L"1")\r
198                                 wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" SLIDE 100 LOOP \r\nPLAY 1-1";\r
199                         else if(wcmd.substr(0, 1) == L"2")\r
200                                 wcmd = L"MIXER 1-0 VIDEO IS_KEY 1";\r
201                         else if(wcmd.substr(0, 1) == L"3")\r
202                                 wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1";\r
203                         else if(wcmd.substr(0, 1) == L"X")\r
204                         {\r
205                                 int num = 0;\r
206                                 std::wstring file;\r
207                                 try\r
208                                 {\r
209                                         num = boost::lexical_cast<int>(wcmd.substr(1, 2));\r
210                                         file = wcmd.substr(4, wcmd.length()-1);\r
211                                 }\r
212                                 catch(...)\r
213                                 {\r
214                                         num = boost::lexical_cast<int>(wcmd.substr(1, 1));\r
215                                         file = wcmd.substr(3, wcmd.length()-1);\r
216                                 }\r
217 \r
218                                 int n = 0;\r
219                                 int num2 = num;\r
220                                 while(num2 > 0)\r
221                                 {\r
222                                         num2 >>= 1;\r
223                                         n++;\r
224                                 }\r
225 \r
226                                 wcmd = L"MIXER 1 VIDEO GRID " + boost::lexical_cast<std::wstring>(n);\r
227 \r
228                                 for(int i = 1; i <= num; ++i)\r
229                                         wcmd += L"\r\nPLAY 1-" + boost::lexical_cast<std::wstring>(i) + L" " + file + L" LOOP";// + L" SLIDE 100 LOOP";\r
230                         }\r
231 \r
232                         wcmd += L"\r\n";\r
233                         amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
234                 }\r
235         }\r
236         catch(...)\r
237         {\r
238                 CASPAR_LOG(fatal) << "UNHANDLED EXCEPTION in main thread.";\r
239                 CASPAR_LOG_CURRENT_EXCEPTION();\r
240         }       \r
241         \r
242         CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";\r
243         Sleep(100); // CAPSAR_LOG is asynchronous. Try to get text in correct order.\r
244         system("pause");\r
245         return 0;\r
246 }