]> rtime.felk.cvut.cz Git - frescor/frsh.git/blob - frsh_api/frsh_core.c
Merge branch 'dario'
[frescor/frsh.git] / frsh_api / frsh_core.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   frsh_core.c
49  * @author Michal Sojka <sojkam1@fel.cvut.cz>
50  *         Dario Faggioli <faggioli@gandalf.sssup.it>
51  * @date   Wed Feb 18 16:04:22 2009
52  * 
53  * @brief  Core of FRSH_FORB framework
54  * 
55  */
56
57
58 #include <frsh_core.h>
59 #include <fcb.h>
60 #include <forb.h>
61 #include <fra_generic.h>
62 #include "frsh_forb.h"
63 #include <frsh_resources.h>
64
65 #ifdef FRSH_DISTRIBUTED_MODULE_SUPPORTED
66 #include <frsh_distributed.h>
67 #endif
68
69 #ifdef CONFIG_AQUOSA
70 #include <aqcpu_res.h>
71 #endif
72
73 #ifdef CONFIG_CPUCG
74 #include <cpucg_res.h>
75 #endif
76
77 #ifdef CONFIG_RESOURCE_DUMMY
78 #include <res_dummy.h>
79 #endif
80
81 #ifdef CONFIG_RESOURCE_ITEM
82 #include <item.h>
83 #endif
84
85 struct frsh_forb frsh_forb_global;
86
87 static void *alloc_executor_thread(void *arg)
88 {
89         return (void*)forb_executor_run(&frsh_forb_global.alloc_executor);
90 }
91
92
93 int frsh_init()
94 {
95         int ret;
96         
97         frsh_forb_global.orb = forb_init(NULL, NULL, "frsh");
98         if (!frsh_forb_global.orb) {
99                 if (errno) return errno;
100                 else return -1;
101         }
102
103         frsh_forb_global.fcb = forb_resolve_reference(frsh_forb_global.orb,
104                                             fres_contract_broker_reg_name);
105         if (!frsh_forb_global.fcb) {
106                 ret = FRES_ERR_FCB_NOT_RUNNING;
107                 goto err;
108         }
109
110         /* Initialize resource allocators */
111         ret = forb_executor_init(&frsh_forb_global.alloc_executor);
112         if (ret) goto err;
113
114         fra_registry_init(frsh_forb_global.orb, frsh_forb_global.fcb,
115                           &frsh_forb_global.alloc_executor);
116         
117 #ifdef CONFIG_AQUOSA
118         ret = aqcpu_fra_init();
119         if (ret) goto err;
120 #endif
121 #ifdef CONFIG_CPUCG
122         ret = cpucg_fra_init();
123         if (ret) goto err;
124 #endif
125 #ifdef CONFIG_RESOURCE_DUMMY
126         ret = fra_dummy_init();
127         if (ret) goto err;
128 #endif
129
130 #ifdef FRSH_DISTRIBUTED_MODULE_SUPPORTED
131         ret = frsh_distributed_init();
132         if (ret) goto err;
133 #endif
134
135 #ifdef CONFIG_RESOURCE_ITEM
136         ret = fra_item_init();
137         if (ret) goto err;
138 #endif
139         /* Run resource allocators */
140         fosa_thread_create(&frsh_forb_global.alloc_executor_thread, NULL,
141                            alloc_executor_thread, NULL);
142         
143         return 0;
144 err:
145         return ret;
146 }
147
148 bool frsh_config_is_admission_test_enabled()
149 {
150         return true;
151 }
152