#include <PortAdmin.h>
Classes | |
class | comp_op |
comp_op functor | |
class | port_prof_collect |
PortProfileList corerection functor. | |
class | port_prof_collect2 |
PortProfileList corerection functor. | |
Public Member Functions | |
PortAdmin (CORBA::ORB_ptr orb, PortableServer::POA_ptr poa) | |
Constructor. | |
virtual | ~PortAdmin (void) |
Destructor. | |
PortServiceList * | getPortServiceList () const |
Get PortServiceList. | |
PortProfileList | getPortProfileList () const |
Get PorProfileList. | |
PortService_ptr | getPortRef (const char *port_name) const |
Get the reference to Port object. | |
PortBase * | getPort (const char *port_name) const |
Get pointer to the Port's servant. | |
bool | addPort (PortBase &port) |
Regsiter the Port. | |
bool | addPort (PortService_ptr port) |
Regsiter the Port. | |
void | registerPort (PortBase &port) |
Regsiter the Port. | |
void | registerPort (PortService_ptr port) |
Regsiter the Port. | |
bool | removePort (PortBase &port) |
Unregister the Port registration. | |
bool | removePort (PortService_ptr port) |
Unregister the Port registration. | |
void | deletePort (PortBase &port) |
Unregister the Port registration. | |
void | deletePort (PortService_ptr port) |
Unregister the Port registration. | |
void | deletePortByName (const char *port_name) |
Unregister the Port's registration by its name. | |
void | activatePorts () |
Activate all Port interfaces. | |
void | deactivatePorts () |
Deactivate all Port interfaces. | |
void | finalizePorts () |
Deactivate all Ports and unregister them. |
PortAdmin class.
This is a class to manage various Ports. It executes various management operations such as registering and unregistering Port etc and also manages registered ports.
RTC::PortAdmin::PortAdmin | ( | CORBA::ORB_ptr | orb, | |
PortableServer::POA_ptr | poa | |||
) |
Constructor.
Constructor
orb | ORB | |
poa | POA |
virtual RTC::PortAdmin::~PortAdmin | ( | void | ) | [inline, virtual] |
Destructor.
Destructor
void RTC::PortAdmin::activatePorts | ( | ) |
Activate all Port interfaces.
This operation activate all interfaces that is registered in the ports.
bool RTC::PortAdmin::addPort | ( | PortService_ptr | port | ) |
Regsiter the Port.
This operation registers the Port's servant given by argument. The given Port's servant will be activated on the POA that is given to the constructor, and the created object reference is set to the Port's profile.
port | The Port's servant. |
bool RTC::PortAdmin::addPort | ( | PortBase & | port | ) |
Regsiter the Port.
This operation registers the Port's servant given by argument. The given Port's servant will be activated on the POA that is given to the constructor, and the created object reference is set to the Port's profile.
port | The Port's servant. |
void RTC::PortAdmin::deactivatePorts | ( | ) |
Deactivate all Port interfaces.
This operation deactivate all interfaces that is registered in the ports.
void RTC::PortAdmin::deletePort | ( | PortService_ptr | port | ) |
Unregister the Port registration.
This operation unregisters the Port registration. When the Port is unregistered, Port is deactivated, and the object reference in the Port's profile is set to nil.
port | The Port's servant. |
void RTC::PortAdmin::deletePort | ( | PortBase & | port | ) |
Unregister the Port registration.
This operation unregisters the Port registration. When the Port is unregistered, Port is deactivated, and the object reference in the Port's profile is set to nil.
port | The Port's servant. |
void RTC::PortAdmin::deletePortByName | ( | const char * | port_name | ) |
Unregister the Port's registration by its name.
This operation unregister the Port's registration specified by port_ name. When the Port is unregistered, Port is deactivated, and the object reference in the Port's profile is set to nil.
port_name | The Port's name. |
void RTC::PortAdmin::finalizePorts | ( | ) |
Deactivate all Ports and unregister them.
This operation deactivates the all Port and deletes the all Port's registrations from the list.
PortBase* RTC::PortAdmin::getPort | ( | const char * | port_name | ) | const |
Get pointer to the Port's servant.
This operation returns the pointer to the PortBase servant registered by addPort(). The port specified by port_name must be already registered in addPort().
port_name | The name of Port to be returned the servant pointer. |
PortProfileList RTC::PortAdmin::getPortProfileList | ( | ) | const |
PortService_ptr RTC::PortAdmin::getPortRef | ( | const char * | port_name | ) | const |
Get the reference to Port object.
This operation returns the reference of Port object specified by port_name. The port specified by port_name must be already registered in addPort().
port_name | The name of Port to be returned the reference. |
PortServiceList* RTC::PortAdmin::getPortServiceList | ( | ) | const |
Get PortServiceList.
This operation returns the pointer to the PortServiceList of Ports registered by addPort().
void RTC::PortAdmin::registerPort | ( | PortService_ptr | port | ) |
Regsiter the Port.
This operation registers the Port's servant given by argument. The given Port's servant will be activated on the POA that is given to the constructor, and the created object reference is set to the Port's profile.
port | The Port's servant. |
void RTC::PortAdmin::registerPort | ( | PortBase & | port | ) |
Regsiter the Port.
This operation registers the Port's servant given by argument. The given Port's servant will be activated on the POA that is given to the constructor, and the created object reference is set to the Port's profile.
port | The Port's servant. |
bool RTC::PortAdmin::removePort | ( | PortService_ptr | port | ) |
Unregister the Port registration.
This operation unregisters the Port registration. When the Port is unregistered, Port is deactivated, and the object reference in the Port's profile is set to nil.
port | The Port's servant. |
bool RTC::PortAdmin::removePort | ( | PortBase & | port | ) |
Unregister the Port registration.
This operation unregisters the Port registration. When the Port is unregistered, Port is deactivated, and the object reference in the Port's profile is set to nil.
port | The Port's servant. |