[1505] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Fabian 'x3n' Landau |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | #ifndef _TclThreadManager_H__ |
---|
| 30 | #define _TclThreadManager_H__ |
---|
| 31 | |
---|
[1535] | 32 | #include "CorePrereqs.h" |
---|
| 33 | |
---|
[3196] | 34 | #include <list> |
---|
[1505] | 35 | #include <map> |
---|
[3196] | 36 | #include <string> |
---|
[1535] | 37 | #include "core/OrxonoxClass.h" |
---|
[1505] | 38 | |
---|
| 39 | namespace orxonox |
---|
| 40 | { |
---|
[3264] | 41 | // Internal struct |
---|
| 42 | struct TclInterpreterBundle; |
---|
[1505] | 43 | |
---|
[1535] | 44 | class _CoreExport TclThreadManager : public OrxonoxClass |
---|
[1505] | 45 | { |
---|
[1747] | 46 | friend class IRC; |
---|
| 47 | friend class TclBind; |
---|
| 48 | |
---|
[1505] | 49 | public: |
---|
[1792] | 50 | TclThreadManager(Tcl::interpreter* interpreter); |
---|
| 51 | ~TclThreadManager(); |
---|
[1505] | 52 | |
---|
[1792] | 53 | static TclThreadManager& getInstance() { assert(singletonRef_s); return *singletonRef_s; } |
---|
| 54 | |
---|
[1505] | 55 | static unsigned int create(); |
---|
| 56 | static unsigned int createID(unsigned int threadID); |
---|
| 57 | static void destroy(unsigned int threadID); |
---|
| 58 | static void execute(unsigned int threadID, const std::string& command); |
---|
| 59 | static std::string query(unsigned int threadID, const std::string& command); |
---|
| 60 | static void status(); |
---|
| 61 | static void dump(unsigned int threadID); |
---|
| 62 | static void flush(unsigned int threadID); |
---|
| 63 | |
---|
[1747] | 64 | void error(const std::string& error); |
---|
| 65 | void debug(const std::string& error); |
---|
| 66 | |
---|
[2896] | 67 | void update(const Clock& time); |
---|
[1747] | 68 | |
---|
| 69 | std::list<unsigned int> getThreadList() const; |
---|
| 70 | |
---|
| 71 | private: |
---|
| 72 | TclThreadManager(const TclThreadManager& other); |
---|
| 73 | |
---|
[1505] | 74 | static void tcl_execute(Tcl::object const &args); |
---|
| 75 | static std::string tcl_query(int querierID, Tcl::object const &args); |
---|
| 76 | static std::string tcl_crossquery(int querierID, int threadID, Tcl::object const &args); |
---|
| 77 | static bool tcl_running(int threadID); |
---|
| 78 | |
---|
| 79 | Tcl::interpreter* createNewTclInterpreter(const std::string& threadID); |
---|
[3264] | 80 | Tcl::interpreter* getTclInterpreter(unsigned int threadID); |
---|
[1505] | 81 | TclInterpreterBundle* getInterpreterBundle(unsigned int threadID); |
---|
| 82 | std::string dumpList(const std::list<unsigned int>& list); |
---|
| 83 | |
---|
| 84 | void pushCommandToQueue(const std::string& command); |
---|
| 85 | void forceCommandToFrontOfQueue(const std::string& command); |
---|
| 86 | std::string popCommandFromQueue(); |
---|
| 87 | bool queueIsEmpty(); |
---|
| 88 | |
---|
| 89 | void pushCommandToQueue(unsigned int threadID, const std::string& command); |
---|
| 90 | std::string popCommandFromQueue(unsigned int threadID); |
---|
| 91 | bool queueIsEmpty(unsigned int threadID); |
---|
| 92 | |
---|
| 93 | bool updateQueriersList(TclInterpreterBundle* querier, TclInterpreterBundle* target); |
---|
| 94 | |
---|
| 95 | std::string evalQuery(unsigned int querierID, const std::string& command); |
---|
| 96 | std::string evalQuery(unsigned int querierID, unsigned int threadID, const std::string& command); |
---|
| 97 | |
---|
| 98 | unsigned int threadCounter_; |
---|
[3264] | 99 | TclInterpreterBundle* orxonoxInterpreterBundle_; |
---|
[1505] | 100 | std::map<unsigned int, TclInterpreterBundle*> interpreterBundles_; |
---|
[1792] | 101 | |
---|
| 102 | static TclThreadManager* singletonRef_s; |
---|
[1505] | 103 | }; |
---|
| 104 | |
---|
| 105 | _CoreExport void tclThread(TclInterpreterBundle* interpreterBundle, std::string command); |
---|
| 106 | } |
---|
| 107 | |
---|
| 108 | #endif /* _TclThreadManager_H__ */ |
---|