]> rtime.felk.cvut.cz Git - frescor/frsh-forb.git/blob - tests/tests_frescan/test_frescan_bwres_cancel_in_slave.c
Do not enter unnecessary subdirectories
[frescor/frsh-forb.git] / tests / tests_frescan / test_frescan_bwres_cancel_in_slave.c
1 //----------------------------------------------------------------------
2 //  Copyright (C) 2006 - 2009 by the FRESCOR consortium:
3 //
4 //    Universidad de Cantabria,              SPAIN
5 //    University of York,                    UK
6 //    Scuola Superiore Sant'Anna,            ITALY
7 //    Kaiserslautern University,             GERMANY
8 //    Univ. Politecnica  Valencia,           SPAIN
9 //    Czech Technical University in Prague,  CZECH REPUBLIC
10 //    ENEA                                   SWEDEN
11 //    Thales Communication S.A.              FRANCE
12 //    Visual Tools S.A.                      SPAIN
13 //    Rapita Systems Ltd                     UK
14 //    Evidence                               ITALY
15 //
16 //    See http://www.frescor.org
17 //
18 //        The FRESCOR project (FP6/2005/IST/5-034026) is funded
19 //        in part by the European Union Sixth Framework Programme
20 //        The European Union is not liable of any use that may be
21 //        made of this code.
22 //
23 //
24 //  based on previous work (FSF) done in the FIRST project
25 //
26 //   Copyright (C) 2005  Mälardalen University, SWEDEN
27 //                       Scuola Superiore S.Anna, ITALY
28 //                       Universidad de Cantabria, SPAIN
29 //                       University of York, UK
30 //
31 // This file is part of FNA (Frescor Network Adaptation)
32 //
33 // FNA is free software; you can redistribute it and/or modify it
34 // under terms of the GNU General Public License as published by the
35 // Free Software Foundation; either version 2, or (at your option) any
36 // later version.  FNA is distributed in the hope that it will be
37 // useful, but WITHOUT ANY WARRANTY; without even the implied warranty
38 // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
39 // General Public License for more details. You should have received a
40 // copy of the GNU General Public License along with FNA; see file
41 // COPYING. If not, write to the Free Software Foundation, 675 Mass Ave,
42 // Cambridge, MA 02139, USA.
43 //
44 // As a special exception, including FNA header files in a file,
45 // instantiating FNA generics or templates, or linking other files
46 // with FNA objects to produce an executable application, does not
47 // by itself cause the resulting executable application to be covered
48 // by the GNU General Public License. This exception does not
49 // however invalidate any other reasons why the executable file might be
50 // covered by the GNU Public License.
51 // -----------------------------------------------------------------------
52 #include <stdio.h>  // perror
53 #include <stdlib.h> // exit
54 #include <unistd.h>   // sleep
55
56 #include "frsh.h"
57
58 #include "frescan.h"
59 #include "frescan_bwres.h"
60 #include "frescan_servers.h"
61
62 #define PUT_ERROR(s) {perror (s); exit (-1);}
63
64 #define NETWORK 0
65 #define LOCAL_NODE 1
66
67 int main ()
68 {
69         int ret;
70         frescan_init_params_t init_params;
71         frescan_ss_t ss1, ss2, ss3;
72         frsh_contract_t contract;
73         frescan_server_params_t server_params;
74         bool accepted;
75         frsh_rel_time_t budget_min, period_max;
76
77         init_params.net = NETWORK;
78         init_params.node = LOCAL_NODE;
79         init_params.tx_fp_max_prio = 10;
80         init_params.rx_num_of_channels = 10;
81         init_params.rx_channel_max_prio = NULL;
82
83         printf("Initializing FRESCAN\n");
84         ret = frescan_init(&init_params);
85         if (ret != 0) PUT_ERROR ("could not init FRESCAN");
86
87         printf("Initializing BWRES\n");
88         ret = frescan_bwres_init(NETWORK);
89         if (ret != 0) PUT_ERROR ("could not init BWRES");
90
91         ret = frsh_contract_init(&contract);
92         if (ret != 0) PUT_ERROR ("could not init contract");
93
94         budget_min.tv_sec = 5;
95         period_max = frsh_msec_to_rel_time(3000);
96
97         ret = frsh_contract_set_basic_params
98                         (&contract,
99                          &budget_min,
100                          &period_max,
101                          FRSH_WT_INDETERMINATE,
102                          FRSH_CT_REGULAR);
103         if (ret != 0) PUT_ERROR ("could not set basic params");
104
105 #if !FRSH_AUTOMATIC_PRIO_ASSIGN_ENABLE
106         ret = frsh_contract_set_preemption_level(&contract, 5);
107         if (ret != 0) PUT_ERROR ("could not set preemption level");
108 #endif
109
110         printf("Negotiating a contract 1\n");
111         ret = frescan_bwres_negotiate(NETWORK, &contract, &ss1, &accepted);
112         if (ret != 0) PUT_ERROR ("could not negotiate succesfully");
113
114         if (accepted) {
115                 printf("The contract was accepted, ss:%u\n", ss1);
116                 ret = frescan_servers_get_data(NETWORK, &server_params, ss1);
117                 if (ret != 0) PUT_ERROR ("could not get servers data");
118
119                 printf("B:%u, T=(%u,%u), P:%u\n",
120                        server_params.budget,
121                        server_params.period.tv_sec,
122                        server_params.period.tv_nsec,
123                        server_params.prio);
124         } else {
125                 printf("The contract was not accepted\n");
126         }
127
128         budget_min.tv_sec = 6;
129         period_max = frsh_msec_to_rel_time(2600);
130
131         ret = frsh_contract_set_basic_params
132                         (&contract,
133                           &budget_min,
134                           &period_max,
135                           FRSH_WT_INDETERMINATE,
136                           FRSH_CT_REGULAR);
137         if (ret != 0) PUT_ERROR ("could not set basic params");
138
139 #if !FRSH_AUTOMATIC_PRIO_ASSIGN_ENABLE
140         ret = frsh_contract_set_preemption_level(&contract, 4);
141         if (ret != 0) PUT_ERROR ("could not set preemption level");
142 #endif
143
144         printf("Negotiating a contract 2\n");
145         ret = frescan_bwres_negotiate(NETWORK, &contract, &ss2, &accepted);
146         if (ret != 0) PUT_ERROR ("could not negotiate");
147
148         if (accepted) {
149                 printf("The contract was accepted, ss:%u\n", ss2);
150                 ret = frescan_servers_get_data(NETWORK, &server_params, ss2);
151                 if (ret != 0) PUT_ERROR ("could not get servers data");
152
153                 printf("B:%u, T=(%u,%u), P:%u\n",
154                        server_params.budget,
155                        server_params.period.tv_sec,
156                        server_params.period.tv_nsec,
157                        server_params.prio);
158         } else {
159                 printf("The contract was not accepted\n");
160         }
161
162         printf("cancelling contract for ss:%u\n", ss1);
163         ret = frescan_bwres_cancel(NETWORK, ss1);
164         if (ret != 0) PUT_ERROR ("could not cancel server");
165
166         budget_min.tv_sec = 1;
167         period_max = frsh_msec_to_rel_time(6666);
168
169         ret = frsh_contract_set_basic_params
170                         (&contract,
171                           &budget_min,
172                           &period_max,
173                           FRSH_WT_INDETERMINATE,
174                           FRSH_CT_REGULAR);
175         if (ret != 0) PUT_ERROR ("could not set basic params");
176
177 #if !FRSH_AUTOMATIC_PRIO_ASSIGN_ENABLE
178         ret = frsh_contract_set_preemption_level(&contract, 3);
179         if (ret != 0) PUT_ERROR ("could not set preemption level");
180 #endif
181
182         printf("Negotiating a contract 3\n");
183         ret = frescan_bwres_negotiate(NETWORK, &contract, &ss3, &accepted);
184         if (ret != 0) PUT_ERROR ("could not negotiate");
185
186         if (accepted) {
187                 printf("The contract was accepted, ss:%u\n", ss3);
188                 ret = frescan_servers_get_data(NETWORK, &server_params, ss3);
189                 if (ret != 0) PUT_ERROR ("could not get servers data");
190
191                 printf("B:%u, T=(%u,%u), P:%u\n",
192                        server_params.budget,
193                        server_params.period.tv_sec,
194                        server_params.period.tv_nsec,
195                        server_params.prio);
196         } else {
197                 printf("The contract was not accepted\n");
198         }
199
200         while (1) {
201                 sleep(1);
202         }
203
204         return 0;
205 }
206
207