]> rtime.felk.cvut.cz Git - frescor/fwp.git/blob - fwp/lib/frsh_fwp/fwp_fra.c
Add support for changing fwp vres
[frescor/fwp.git] / fwp / lib / frsh_fwp / fwp_fra.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 FWP (Frescor WLAN Protocol)                      */
26 /*                                                                        */
27 /* FWP 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.  FWP 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 FWP; 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 FWP header files in a file,          */
39 /* instantiating FWP generics or templates, or linking other files        */
40 /* with FWP 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 #include <ul_log.h>
47 #include <fra_generic.h>
48 #include <fwp.h>
49 //#include <fwp_fna.h>
50 #include <frsh_distributed.h>
51 #include "fwp_res.h"
52 #include "fwp_idl.h"
53 #include <stdio.h>
54
55
56 UL_LOG_CUST(ulogd_fra_fwp);
57 ul_log_domain_t ulogd_fra_fwp = {UL_LOGL_MSG, "fra_fwp"};
58
59 static int create_vres(fres_vres_t *vres, void *priv)
60 {
61         char id[40];
62         fres_block_basic *basic;
63         fres_block_fwp_sched *fwp_sched;
64         fwp_vres_params_t vparams;
65         fwp_vres_d_t      fwp_vresd;
66         int rv;
67         size_t bytes;
68         
69         /* Prepare vres parameters */
70         basic = fres_contract_get_basic(vres->new);
71         fwp_sched = fres_contract_get_block(vres->new, FRES_BLOCK_FWP_SCHED);
72
73         frsh_network_budget_to_bytes(FRSH_NETPF_FWP, &basic->budget, &bytes);
74         vparams.budget = bytes;
75         vparams.period = basic->period;
76         vparams.ac_id = fwp_sched->ac_id;       
77         /* Create vres */
78         if ((rv = fwp_vres_create(&vparams, &fwp_vresd))) {
79                 return  rv;
80         }
81         vres->priv = fwp_vresd;
82
83         fres_contract_id_to_string(id, &vres->id, sizeof(id));
84         printf("Creating FWP VRes (id=%s, period=%ld ms, budget=%ld bytes AC=%d)\n",
85                 id, fosa_rel_time_to_msec(basic->period), 
86                 vparams.budget, vparams.ac_id);
87         
88         return 0;
89 }
90
91 static int cancel_vres(fres_vres_t *vres, void *priv)
92 {
93         fwp_vres_d_t    fwp_vresd;
94         fres_block_basic *basic;
95         char id[40];
96
97         fwp_vresd = (fwp_vres_d_t) vres->priv;
98         fwp_vres_destroy(fwp_vresd);
99
100         basic = fres_contract_get_basic(vres->allocated);
101         fres_contract_id_to_string(id, &vres->id, sizeof(id));
102         printf("Canceling FWP VRes (id=%s, period=%ld ms, budget=%ld bytes)\n",
103                id, fosa_rel_time_to_msec(basic->period), basic->budget.tv_sec);
104
105         return 0;
106 }
107
108 int change_vres(fres_vres_t *vres, void *priv)
109 {
110         char id[40];
111         fres_block_basic *basic;
112         fres_block_fwp_sched *fwp_sched;
113         fwp_vres_params_t vparams;
114         fwp_vres_d_t      fwp_vresd;
115         int rv;
116         size_t bytes;
117         
118         /* Prepare vres parameters */
119         basic = fres_contract_get_basic(vres->new);
120         fwp_sched = fres_contract_get_block(vres->new, FRES_BLOCK_FWP_SCHED);
121
122         frsh_network_budget_to_bytes(FRSH_NETPF_FWP, &basic->budget, &bytes);
123         vparams.budget = bytes;
124         vparams.period = basic->period;
125         vparams.ac_id = fwp_sched->ac_id;
126         fwp_vresd = vres->priv;
127
128         /* Changing vres */
129         if ((rv = fwp_vres_set_params(fwp_vresd, &vparams))) {
130                 return  rv;
131         }
132
133         fres_contract_id_to_string(id, &vres->id, sizeof(id));
134         printf("Changing FWP VRes (id=%s, period=%ld ms, budget=%ld bytes AC=%d)\n",
135                 id, fosa_rel_time_to_msec(basic->period), 
136                 vparams.budget, vparams.ac_id);
137         
138         return 0;
139 }
140
141 static struct fres_allocator fwp_allocator = {
142         .res_type = FRSH_RT_NETWORK,
143         .res_id = FRSH_NETPF_FWP,
144         .create_vres = create_vres,
145         .cancel_vres = cancel_vres,
146         .change_vres = change_vres,
147         .priv = NULL
148 };
149
150 int fra_fwp_init(void)
151 {
152         fres_block_register_fwp();
153         return fra_register(&fwp_allocator);
154 }