]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/server.cpp
Fix compilation on OS X for RTLD_DEEPBIND.
[xonotic/netradiant.git] / radiant / server.cpp
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #include "server.h"
23 #include "globaldefs.h"
24
25 #include "debugging/debugging.h"
26 #include "warnings.h"
27
28 #include <vector>
29 #include <map>
30 #include "os/path.h"
31
32 #include "modulesystem.h"
33
34 class RadiantModuleServer : public ModuleServer
35 {
36 typedef std::pair<CopiedString, int> ModuleType;
37 typedef std::pair<ModuleType, CopiedString> ModuleKey;
38 typedef std::map<ModuleKey, Module*> Modules_;
39 Modules_ m_modules;
40 bool m_error;
41
42 public:
43 RadiantModuleServer() : m_error( false ){
44 }
45
46 void setError( bool error ){
47         m_error = error;
48 }
49 bool getError() const {
50         return m_error;
51 }
52
53 TextOutputStream& getOutputStream(){
54         return globalOutputStream();
55 }
56 TextOutputStream& getErrorStream(){
57         return globalErrorStream();
58 }
59 DebugMessageHandler& getDebugMessageHandler(){
60         return globalDebugMessageHandler();
61 }
62
63 void registerModule( const char* type, int version, const char* name, Module& module ){
64         if ( !m_modules.insert( Modules_::value_type( ModuleKey( ModuleType( type, version ), name ), &module ) ).second ) {
65                 globalErrorStream() << "module already registered: type=" << makeQuoted( type ) << " name=" << makeQuoted( name ) << "\n";
66         }
67         else
68         {
69                 globalOutputStream() << "Module Registered: type=" << makeQuoted( type ) << " version=" << makeQuoted( version ) << " name=" << makeQuoted( name ) << "\n";
70         }
71 }
72
73 Module* findModule( const char* type, int version, const char* name ) const {
74         Modules_::const_iterator i = m_modules.find( ModuleKey( ModuleType( type, version ), name ) );
75         if ( i != m_modules.end() ) {
76                 return ( *i ).second;
77         }
78         return 0;
79 }
80
81 void foreachModule( const char* type, int version, const Visitor& visitor ){
82         for ( Modules_::const_iterator i = m_modules.begin(); i != m_modules.end(); ++i )
83         {
84                 if ( string_equal( ( *i ).first.first.first.c_str(), type ) ) {
85                         visitor.visit( ( *i ).first.second.c_str(), *( *i ).second );
86                 }
87         }
88 }
89 };
90
91
92 #if GDEF_OS_WINDOWS
93
94 #include <windows.h>
95
96 const int FORMAT_BUFSIZE = 2048;
97 const char* FormatGetLastError(){
98         static char buf[FORMAT_BUFSIZE];
99         FormatMessage(
100                 FORMAT_MESSAGE_FROM_SYSTEM |
101                 FORMAT_MESSAGE_IGNORE_INSERTS,
102                 NULL,
103                 GetLastError(),
104                 MAKELANGID( LANG_NEUTRAL, SUBLANG_DEFAULT ), // Default language
105                 buf,
106                 FORMAT_BUFSIZE,
107                 NULL
108                 );
109         return buf;
110 }
111
112 class DynamicLibrary
113 {
114 HMODULE m_library;
115 public:
116 typedef int ( __stdcall * FunctionPointer )();
117
118 DynamicLibrary( const char* filename ){
119         m_library = LoadLibrary( filename );
120         if ( m_library == 0 ) {
121                 globalErrorStream() << "LoadLibrary failed: '" << filename << "'\n";
122                 globalErrorStream() << "GetLastError: " << FormatGetLastError();
123         }
124 }
125 ~DynamicLibrary(){
126         if ( !failed() ) {
127                 FreeLibrary( m_library );
128         }
129 }
130 bool failed(){
131         return m_library == 0;
132 }
133 FunctionPointer findSymbol( const char* symbol ){
134         FunctionPointer address = (FunctionPointer) GetProcAddress( m_library, symbol );
135         if ( address == 0 ) {
136                 globalErrorStream() << "GetProcAddress failed: '" << symbol << "'\n";
137                 globalErrorStream() << "GetLastError: " << FormatGetLastError();
138         }
139         return address;
140 }
141 };
142
143 #elif GDEF_OS_POSIX
144
145 #include <dlfcn.h>
146
147 #ifndef RTLD_DEEPBIND
148 #define RTLD_DEEPBIND 0
149 #endif
150
151 class DynamicLibrary {
152         void *m_library;
153 public:
154 typedef int ( *FunctionPointer )();
155
156 DynamicLibrary( const char* filename ){
157         m_library = dlopen( filename, RTLD_NOW );
158 }
159 ~DynamicLibrary(){
160         if ( !failed() ) {
161                 dlclose( m_library );
162         }
163 }
164 bool failed(){
165         return m_library == 0;
166 }
167 FunctionPointer findSymbol( const char* symbol ){
168         FunctionPointer p = (FunctionPointer)dlsym( m_library, symbol );
169         if ( p == 0 ) {
170                 const char* error = reinterpret_cast<const char*>( dlerror() );
171                 if ( error != 0 ) {
172                         globalErrorStream() << error;
173                 }
174         }
175         return p;
176 }
177 };
178
179 #else
180 #error "unsupported platform"
181 #endif
182
183 class DynamicLibraryModule
184 {
185 typedef void ( RADIANT_DLLIMPORT * RegisterModulesFunc )( ModuleServer& server );
186 DynamicLibrary m_library;
187 RegisterModulesFunc m_registerModule;
188 public:
189 DynamicLibraryModule( const char* filename )
190         : m_library( filename ), m_registerModule( 0 ){
191         if ( !m_library.failed() ) {
192                 m_registerModule = reinterpret_cast<RegisterModulesFunc>( m_library.findSymbol( "Radiant_RegisterModules" ) );
193 #if 0
194                 if ( !m_registerModule ) {
195                         m_registerModule = reinterpret_cast<RegisterModulesFunc>( m_library.findSymbol( "Radiant_RegisterModules@4" ) );
196                 }
197 #endif
198         }
199 }
200 bool failed(){
201         return m_registerModule == 0;
202 }
203 void registerModules( ModuleServer& server ){
204         m_registerModule( server );
205 }
206 };
207
208
209 class Libraries
210 {
211 typedef std::vector<DynamicLibraryModule*> libraries_t;
212 libraries_t m_libraries;
213
214 public:
215 ~Libraries(){
216         release();
217 }
218 void registerLibrary( const char* filename, ModuleServer& server ){
219         DynamicLibraryModule* library = new DynamicLibraryModule( filename );
220
221         if ( library->failed() ) {
222                 delete library;
223         }
224         else
225         {
226                 m_libraries.push_back( library );
227                 library->registerModules( server );
228         }
229 }
230 void release(){
231         for ( libraries_t::iterator i = m_libraries.begin(); i != m_libraries.end(); ++i )
232         {
233                 delete *i;
234         }
235 }
236 void clear(){
237         m_libraries.clear();
238 }
239 };
240
241
242 Libraries g_libraries;
243 RadiantModuleServer g_server;
244
245 ModuleServer& GlobalModuleServer_get(){
246         return g_server;
247 }
248
249 void GlobalModuleServer_loadModule( const char* filename ){
250         g_libraries.registerLibrary( filename, g_server );
251 }
252
253 void GlobalModuleServer_Initialise(){
254 }
255
256 void GlobalModuleServer_Shutdown(){
257 }