| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- /**
- * @file depend.c
- * @author Ambroz Bizjak <ambrop7@gmail.com>
- *
- * @section LICENSE
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the author nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * @section DESCRIPTION
- *
- * Dependencies module.
- *
- * Synopsis: provide(string name)
- * Description: Provides a resource. On initialization, transitions any depend()-s
- * waiting for this resource to UP state. On deinitialization, transitions
- * depend()-s using this resource to DOWN state, and waits for all of them to
- * receive the clean signal (i.e. wait for all of the statements following them in
- * their processes to terminate). Initialization fails if a provide() already
- * exists for this resource (including if it is being deinitialized).
- *
- * Synopsis: provide_event(string name)
- * Description: Like provide(), but if another provide() already exists for this
- * resource, initialization does not fail, and the request is queued to the active
- * provide() for this resource. When an active provide() disappears that has
- * queued provide()-s, one of them is promoted to be the active provide() for this
- * resource, and the remaining queue is transferred to it.
- * (mentions of provide() in this text also apply to provide_event())
- *
- * Synopsis: depend(string name)
- * Description: Depends on a resource. Is in UP state when a provide()
- * for this resource is available, and in DOWN state when it is not (either
- * it does not exist or is being terminated).
- * Variables: Provides variables available from the corresponding provide,
- * ("modname.varname" or "modname").
- */
- #include <stdlib.h>
- #include <string.h>
- #include <misc/offset.h>
- #include <misc/debug.h>
- #include <structure/LinkedList1.h>
- #include <structure/LinkedList3.h>
- #include <ncd/NCDModule.h>
- #include <generated/blog_channel_ncd_depend.h>
- #define ModuleLog(i, ...) NCDModuleInst_Backend_Log((i), BLOG_CURRENT_CHANNEL, __VA_ARGS__)
- struct provide {
- NCDModuleInst *i;
- const char *name;
- int is_queued;
- union {
- struct {
- LinkedList3Node queued_node; // node in list which begins with provide.queued_provides_firstnode
- };
- struct {
- LinkedList1Node provides_node; // node in provides
- LinkedList1 depends;
- LinkedList3Node queued_provides_firstnode;
- int dying;
- };
- };
- };
- struct depend {
- NCDModuleInst *i;
- const char *name;
- struct provide *p;
- LinkedList1Node node;
- };
- static LinkedList1 provides;
- static LinkedList1 free_depends;
- static struct provide * find_provide (const char *name)
- {
- for (LinkedList1Node *n = LinkedList1_GetFirst(&provides); n; n = LinkedList1Node_Next(n)) {
- struct provide *p = UPPER_OBJECT(n, struct provide, provides_node);
- ASSERT(!p->is_queued)
-
- if (!strcmp(p->name, name)) {
- return p;
- }
- }
-
- return NULL;
- }
- static void provide_promote (struct provide *o)
- {
- ASSERT(!find_provide(o->name))
-
- // set not queued
- o->is_queued = 0;
-
- // insert to provides list
- LinkedList1_Append(&provides, &o->provides_node);
-
- // init depends list
- LinkedList1_Init(&o->depends);
-
- // set not dying
- o->dying = 0;
-
- // attach free depends with this name
- LinkedList1Node *n = LinkedList1_GetFirst(&free_depends);
- while (n) {
- LinkedList1Node *next = LinkedList1Node_Next(n);
- struct depend *d = UPPER_OBJECT(n, struct depend, node);
- ASSERT(!d->p)
-
- if (strcmp(d->name, o->name)) {
- n = next;
- continue;
- }
-
- // remove from free depends list
- LinkedList1_Remove(&free_depends, &d->node);
-
- // insert to provide's list
- LinkedList1_Append(&o->depends, &d->node);
-
- // set provide
- d->p = o;
-
- // signal up
- NCDModuleInst_Backend_Up(d->i);
-
- n = next;
- }
- }
- static int func_globalinit (struct NCDModuleInitParams params)
- {
- // init provides list
- LinkedList1_Init(&provides);
-
- // init free depends list
- LinkedList1_Init(&free_depends);
-
- return 1;
- }
- static void provide_func_new_templ (void *vo, NCDModuleInst *i, const struct NCDModuleInst_new_params *params, int event)
- {
- struct provide *o = vo;
- o->i = i;
-
- // read arguments
- NCDValRef name_arg;
- if (!NCDVal_ListRead(params->args, 1, &name_arg)) {
- ModuleLog(o->i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
- if (!NCDVal_IsStringNoNulls(name_arg)) {
- ModuleLog(o->i, BLOG_ERROR, "wrong type");
- goto fail0;
- }
- o->name = NCDVal_StringValue(name_arg);
-
- // signal up.
- // This comes above provide_promote(), so that effects on related depend statements are
- // computed before this process advances, avoiding problems like failed variable resolutions.
- NCDModuleInst_Backend_Up(o->i);
-
- // check for existing provide with this name
- struct provide *ep = find_provide(o->name);
- if (ep) {
- ASSERT(!ep->is_queued)
-
- if (!event) {
- ModuleLog(o->i, BLOG_ERROR, "a provide with this name already exists");
- goto fail0;
- }
-
- // set queued
- o->is_queued = 1;
-
- // insert to existing provide's queued provides list
- LinkedList3Node_InitAfter(&o->queued_node, &ep->queued_provides_firstnode);
- } else {
- // init first node for queued provides list
- LinkedList3Node_InitLonely(&o->queued_provides_firstnode);
-
- // promote provide
- provide_promote(o);
- }
-
- return;
-
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static void provide_func_new (void *vo, NCDModuleInst *i, const struct NCDModuleInst_new_params *params)
- {
- provide_func_new_templ(vo, i, params, 0);
- }
- static void provide_event_func_new (void *vo, NCDModuleInst *i, const struct NCDModuleInst_new_params *params)
- {
- provide_func_new_templ(vo, i, params, 1);
- }
- static void provide_free (struct provide *o)
- {
- ASSERT(o->is_queued || LinkedList1_IsEmpty(&o->depends))
-
- if (o->is_queued) {
- // remove from existing provide's queued provides list
- LinkedList3Node_Free(&o->queued_node);
- } else {
- // remove from provides list
- LinkedList1_Remove(&provides, &o->provides_node);
-
- // if we have provides queued, promote the first one
- if (LinkedList3Node_Next(&o->queued_provides_firstnode)) {
- // get first queued provide
- struct provide *qp = UPPER_OBJECT(LinkedList3Node_Next(&o->queued_provides_firstnode), struct provide, queued_node);
- ASSERT(qp->is_queued)
-
- // make it the head of the queued provides list
- LinkedList3Node_Free(&qp->queued_node);
- LinkedList3Node_InitAfter(&qp->queued_provides_firstnode, &o->queued_provides_firstnode);
- LinkedList3Node_Free(&o->queued_provides_firstnode);
-
- // promote provide
- provide_promote(qp);
- }
- }
-
- NCDModuleInst_Backend_Dead(o->i);
- }
- static void provide_func_die (void *vo)
- {
- struct provide *o = vo;
- ASSERT(o->is_queued || !o->dying)
-
- // if we are queued or have no depends, die immediately
- if (o->is_queued || LinkedList1_IsEmpty(&o->depends)) {
- provide_free(o);
- return;
- }
-
- // set dying
- o->dying = 1;
-
- // signal our depends down
- for (LinkedList1Node *n = LinkedList1_GetFirst(&o->depends); n; n = LinkedList1Node_Next(n)) {
- struct depend *d = UPPER_OBJECT(n, struct depend, node);
- ASSERT(d->p == o)
-
- // signal down
- NCDModuleInst_Backend_Down(d->i);
- }
- }
- static void depend_func_new (void *vo, NCDModuleInst *i, const struct NCDModuleInst_new_params *params)
- {
- struct depend *o = vo;
- o->i = i;
-
- // read arguments
- NCDValRef name_arg;
- if (!NCDVal_ListRead(params->args, 1, &name_arg)) {
- ModuleLog(o->i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
- if (!NCDVal_IsStringNoNulls(name_arg)) {
- ModuleLog(o->i, BLOG_ERROR, "wrong type");
- goto fail0;
- }
- o->name = NCDVal_StringValue(name_arg);
-
- // find a provide with our name
- struct provide *p = find_provide(o->name);
- ASSERT(!p || !p->is_queued)
-
- if (p && !p->dying) {
- // insert to provide's list
- LinkedList1_Append(&p->depends, &o->node);
-
- // set provide
- o->p = p;
-
- // signal up
- NCDModuleInst_Backend_Up(o->i);
- } else {
- // insert to free depends list
- LinkedList1_Append(&free_depends, &o->node);
-
- // set no provide
- o->p = NULL;
- }
-
- return;
-
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static void depend_free (struct depend *o)
- {
- ASSERT(!o->p || !o->p->is_queued)
-
- if (o->p) {
- // remove from provide's list
- LinkedList1_Remove(&o->p->depends, &o->node);
-
- // if provide is dying and is empty, let it die
- if (o->p->dying && LinkedList1_IsEmpty(&o->p->depends)) {
- provide_free(o->p);
- }
- } else {
- // remove free depends list
- LinkedList1_Remove(&free_depends, &o->node);
- }
-
- NCDModuleInst_Backend_Dead(o->i);
- }
- static void depend_func_die (void *vo)
- {
- struct depend *o = vo;
-
- depend_free(o);
- }
- static void depend_func_clean (void *vo)
- {
- struct depend *o = vo;
- ASSERT(!o->p || !o->p->is_queued)
-
- if (!(o->p && o->p->dying)) {
- return;
- }
-
- struct provide *p = o->p;
-
- // remove from provide's list
- LinkedList1_Remove(&p->depends, &o->node);
-
- // insert to free depends list
- LinkedList1_Append(&free_depends, &o->node);
-
- // set no provide
- o->p = NULL;
-
- // if provide is empty, let it die
- if (LinkedList1_IsEmpty(&p->depends)) {
- provide_free(p);
- }
- }
- static int depend_func_getobj (void *vo, NCD_string_id_t objname, NCDObject *out_object)
- {
- struct depend *o = vo;
- ASSERT(!o->p || !o->p->is_queued)
-
- if (!o->p) {
- return 0;
- }
-
- return NCDModuleInst_Backend_GetObj(o->p->i, objname, out_object);
- }
- static const struct NCDModule modules[] = {
- {
- .type = "provide",
- .func_new2 = provide_func_new,
- .func_die = provide_func_die,
- .alloc_size = sizeof(struct provide)
- }, {
- .type = "provide_event",
- .func_new2 = provide_event_func_new,
- .func_die = provide_func_die,
- .alloc_size = sizeof(struct provide)
- }, {
- .type = "depend",
- .func_new2 = depend_func_new,
- .func_die = depend_func_die,
- .func_clean = depend_func_clean,
- .func_getobj = depend_func_getobj,
- .flags = NCDMODULE_FLAG_CAN_RESOLVE_WHEN_DOWN,
- .alloc_size = sizeof(struct depend)
- }, {
- .type = NULL
- }
- };
- struct NCDModuleGroup ncdmodule_depend = {
- .func_globalinit = func_globalinit,
- .modules = modules
- };
|