[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 | |
---|
[3304] | 34 | #include <cassert> |
---|
[3359] | 35 | #include <list> |
---|
[1505] | 36 | #include <map> |
---|
[3196] | 37 | #include <string> |
---|
[1505] | 38 | |
---|
[3318] | 39 | #include "OrxonoxClass.h" |
---|
| 40 | |
---|
[1505] | 41 | namespace orxonox |
---|
| 42 | { |
---|
[1535] | 43 | class _CoreExport TclThreadManager : public OrxonoxClass |
---|
[1505] | 44 | { |
---|
[1747] | 45 | friend class TclBind; |
---|
[3321] | 46 | friend _CoreExport void tclThread(TclInterpreterBundle* bundle, std::string command); |
---|
[1747] | 47 | |
---|
[1505] | 48 | public: |
---|
[1792] | 49 | TclThreadManager(Tcl::interpreter* interpreter); |
---|
[3318] | 50 | virtual ~TclThreadManager(); |
---|
[1505] | 51 | |
---|
[3318] | 52 | static TclThreadManager& getInstance() { assert(TclThreadManager::singletonPtr_s); return *TclThreadManager::singletonPtr_s; } |
---|
[1792] | 53 | |
---|
[3318] | 54 | static unsigned int create(); |
---|
| 55 | static Tcl::interpreter* createWithId(unsigned int id); |
---|
| 56 | static void destroy(unsigned int id); |
---|
| 57 | static void execute(unsigned int target_id, const std::string& command); |
---|
| 58 | static std::string query(unsigned int target_id, const std::string& command); |
---|
[1505] | 59 | |
---|
[1747] | 60 | void error(const std::string& error); |
---|
| 61 | void debug(const std::string& error); |
---|
| 62 | |
---|
[2896] | 63 | void update(const Clock& time); |
---|
[1747] | 64 | |
---|
| 65 | std::list<unsigned int> getThreadList() const; |
---|
| 66 | |
---|
| 67 | private: |
---|
[3318] | 68 | static void tcl_execute(const Tcl::object& args); |
---|
| 69 | static void tcl_crossexecute(int target_id, const Tcl::object& args); |
---|
| 70 | static std::string tcl_query(int source_id, const Tcl::object& args); |
---|
| 71 | static std::string tcl_crossquery(int source_id, int target_id, const Tcl::object& args); |
---|
| 72 | static bool tcl_running(int id); |
---|
[1747] | 73 | |
---|
[3318] | 74 | void _execute(unsigned int target_id, const std::string& command); |
---|
| 75 | std::string _query(unsigned int source_id, unsigned int target_id, const std::string& command, bool bUseCommandExecutor = false); |
---|
[1505] | 76 | |
---|
[3318] | 77 | TclInterpreterBundle* getInterpreterBundle(unsigned int id); |
---|
[1505] | 78 | std::string dumpList(const std::list<unsigned int>& list); |
---|
| 79 | |
---|
[3318] | 80 | std::string eval(TclInterpreterBundle* bundle, const std::string& command); |
---|
[1505] | 81 | |
---|
[3318] | 82 | static TclThreadManager* singletonPtr_s; ///< Singleton pointer |
---|
[1505] | 83 | |
---|
[3318] | 84 | unsigned int numInterpreterBundles_; ///< Number of created Tcl-interpreters (only used for auto-numbered interpreters, not affected by @ref createWithId) |
---|
| 85 | std::map<unsigned int, TclInterpreterBundle*> interpreterBundles_; ///< A map containing all Tcl-interpreters |
---|
| 86 | boost::shared_mutex* interpreterBundlesMutex_; ///< A mutex used to synchronize threads when accessing @ref interpreterBundles_ |
---|
| 87 | TclThreadList<std::string>* messageQueue_; ///< A queue to pass messages from Tcl-threads to the main thread |
---|
| 88 | boost::mutex* mainInterpreterMutex_; ///< A mutex to synchronize queries to the main interpreter |
---|
[1505] | 89 | }; |
---|
| 90 | |
---|
[3318] | 91 | _CoreExport void tclThread(TclInterpreterBundle* bundle, std::string command); |
---|
[1505] | 92 | } |
---|
| 93 | |
---|
| 94 | #endif /* _TclThreadManager_H__ */ |
---|