]> rtime.felk.cvut.cz Git - frescor/frsh.git/blob - resources/dummy/frm_dummy.c
082564ce396c116c8659b1398de7333f9ff62614
[frescor/frsh.git] / resources / dummy / frm_dummy.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 FRSH (FRescor ScHeduler)                         */
26 /*                                                                        */
27 /* FRSH 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.  FRSH 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 FRSH; 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 FRSH header files in a file,         */
39 /* instantiating FRSH generics or templates, or linking other files       */
40 /* with FRSH 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   frm_dummy.c
49  * @author Michal Sojka <sojkam1@fel.cvut.cz>
50  * @date   Wed Feb 18 16:06:04 2009
51  * 
52  * @brief  Dummy resource manager implementation
53  * 
54  * 
55  */
56
57
58 #include <frm_generic.h>
59 #include <forb.h>
60 #include <error.h>
61 #include <errno.h>
62 #include <getopt.h>
63 #include <fres_sa_scenario.h>
64 #include <stdbool.h>
65 #include <ul_log.h>
66 #include <ul_logreg.h>
67 #include "res_dummy.h"
68 #include <stdio.h>
69 #include "dummy_config.h"
70
71 bool opt_accept_all = false;
72
73 struct dummy_data {
74         int some_data;
75 };
76
77 int admission_test(struct fres_sa_scenario *scenario, void *priv, bool *schedulable)
78 {
79         struct dummy_data *data = priv;
80         struct fres_sa_contract *c;
81         int ret;
82         long int utilization = 0;
83
84 #ifdef CONFIG_RESOURCE_DUMMY_VERBOSE    
85         printf("Admission test:\n");
86 #endif
87
88         if (opt_accept_all) {
89                 *schedulable = true;
90                 return 0;
91         }
92
93         data->some_data++;
94
95         fres_sa_scenario_for_each_no_cancel_contract(scenario, c) {
96                 fres_block_basic *basic;
97                 fres_block_dummy_sched *dummy_sched;
98                 char id[40];
99                 fres_contract_id_to_string(id, &c->id, sizeof(id));
100 #ifdef CONFIG_RESOURCE_DUMMY_VERBOSE    
101                 printf("  %s contract: id=%s num_blocks=%d\n",
102                        c->contract == c->new ? "new" : "old", id,
103                        fres_contract_get_num_blocks(c->contract));
104 #endif
105                 
106                 basic = fres_contract_get_basic(c->contract);
107                 if (!basic) {
108                         fprintf(stderr, "No basic block present\n");
109                         return -1;
110                 }
111
112                 if (c->contract == c->new) {
113                         /* Add data for scheduler to the new contracts */
114                         dummy_sched = malloc(sizeof(*dummy_sched));
115                         if (!dummy_sched) return -1;
116                         dummy_sched->priority = 100 - fosa_rel_time_to_msec(basic->budget);
117                         ret = fres_contract_add_dummy_sched(c->contract, dummy_sched);
118                         if (ret) {
119                                 fprintf(stderr, "Cannot add dummy_sched block\n");
120                                 return -1;
121                         }
122                 } else {
123                         dummy_sched = fres_contract_get_dummy_sched(c->contract);
124                         if (!dummy_sched) {
125                                 fprintf(stderr, "Dummy_sched is not present\n");
126                                 return -1;
127                         }
128                 }
129 #ifdef CONFIG_RESOURCE_DUMMY_VERBOSE    
130                 printf("                period=%ld ms, budget=%ld ms, priority=%d\n",
131                        fosa_rel_time_to_msec(basic->period),
132                        fosa_rel_time_to_msec(basic->budget), dummy_sched->priority);
133 #endif
134                 utilization +=
135                         1000*fosa_rel_time_to_msec(basic->budget) /
136                         fosa_rel_time_to_msec(basic->period);
137         }
138         *schedulable = utilization < 1000;
139         if (*schedulable) {
140                 scenario->utilization = utilization/10;
141         }
142         
143 #ifdef CONFIG_RESOURCE_DUMMY_VERBOSE    
144         printf("utilization=%ld.%03ld => %s\n", utilization/1000, utilization%1000,
145                *schedulable?"schedulable":"not schedulable");
146 #endif
147                 
148         return 0;
149 }
150
151 struct dummy_data dummy_data;
152
153 static const struct fres_res_manager frm = {
154         .res_type = DUMMY_RESOURCE_TYPE,
155         .res_id = DUMMY_RESOURCE_ID,
156         .admission_test = admission_test,
157         .priv = &dummy_data,
158         .name = "Dummy resource",
159 };
160
161 static struct option long_opts[] = {
162     { "loglevel", 1, 0, 'l' },
163     { "accept-all", 0, 0, 'a' },
164     { "help", 0, 0, 'h' },
165     { 0, 0, 0, 0}
166 };
167
168 static void
169 usage(void)
170 {
171         printf("usage: frm_dummy [ options ]\n");
172         printf("  -l, --loglevel <number>|<domain>=<number>,...\n");
173         printf("  -a, --accept-all   Accepts all contracts\n");
174         printf("  -h, --help         Display this help\n");
175 }
176
177 int main(int argc, char *argv[])
178 {
179         forb_orb orb;
180         int ret;
181         forb_init_attr_t attr = { .orb_id = "org.frescor.frm.dummy" };
182         int  opt;
183
184         while ((opt = getopt_long(argc, argv, "al:h", &long_opts[0], NULL)) != EOF) {
185                 switch (opt) {
186                         case 'a':
187                                 opt_accept_all = true;
188                         case 'l':
189                                 ul_log_domain_arg2levels(optarg);
190                                 break;
191                         case 'h':
192                         /*default:*/
193                                 usage();
194                                 exit(opt == 'h' ? 0 : 1);
195                 }
196         }
197
198         orb = forb_init(&argc, &argv, &attr);
199         if (!orb) error(1, errno, "forb_init");
200
201         /* Register fres_block_dummy_sched to contract handling
202          * functions */
203         fres_block_register_dummy();
204
205 #ifndef CONFIG_RESOURCE_DUMMY_VERBOSE   
206         ulogd_frm_generic.level = UL_LOGL_ERR;
207 #endif
208
209         ret = frm_register_and_run(orb, &frm);
210
211         if (ret != 0) {
212                 error(1, errno, "frm_generic_run failed");
213         }
214         
215         return 0;
216 }