blob: 807054460e4ecb66cba28c93687b55600f0148ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/**
* CORBA helpers
*
* - init orb
* - get reference to name service
* - register objects @ name service
*
* @author Manuel Traut <manut@mecka.net>
* @licence GPLv2
*/
#include <distrio_ioI.h>
#include <distrio_ioC.h>
#include <distrio_ioS.h>
#include <orbsvcs/CosNamingC.h>
/**
* handle to corba objects needed for registration of new objects and running
* the ORB
*/
typedef struct _corba_ref {
/** init > 0 if orb is initialized */
int init;
CORBA::ORB_var orb;
PortableServer::POA_var poa;
PortableServer::POAManager_var poa_mgr;
CosNaming::NamingContext_var nc;
} corba_ref;
static corba_ref ref = {
.init = 0,
};
/** initialize corba orb - argc, argv as passed to main() */
int init_corba (int argc, char **argv);
/** register a digital io with a common name at the naming service */
int register_digital (char *_name, Distrio_Digital_i *digital);
/** run the orb - function blocks until orb shutdown */
int run_orb (void);
|