]> rtime.felk.cvut.cz Git - frescor/forb.git/blob - src/port.c
5919ef2e6f22718a0e6973d82c11214d62d4fac5
[frescor/forb.git] / src / port.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   port.c
49  * @author Michal Sojka <sojkam1@fel.cvut.cz>
50  * @date   Sun Oct 12 17:36:13 2008
51  * 
52  * @brief  Implementation of port manipulation functions.
53  * 
54  * 
55  */
56
57
58 #include "port.h"
59 #include "proto.h"
60 #include <forb/config.h>
61 #include "iop.h"
62 #include <ul_log.h>
63
64 extern UL_LOG_CUST(ulogd_forb_port);
65
66 /** 
67  * Registers a new port in FORB and run receiver thread on it to
68  * receive FORB messages through this prot. 
69  * 
70  * @param forb Where to register the new port.
71  * 
72  * @param port Port to register. The memory for @a port should be
73  * forb_malloced, since forb_free() is called on the port on destroy
74  * operation.
75  *
76  * @return Zero on success, FOSA error code on error.
77  */
78 int forb_register_port(forb_t *forb, forb_port_t *port)
79 {
80         int ret;
81         
82         port->forb = forb;
83         port->finish = false;
84
85         forb_port_peer_init_head(port);
86         
87         fosa_mutex_lock(&forb->port_mutex);
88         forb_port_insert(forb, port);
89         fosa_mutex_unlock(&forb->port_mutex);
90
91         forb_syncobj_init(&port->hello, 0);
92         forb_syncobj_init(&port->reply_processed, 0);
93
94         CDR_codec_init_static(&port->codec);
95         if (!CDR_buffer_init(&port->codec, CONFIG_FORB_RECV_BUF_SIZE, 0)) {
96                 ret = FOSA_ENOMEM;
97                 goto err;
98         }
99         ret = fosa_thread_create(&port->receiver_thread, NULL,
100                                  forb_iop_receiver_thread, port);
101         if (ret != 0)
102                 goto err2;
103         ret = fosa_thread_create(&port->discovery_thread, NULL,
104                                  forb_iop_discovery_thread, port);
105         if (ret != 0)
106                 goto err3;
107         return 0;
108 err3:
109         port->finish = true;
110         /* FIXME: This is Aquosa specific - cancelation should be
111          * added to FOSA. */
112         pthread_cancel(port->receiver_thread.pthread_id);
113         pthread_cancel(port->discovery_thread.pthread_id);
114
115         pthread_join(port->receiver_thread.pthread_id, NULL);
116         pthread_join(port->discovery_thread.pthread_id, NULL);
117 err2:
118         CDR_codec_release_buffer(&port->codec);
119 err:
120         fosa_mutex_lock(&forb->port_mutex);
121         forb_port_delete(forb, port);
122         fosa_mutex_unlock(&forb->port_mutex);
123         
124         return ret;
125 }
126
127 /** 
128  * Destroys the port and all resources associated with it.
129  * 
130  * @param port 
131  */
132 void forb_destroy_port(forb_port_t *port)
133 {
134         forb_t *forb = port->forb;
135         void *thread_return;
136
137         port->finish = true;    /* Exit all the threads */
138         
139         /* FIXME: There is no FOSA API for thread cancelation. */
140         pthread_cancel(port->receiver_thread.pthread_id);
141
142         /* FIXME: Canceling discovery thread sometimes didn't
143          * work. The discovery thread stayed forever in the
144          * pthread_cond_timedwait(). */
145         //pthread_cancel(port->discovery_thread.pthread_id);
146
147         /* Sometimes, cancelation doesn't work and the
148          * discovery_thread hangs in pthread_cond_timedwait
149          * infinitely. */
150         forb_syncobj_signal(&port->hello);
151         
152         pthread_join(port->receiver_thread.pthread_id, &thread_return);
153         pthread_join(port->discovery_thread.pthread_id, &thread_return);
154
155         if (port->proto->port_destroy) {
156                 port->proto->port_destroy(port);
157         }
158
159         /* Because of no locking of port->peers, this must be called
160          * after receiver thread is stopped. */
161         forb_peer_delete_by_port(forb, port);
162
163         CDR_codec_release_buffer(&port->codec);
164
165         fosa_mutex_lock(&forb->port_mutex);
166         forb_port_delete(forb, port);
167         fosa_mutex_unlock(&forb->port_mutex);
168
169         /* TODO: reference counting */
170         forb_free(port);
171 }