Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core3/src/core/TclThreadManager.h @ 1682

Last change on this file since 1682 was 1682, checked in by landauf, 16 years ago
  • added several "delete"s to the destructors of some core classes.
  • added Identifier::destroyAllIdentifiers() function, maybe this comes in handy in the future
  • moved XMLPort param and object containers from ClassIdentifier to Identifier
  • Property svn:eol-style set to native
File size: 4.6 KB
Line 
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
32#include "CorePrereqs.h"
33
34#include <queue>
35#include <map>
36#include <list>
37
38#include <boost/thread/mutex.hpp>
39#include <boost/thread/condition.hpp>
40#include <boost/thread/thread.hpp>
41
42#include "cpptcl/CppTcl.h"
43#include "core/OrxonoxClass.h"
44
45namespace orxonox
46{
47    class boost::thread;
48
49    struct _CoreExport TclInterpreterBundle
50    {
51        unsigned int id_;
52
53        std::list<std::string> queue_;
54        boost::mutex queueMutex_;
55
56        Tcl::interpreter* interpreter_;
57        std::string interpreterName_;
58        boost::try_mutex interpreterMutex_;
59
60        std::list<unsigned int> queriers_;
61        boost::mutex queriersMutex_;
62
63        bool running_;
64        boost::mutex runningMutex_;
65
66        bool finished_;
67        boost::mutex finishedMutex_;
68        boost::condition finishedCondition_;
69    };
70
71    class _CoreExport TclThreadManager : public OrxonoxClass
72    {
73        friend class IRC;
74        friend class TclBind;
75
76        public:
77            static TclThreadManager& getInstance();
78
79            static unsigned int create();
80            static unsigned int createID(unsigned int threadID);
81            static void destroy(unsigned int threadID);
82            static void execute(unsigned int threadID, const std::string& command);
83            static std::string query(unsigned int threadID, const std::string& command);
84            static void status();
85            static void dump(unsigned int threadID);
86            static void flush(unsigned int threadID);
87
88            void error(const std::string& error);
89            void debug(const std::string& error);
90
91            virtual void tick(float dt);
92
93            std::list<unsigned int> getThreadList() const;
94
95        private:
96            TclThreadManager();
97            TclThreadManager(const TclThreadManager& other);
98            ~TclThreadManager();
99
100            static void tcl_execute(Tcl::object const &args);
101            static std::string tcl_query(int querierID, Tcl::object const &args);
102            static std::string tcl_crossquery(int querierID, int threadID, Tcl::object const &args);
103            static bool tcl_running(int threadID);
104
105            Tcl::interpreter* createNewTclInterpreter(const std::string& threadID);
106            TclInterpreterBundle* getInterpreterBundle(unsigned int threadID);
107            std::string dumpList(const std::list<unsigned int>& list);
108
109            void pushCommandToQueue(const std::string& command);
110            void forceCommandToFrontOfQueue(const std::string& command);
111            std::string popCommandFromQueue();
112            bool queueIsEmpty();
113
114            void pushCommandToQueue(unsigned int threadID, const std::string& command);
115            std::string popCommandFromQueue(unsigned int threadID);
116            bool queueIsEmpty(unsigned int threadID);
117
118            bool updateQueriersList(TclInterpreterBundle* querier, TclInterpreterBundle* target);
119
120            std::string evalQuery(unsigned int querierID, const std::string& command);
121            std::string evalQuery(unsigned int querierID, unsigned int threadID, const std::string& command);
122
123            unsigned int threadCounter_;
124            TclInterpreterBundle orxonoxInterpreterBundle_;
125            std::map<unsigned int, TclInterpreterBundle*> interpreterBundles_;
126            boost::mutex bundlesMutex_;
127            boost::condition fullQueueCondition_;
128            boost::condition orxonoxEvalCondition_;
129#if (BOOST_VERSION >= 103500)
130            boost::thread::id threadID_;
131#else
132            boost::thread threadID_;
133#endif
134    };
135
136    _CoreExport void tclThread(TclInterpreterBundle* interpreterBundle, std::string command);
137}
138
139#endif /* _TclThreadManager_H__ */
Note: See TracBrowser for help on using the repository browser.