Context.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00042
00043
00044 #ifndef _CONTEXT_H
00045 #define _CONTEXT_H
00046
00047 #include "../dllinclude.h"
00048
00049 #include "Node.h"
00050 #include "Module.h"
00051 #include "NodeFactoryContainer.h"
00052 #include "VideoUser.h"
00053
00054
00055 namespace ot {
00056
00058 typedef std::map<std::string, Module *> ModuleMap;
00059
00092 class OPENTRACKER_API Context
00093 {
00094
00095 protected:
00097 ModuleMap modules;
00099 Node* rootNode;
00101 NodeFactoryContainer factory;
00103 bool cleanUp;
00105 std::string file;
00107 std::vector<std::string> directories;
00109 std::string rootNamespace;
00110
00111 VideoUserVector videoUsers;
00112
00113
00114 public:
00115
00120 Context( int init = 0 );
00123 virtual ~Context();
00124
00127 void addFactory(NodeFactory& newfactory);
00130 void removeFactory(NodeFactory & factory);
00131
00135 void addModule(const std::string & name, Module & module);
00136
00140 Module * getModule(const std::string & name);
00141
00144 void removeModule(Module & module);
00145
00156 Node * createNode(const std::string & name, StringTable & attributes);
00157
00162 Node * getRootNode();
00163
00169 Node * findNode(const std::string & id);
00170
00174 void parseConfiguration(const std::string& filename);
00175
00177 void start();
00178
00181 void pushEvents();
00182
00184 void pullEvents();
00185
00188 void run();
00189
00190 void runAtRate(double rate);
00191
00194 int stop();
00195
00197 void close();
00198
00202 void addDirectoryFirst( const std::string & dir );
00203
00207 void addDirectoryLast( const std::string & dir );
00208
00212 void removeDirectory( const std::string & dir );
00213
00222 bool findFile( const std::string & filename, std::string & fullname );
00223
00228 const std::string & getRootNamespace();
00229
00230
00232 void newVideoFrame(const unsigned char* image, int width, int height, PIXEL_FORMAT format);
00233
00234
00236 void registerVideoUser(VideoUser* videoUser);
00237
00238
00240 void unregisterVideoUser(VideoUser* videoUser);
00241
00242
00243 friend class ConfigurationParser;
00244 };
00245
00246
00247 inline const std::string & Context::getRootNamespace()
00248 {
00249 return rootNamespace;
00250 }
00251
00252 }
00253
00254 #endif
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266
00267
00268
00269
00270