📄 controltaskserver.cpp
字号:
/*************************************************************************** tag: Peter Soetens Wed Jan 18 14:09:49 CET 2006 ControlTaskServer.cxx ControlTaskServer.cxx - 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 * * * ***************************************************************************/ #include "ControlTaskServer.hpp"#include "ControlTaskProxy.hpp"#include "ControlTaskS.h"#include "ControlTaskC.h"#include "ControlTaskI.h"#include "POAUtility.h"#include <orbsvcs/CosNamingC.h>#include <iostream>#include <fstream>// ACE Specific, for printing exceptions.#include <ace/SString.h>#include "os/threads.hpp"#include "NonPeriodicActivity.hpp"namespace RTT{namespace Corba{ using namespace std; std::map<TaskContext*, ControlTaskServer*> ControlTaskServer::servers; ActivityInterface* ControlTaskServer::orbrunner = 0; ControlTaskServer::~ControlTaskServer() { servers.erase(mtaskcontext); if (muse_naming) { try { CORBA::Object_var rootObj = orb->resolve_initial_references("NameService"); CosNaming::NamingContext_var rootNC = CosNaming::NamingContext::_narrow(rootObj.in()); if (CORBA::is_nil( rootNC.in() ) ) { log(Warning) << "ControlTask '"<< mtaskcontext->getName() << "' could not find CORBA Naming Service."<<endlog(); } else { // Nameserver found... CosNaming::Name name; name.length(2); name[0].id = CORBA::string_dup("ControlTasks"); name[1].id = CORBA::string_dup( mtaskcontext->getName().c_str() ); try { rootNC->unbind(name); log(Info) << "Successfully removed ControlTask '"<<mtaskcontext->getName()<<"' from CORBA Naming Service."<<endlog(); } catch( ... ) { log(Warning) << "ControlTask '"<< mtaskcontext->getName() << "' unbinding failed."<<endlog(); } } } catch (...) { log(Warning) << "ControlTask '"<< mtaskcontext->getName() << "' unbinding failed from CORBA Naming Service."<<endlog(); } } } ControlTaskServer::ControlTaskServer(TaskContext* taskc, bool use_naming) :mtaskcontext(taskc), muse_naming(use_naming) { servers[taskc] = this; try { // Each server has its own POA. // The server's objects have their own poa as well. CORBA::Object_var poa_object = orb->resolve_initial_references ("RootPOA"); PortableServer::POA_var poa = PortableServer::POA::_narrow (poa_object.in ()); PortableServer::POAManager_var poa_manager = poa->the_POAManager (); //poa = POAUtility::create_basic_POA( poa, poa_manager, taskc->getName().c_str(), 0, 1); // poa_manager->activate (); // TODO : Use a better suited POA than create_basic_POA, use the 'session' or so type // But watch out: we need implicit activation, our you will get exceptions upon ->_this() // The POA for the Server's objects:// PortableServer::POA_var objpoa = POAUtility::create_basic_POA(poa,// poa_manager,// std::string(taskc->getName() + "OBJPOA").c_str(), // 0, 0); // Not persistent, allow implicit. // The servant : TODO : cleanup servant in destructor ! Orocos_ControlTask_i* the_task = new Orocos_ControlTask_i( taskc, poa.in() ); // move into var ptr. PortableServer::ServantBase_var servant = the_task; // explicit activation: PortableServer::ObjectId_var objId = poa->activate_object( servant.in() ); // get object reference: CORBA::Object_var obj = poa->id_to_reference( objId.in() ); mtask = Corba::ControlTask::_narrow( obj.in() ); if ( use_naming ) { CORBA::Object_var rootObj; CosNaming::NamingContext_var rootNC; try { rootObj = orb->resolve_initial_references("NameService"); rootNC = CosNaming::NamingContext::_narrow(rootObj.in()); } catch (...) {} if (CORBA::is_nil( rootNC.in() ) ) { log(Warning) << "ControlTask '"<< taskc->getName() << "' could not find CORBA Naming Service."<<endlog(); log() <<"Writing IOR to 'std::cerr' and file '" << taskc->getName() <<".ior'"<<endlog(); // this part only publishes the IOR to a file. CORBA::String_var ior = orb->object_to_string( mtask.in() ); std::cerr << ior.in() <<std::endl; { // write to a file as well. std::string iorname( taskc->getName()); iorname += ".ior"; std::ofstream file_ior( iorname.c_str() ); file_ior << ior.in() <<std::endl; } return; } log(Info) << "ControlTask '"<< taskc->getName() << "' found CORBA Naming Service."<<endlog(); // Nameserver found... CosNaming::Name name; name.length(1); name[0].id = CORBA::string_dup("ControlTasks"); CosNaming::NamingContext_var controlNC; try { controlNC = rootNC->bind_new_context(name); } catch( CosNaming::NamingContext::AlreadyBound&) { log(Debug) << "NamingContext 'ControlTasks' already bound to CORBA Naming Service."<<endlog(); // NOP. } name.length(2); name[1].id = CORBA::string_dup( taskc->getName().c_str() ); try { rootNC->bind(name, obj.in() ); log(Info) << "Successfully added ControlTask '"<<taskc->getName()<<"' to CORBA Naming Service."<<endlog(); } catch( CosNaming::NamingContext::AlreadyBound&) { log(Warning) << "ControlTask '"<< taskc->getName() << "' already bound to CORBA Naming Service."<<endlog(); log() <<"Trying to rebind..."; try { rootNC->rebind(name, obj.in() ); } catch( ... ) { log() << " failed!"<<endlog(); return; } log() << " done. New ControlTask bound to Naming Service."<<endlog(); } } // use_naming else { log(Info) <<"ControlTask '"<< taskc->getName() << "' is not using the CORBA Naming Service."<<endlog(); log() <<"Writing IOR to 'std::cerr' and file '" << taskc->getName() <<".ior'"<<endlog(); // this part only publishes the IOR to a file. CORBA::String_var ior = orb->object_to_string( mtask.in() ); std::cerr << ior.in() <<std::endl; { // write to a file as well. std::string iorname( taskc->getName()); iorname += ".ior"; std::ofstream file_ior( iorname.c_str() ); file_ior << ior.in() <<std::endl; } return; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -