1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/*
Copyright (C) 2009 Red Hat, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#include "common.h"
#include <fstream>
#include <windows.h>
extern "C" {
#include "pthread.h"
}
#include "application.h"
#include "debug.h"
#include "utils.h"
HINSTANCE instance = NULL;
static void init_winsock()
{
WSADATA wsaData;
int res;
if ((res = WSAStartup(MAKEWORD(2, 2), &wsaData)) != 0) {
THROW("WSAStartup failed %d", res);
}
}
char* version_string = "???";
static char _version_string[40];
static void init_version_string()
{
DWORD handle;
DWORD verrsion_inf_size = GetFileVersionInfoSizeA(__argv[0], &handle);
if (verrsion_inf_size == 0) {
return;
}
AutoArray<uint8_t> info_buf (new uint8_t[verrsion_inf_size]);
if (!GetFileVersionInfoA(__argv[0], handle, verrsion_inf_size, info_buf.get())) {
return;
}
UINT size;
VS_FIXEDFILEINFO *file_info;
if (!VerQueryValueA(info_buf.get(), "\\", (VOID**)&file_info, &size) ||
size < sizeof(VS_FIXEDFILEINFO)) {
return;
}
sprintf(_version_string, "%d.%d.%d.%d",
file_info->dwFileVersionMS >> 16,
file_info->dwFileVersionMS & 0x0ffff,
file_info->dwFileVersionLS >> 16,
file_info->dwFileVersionLS & 0x0ffff);
version_string = _version_string;
}
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
int exit_val;
instance = hInstance;
try {
init_version_string();
pthread_win32_process_attach_np();
init_winsock();
exit_val = Application::main(__argc, __argv, version_string);
LOG_INFO("Spice client terminated (exitcode = %d)", exit_val);
} catch (Exception& e) {
LOG_ERROR("unhandle exception: %s", e.what());
exit_val = e.get_error_code();
} catch (std::exception& e) {
LOG_ERROR("unhandle exception: %s", e.what());
exit_val = SPICEC_ERROR_CODE_ERROR;
} catch (...) {
LOG_ERROR("unhandled exception");
exit_val = SPICEC_ERROR_CODE_ERROR;
}
spice_log_cleanup();
pthread_win32_process_detach_np();
return exit_val;
}
|