]> rtime.felk.cvut.cz Git - frescor/frsh-forb.git/blob - src/forb/src/tests/executor_id.c
1aace5b1e0f11a39294d8e0b600b99b34754ea57
[frescor/frsh-forb.git] / src / forb / src / tests / executor_id.c
1 /**************************************************************************/
2 /* ---------------------------------------------------------------------- */
3 /* Copyright (C) 2006 - 2008 FRESCOR consortium partners:                 */
4 /*                                                                        */
5 /*   Universidad de Cantabria,              SPAIN                         */
6 /*   University of York,                    UK                            */
7 /*   Scuola Superiore Sant'Anna,            ITALY                         */
8 /*   Kaiserslautern University,             GERMANY                       */
9 /*   Univ. Politécnica  Valencia,           SPAIN                        */
10 /*   Czech Technical University in Prague,  CZECH REPUBLIC                */
11 /*   ENEA                                   SWEDEN                        */
12 /*   Thales Communication S.A.              FRANCE                        */
13 /*   Visual Tools S.A.                      SPAIN                         */
14 /*   Rapita Systems Ltd                     UK                            */
15 /*   Evidence                               ITALY                         */
16 /*                                                                        */
17 /*   See http://www.frescor.org for a link to partners' websites          */
18 /*                                                                        */
19 /*          FRESCOR project (FP6/2005/IST/5-034026) is funded             */
20 /*       in part by the European Union Sixth Framework Programme          */
21 /*       The European Union is not liable of any use that may be          */
22 /*       made of this code.                                               */
23 /*                                                                        */
24 /*                                                                        */
25 /*  This file is part of FORB (Frescor Object Request Broker)             */
26 /*                                                                        */
27 /* FORB is free software; you can redistribute it and/or modify it        */
28 /* under terms of the GNU General Public License as published by the      */
29 /* Free Software Foundation; either version 2, or (at your option) any    */
30 /* later version.  FORB is distributed in the hope that it will be        */
31 /* useful, but WITHOUT ANY WARRANTY; without even the implied warranty    */
32 /* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU    */
33 /* General Public License for more details. You should have received a    */
34 /* copy of the GNU General Public License along with FORB; see file       */
35 /* COPYING. If not, write to the Free Software Foundation, 675 Mass Ave,  */
36 /* Cambridge, MA 02139, USA.                                              */
37 /*                                                                        */
38 /* As a special exception, including FORB header files in a file,         */
39 /* instantiating FORB generics or templates, or linking other files       */
40 /* with FORB objects to produce an executable application, does not       */
41 /* by itself cause the resulting executable application to be covered     */
42 /* by the GNU General Public License. This exception does not             */
43 /* however invalidate any other reasons why the executable file might be  */
44 /* covered by the GNU Public License.                                     */
45 /**************************************************************************/
46
47 /**
48  * @file   discovery.c
49  * @author Petr Benes <benesp16@fel.cvut.cz>
50  * @date   Sun Oct 12 19:05:27 2008
51  * 
52  * @brief  Test for running executor identification.
53  * 
54  */
55
56 #include <stdbool.h>
57 #include <forb.h>
58 #include <forb/object.h>
59 #include <forb/forb-internal.h>
60 #include <forb/config.h>
61 #include <unistd.h>
62 #include "../proto.h"
63 #include "../discovery.h"
64 #include <error.h>
65 #include <fosa.h>
66 #include <stdio.h>
67
68 #if !CONFIG_FORB_PROTO_UNIX && !CONFIG_FORB_PROTO_INET_DEFAULT
69 #error This test should only work if there is some local protocol enabled.
70 #endif
71
72 int main(int argc, char *argv[])
73 {
74         forb_orb orb;
75         forb_executor_t *executor;
76         //forb_executor_t *my_executor;
77
78         orb = forb_init(&argc, &argv, NULL);
79         if (!orb) {
80                 error(1, errno, "Test: Orb was not created\n");
81         }
82         else {
83                 printf("Test: Orb initialized\n");
84         }
85
86         // ------------------------------------------------------
87         if (forb_get_current_executor(&executor)) {
88                 printf("Test: Error while getting current executor\n");
89                 if (executor == NULL)
90                 printf("Test: Executor: NULL\n");
91         }
92         else
93                 printf("Test: Executor: %p\n", executor);
94         
95         printf("Test: ORB executor: %p\n", orb->executor);
96         
97         forb_executor_run(orb->executor);
98         
99         return 0;
100 }