summaryrefslogtreecommitdiff
path: root/lib/Main.cc
blob: 9f57472b3627323bc4b0620989f12205f74b116c (plain)
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
/*
 *  Baltisot
 *  Copyright (C) 1999-2008 Nicolas "Pixel" Noble
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifdef _WIN32
#include <windows.h>
#endif

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "Exceptions.h"
#include "Main.h"
#include "generic.h"
//#include "gettext.h"

Main::Main() : setted(false) {}

Main::~Main() {}

void Main::set_args(int a_argc, char ** a_argv, char ** a_enve) {
    if (setted) {
	return;
    }
    argc = a_argc;
    argv = a_argv;
    enve = a_enve;
    setted = true;
}

/*
_open_osfhandle
CreateFileMapping
*/

#define size_assert(c, s) if (!(sizeof(c) == (s))) { throw GeneralException(String("Sanity Check failure: sizeof(" # c ") == ") + (int) sizeof(c) + " and not " # s " as expected."); }
#define s_assert(c) if (!(c)) { throw GeneralException("Sanity Check failed: " # c " is false"); }

void Main::sanity_checks() throw (GeneralException) {
    size_assert(int8, 1);
    size_assert(int16, 2);
    size_assert(int32, 4);
    size_assert(int64, 8);
    size_assert(Uint8, 1);
    size_assert(Uint16, 2);
    size_assert(Uint32, 4);
    size_assert(Uint64, 8);
    size_assert(Byte, 1);
    size_assert(Word, 2);
    size_assert(DWord, 4);
    size_assert(float, 4);
    size_assert(double, 8);
}

int Main::truemain(Main * Application, int argc, char ** argv, char ** enve) {
    int r;
    
    try {
	sanity_checks();
	Application->set_args(argc, argv, enve);
	r = Application->startup();
    }
    catch (Exit e) {
	r = e.GetCode();
    }
    catch (GeneralException e) {
#ifdef _WIN32
	MessageBox(0, e.GetMsg(), "Application caused an exception", MB_ICONEXCLAMATION | MB_OK);
#endif
	Base::printm(M_ERROR, _("The application caused an exception: %s\n"), e.GetMsg());
	return -1;
    }
#define LET_EXCEPTIONS_GO
#ifndef LET_EXCEPTIONS_GO
    catch (...) {
	Base::printm(M_ERROR, _("The application caused an unknow exception\n"));
	return -1;
    }
#endif
    return r;
}