Refactor BeRTOS to be in his own directory.
[bertos.git] / bertos / emul / emul.cpp
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2006 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 2000, 2001 Bernardo Innocenti <bernie@codewiz.org>
31  *
32  * -->
33  *
34  * \version $Id$
35  *
36  * \author Bernardo Innocenti <bernie@develer.com>
37  *
38  * \brief Qt-based emulator framework for embedded applications (implementation)
39  */
40
41 /*#*
42  *#* $Log$
43  *#* Revision 1.6  2006/05/28 12:17:57  bernie
44  *#* Drop almost all the Qt3 cruft.
45  *#*
46  *#* Revision 1.5  2006/05/27 22:30:56  bernie
47  *#* Add some delay to slow things down.
48  *#*
49  *#* Revision 1.4  2006/02/24 01:35:40  bernie
50  *#* Update for new emulator.
51  *#*
52  *#* Revision 1.3  2006/02/20 02:00:40  bernie
53  *#* Port to Qt 4.1.
54  *#*
55  *#* Revision 1.2  2006/01/16 03:51:51  bernie
56  *#* Fix boilerplate.
57  *#*
58  *#* Revision 1.1  2006/01/16 03:37:12  bernie
59  *#* Add emulator skeleton.
60  *#*
61  *#*/
62
63 #include "emul.h"
64 #include "emulwin.h"
65 #include <cfg/module.h>
66
67 #include <appconfig.h>
68 #if CONFIG_KERNEL
69         #include <config_kern.h>
70 #endif
71
72
73 #include <cstdlib> // std::exit()
74
75 #include <QtGui/qapplication.h>
76
77
78 /// The global emulator instance.
79 Emulator *emul;
80
81 #if CONFIG_KERNEL
82         #include <mware/list.h>
83
84         /// List of process stacks
85         List StackFreeList;
86
87         // HACK: Reserve 64KB of stack space for kernel processes
88         const int NPROC = 8;
89         int stacks[NPROC][(64 * 1024) / sizeof(int)];
90 #endif
91
92 Emulator::Emulator(int &argc, char **argv) :
93         emulApp(new QApplication(argc, argv)),
94         emulWin(new EmulWin(this))
95 {
96         emulWin->show();
97 }
98
99
100 Emulator::~Emulator()
101 {
102         // we don't delete emulWin because it automatically
103         // deletes itself when closed
104         delete emulApp;
105 }
106
107
108 NORETURN void Emulator::quit()
109 {
110         // WHAT A KLUDGE!
111         this->~Emulator();
112         emul = NULL;
113
114         // do we have a better way to shut down the emulation?
115         exit(0);
116 }
117
118 MOD_DEFINE(emul)
119
120 /// Main emulator entry point.
121 extern "C" void emul_init(int *argc, char *argv[])
122 {
123         // setup global emulator pointer
124         emul = new Emulator(*argc, argv);
125
126 #if CONFIG_KERNEL
127         LIST_INIT(&StackFreeList);
128         for (int i = 0; i < NPROC; i++)
129                 ADDTAIL(&StackFreeList, (Node *)stacks[i]);
130 #endif
131
132         MOD_INIT(emul);
133 }
134
135 extern "C" void emul_cleanup()
136 {
137         MOD_CLEANUP(emul);
138
139         delete emul;
140         emul = NULL;
141 }
142
143 extern "C" void emul_idle()
144 {
145         // We process GUI events when the application is idle.
146         emul->emulApp->processEvents();
147         usleep(1000);
148 }
149