⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 controltaskserver.hpp

📁 机器人开源项目orocos的源代码
💻 HPP
字号:
/***************************************************************************  tag: Peter Soetens  Wed Jan 18 14:09:48 CET 2006  ControlTaskServer.hpp                         ControlTaskServer.hpp -  description                           -------------------    begin                : Wed January 18 2006    copyright            : (C) 2006 Peter Soetens    email                : peter.soetens@fmtc.be  *************************************************************************** *   This library 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;                 * *   version 2 of the License.                                             * *                                                                         * *   As a special exception, you may use this file as part of a free       * *   software library without restriction.  Specifically, if other files   * *   instantiate templates or use macros or inline functions from this     * *   file, or you compile this file and link it with other files to        * *   produce an executable, this file does not by itself cause the         * *   resulting executable to be covered by the GNU General Public          * *   License.  This exception does not however invalidate any other        * *   reasons why the executable file might be covered by the GNU General   * *   Public License.                                                       * *                                                                         * *   This library 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     * *   Lesser General Public License for more details.                       * *                                                                         * *   You should have received a copy of the GNU General Public             * *   License along with this library; if not, write to the Free Software   * *   Foundation, Inc., 59 Temple Place,                                    * *   Suite 330, Boston, MA  02111-1307  USA                                * *                                                                         * ***************************************************************************/ #ifndef ORO_CORBA_CONTROLTASK_SERVER_HPP #define ORO_CORBA_CONTROLTASK_SERVER_HPP #include <map>#include "../rtt-config.h"#include <tao/corba.h>#include "../TaskContext.hpp"#include "ApplicationServer.hpp"#include "ControlTaskS.h"#include "../ActivityInterface.hpp"namespace RTT{namespace Corba{    class OrbRunner;    /**     * This class manages the creation of TaskContext Corba Servers     * and a Corba Object Request Broker (Orb) which executes the servers.     * The Orb may be run from the main thread or in its own thread.     * @ingroup CompIDL     */    class ControlTaskServer        : public ApplicationServer    {    protected:        friend class OrbRunner;        typedef std::map<TaskContext*, ControlTaskServer*> ServerMap;        static ServerMap servers;        static ActivityInterface* orbrunner;        /**         * Private constructor which creates a new servant.         */        ControlTaskServer(TaskContext* taskcontext, bool use_naming);        Corba::ControlTask_var mtask;        TaskContext* mtaskcontext;        bool muse_naming;      /**       * When a ControlTaskServer is destroyed, the object reference       * is removed from the Naming Service and the servant is deleted.       */      ~ControlTaskServer();        /**         * Internal shutdown function, used         * by both thread and ShutdownOrb.         */        static void DoShutdownOrb(bool wait_for_completion = true);    public:        /**         * Invoke this method once to initialise the Orb which will         * run the task servers.         */        static bool InitOrb(int argc, char* argv[] );        /**         * Invoke this method once to shutdown the Orb which is         * running the task servers in RunOrb(). When this function         * returns, no CORBA invocations are in progress, unless wait_for_completion is false.         */        static void ShutdownOrb(bool wait_for_completion = true);        /**         * Destroys all ControlTaskServer objects.         */        static void CleanupServers();        /**         * Invoke this method to run the orb and accept client requests.         * Use ShutdownOrb() to break out of this method.         */        static void RunOrb();        /**         * Invoke this method to run the orb in a separate thread and accept client requests         * from that thread.         * Use ShutdownOrb() to break out of this method.         */        static void ThreadOrb();        /**         * Invoke this method once to cleanup the orb.         */        static void DestroyOrb();        /**         * Factory method: create a CORBA server for an existing TaskContext.         * @param tc The TaskContext to serve.         * @param use_naming Set to \a false in order not to use the Corba Naming Service.         * @retval 0 if the ORB is not initialised         * @return A new or previously created CORBA server for \a tc.         */        static ControlTaskServer* Create(TaskContext* tc, bool use_naming = true);        /**         * Factory method: create a CORBA server for an existing TaskContext.         * Same as above, but immediately return the Corba object. Also checks if         * \a tc is ControlTaskProxy and returns the server of the proxy if so.         * @param tc The TaskContext to serve.         * @param use_naming Set to \a false in order not to use the Corba Naming Service.         * @retval 0 if the ORB is not initialised         * @return A new or previously created CORBA server for \a tc.         */        static ControlTask_ptr CreateServer(TaskContext* tc, bool use_naming = true);        /**         * Get the Corba Object of this ControlTask.         * This object universally identifies the remote ControlTaskServer         * and can be used to tell other (remote) objects where to find it.         */        ControlTask_ptr server() const;    };}}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -