Whole document tree
BonoboTransientSynopsis
DescriptionThe BonoboTransient is used to create transient objects. These objects only exist during the lifetime of the method execution of the interface they implement: they are created on demand and destroyed after the method invocation finishes. Transient objects are an optimization useful when it is possible for a very large set of object to exist but there is no need to have implementations of the servers running all the time, as they can be created on the demand to satisfy the requests of client applications. For example, consider the case in which a large list of objects needs to be returned to a client application. For example, an object reference could be returned for every file on a directory. But it would be wasteful to keep one server running for each file. And given that the program has all the information available to create the servers on demand, you want to use this system. This can be used for implementations of the IDL:Bonobo/PropertyBag interface, as there are in theories thousands of keys that could be returned, but the method invocations on each object is short-lived, so it is efficient to just create servers to satisfy an object request on demand, and destroy them when the request is done. To create such object, you first need to create a BonoboTransient object, and then for every virtual object that you want to expose to the world, you invoke the bonobo_transient_create_objref() function to create a new CORBA object reference. bonobo_transient_new() will create a new POA inside the POA you specify (you can use CORBA_OBJECT_NIL to get the POA to be created in the default Bonobo POA). All object references created with bonobo_transient_create_objref() will live in this new POA. The bonobo_transient_new() function takes an argument that specifies the function that will be used to create the temporary CORBA servant that will satisfy an incoming request. And a function that will be used to destroy the servant when the request processing is done. The bonobo_transient_create_objref() function takes a number of arguments:
Here is an example of how to use BonoboTransient: Example 1. Using BonoboTransient
The previous example shows: how the my_transient object is first created, and what the implementations for the create_servant and destroy_servant look like. It does not make use of the user pointer, so it passes NULL. However, in practice, applications will most likely want to pass data here to the new_servant and destroy_servant methods. The impl_Some_Iface is a method that we assume in the example will be part of the implementation of a CORBA server. This method will be invoked at some time to get an object reference to one of the transient objects (in this case, we have called our object "hello" and it implements the interface IDL:My/Iface:1.0). DetailsBonoboTransientServantNew ()
BonoboTransientServantDestroy ()
bonobo_transient_new ()
bonobo_transient_new() creates a new CORBA server that creates a new POA entry (within the parent_poa POA). You can construct arbitrary object names inside this space using bonobo_transient_create_objref() and return those to client code. The new_servant function will be invoked by the POA to resolve object reference to names you have created using bonobo_transient_create_objref(). The new_servant function should return a PortableServer_Servant that will handle the request. Once the processing is completed, the destroy_servant will be invoked to release any resources allocated during the invocation of new_servant or during the execution of the servant that need to be released. bonobo_transient_construct ()
This function is only for wrappers and object derivation. For normal use, please see bonobo_transient_new. This function will return NULL on failure; however it is your responsibility to destroy the failed object in that case.
bonobo_transient_create_objref ()
|