/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Fabian 'x3n' Landau * Co-authors: * ... * */ #ifndef _TclThreadManager_H__ #define _TclThreadManager_H__ #include "CorePrereqs.h" #include #include #include #include #include #include #include "cpptcl/CppTcl.h" #include "core/OrxonoxClass.h" namespace orxonox { struct _CoreExport TclInterpreterBundle { unsigned int id_; std::list queue_; boost::mutex queueMutex_; Tcl::interpreter* interpreter_; std::string interpreterName_; boost::try_mutex interpreterMutex_; std::list queriers_; boost::mutex queriersMutex_; bool running_; boost::mutex runningMutex_; bool finished_; boost::mutex finishedMutex_; boost::condition finishedCondition_; }; class _CoreExport TclThreadManager : public OrxonoxClass { friend class IRC; friend class TclBind; public: TclThreadManager(Tcl::interpreter* interpreter); ~TclThreadManager(); static TclThreadManager& getInstance() { assert(singletonRef_s); return *singletonRef_s; } static unsigned int create(); static unsigned int createID(unsigned int threadID); static void destroy(unsigned int threadID); static void execute(unsigned int threadID, const std::string& command); static std::string query(unsigned int threadID, const std::string& command); static void status(); static void dump(unsigned int threadID); static void flush(unsigned int threadID); void error(const std::string& error); void debug(const std::string& error); virtual void tick(float dt); std::list getThreadList() const; private: TclThreadManager(const TclThreadManager& other); static void tcl_execute(Tcl::object const &args); static std::string tcl_query(int querierID, Tcl::object const &args); static std::string tcl_crossquery(int querierID, int threadID, Tcl::object const &args); static bool tcl_running(int threadID); Tcl::interpreter* createNewTclInterpreter(const std::string& threadID); TclInterpreterBundle* getInterpreterBundle(unsigned int threadID); std::string dumpList(const std::list& list); void pushCommandToQueue(const std::string& command); void forceCommandToFrontOfQueue(const std::string& command); std::string popCommandFromQueue(); bool queueIsEmpty(); void pushCommandToQueue(unsigned int threadID, const std::string& command); std::string popCommandFromQueue(unsigned int threadID); bool queueIsEmpty(unsigned int threadID); bool updateQueriersList(TclInterpreterBundle* querier, TclInterpreterBundle* target); std::string evalQuery(unsigned int querierID, const std::string& command); std::string evalQuery(unsigned int querierID, unsigned int threadID, const std::string& command); unsigned int threadCounter_; TclInterpreterBundle orxonoxInterpreterBundle_; std::map interpreterBundles_; boost::mutex bundlesMutex_; boost::condition fullQueueCondition_; boost::condition orxonoxEvalCondition_; #if (BOOST_VERSION >= 103500) boost::thread::id threadID_; #else boost::thread threadID_; #endif static TclThreadManager* singletonRef_s; }; _CoreExport void tclThread(TclInterpreterBundle* interpreterBundle, std::string command); } #endif /* _TclThreadManager_H__ */