X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=ubusd_obj.c;h=3859c45728cbbd1ebe8c4ffff3976101b8c7708e;hp=7ae9b5f63174ba6cadb5e5d9c1920822a00cccfd;hb=af63ab64af10798468ca1453de2360fcda44aab9;hpb=c6f705451527e6e5e8f5a2715f11478eeb8799e4 diff --git a/ubusd_obj.c b/ubusd_obj.c index 7ae9b5f..3859c45 100644 --- a/ubusd_obj.c +++ b/ubusd_obj.c @@ -112,8 +112,8 @@ struct ubus_object *ubusd_create_object_internal(struct ubus_object_type *type, obj->type = type; INIT_LIST_HEAD(&obj->list); INIT_LIST_HEAD(&obj->events); - INIT_LIST_HEAD(&obj->watchers); - INIT_LIST_HEAD(&obj->watched); + INIT_LIST_HEAD(&obj->subscribers); + INIT_LIST_HEAD(&obj->target_list); if (type) type->refcount++; @@ -164,37 +164,45 @@ free: return NULL; } -void ubus_watch_new(struct ubus_object *obj, struct ubus_object *target, const char *method) +void ubus_subscribe(struct ubus_object *obj, struct ubus_object *target) { - struct ubus_watch *w; + struct ubus_subscription *s; + bool first = list_empty(&target->subscribers); - w = calloc(1, sizeof(*w) + strlen(method) + 1); - if (!w) + s = calloc(1, sizeof(*s)); + if (!s) return; - w->watcher = obj; - w->watched = target; - list_add(&w->watcher_list, &target->watchers); - list_add(&w->watched_list, &obj->watched); - strcpy(w->method, method); + s->subscriber = obj; + s->target = target; + list_add(&s->list, &target->subscribers); + list_add(&s->target_list, &obj->target_list); + + if (first) + ubus_notify_subscription(target); } -void ubus_watch_free(struct ubus_watch *w) +void ubus_unsubscribe(struct ubus_subscription *s) { - list_del(&w->watcher_list); - list_del(&w->watched_list); - free(w); + struct ubus_object *obj = s->target; + + list_del(&s->list); + list_del(&s->target_list); + free(s); + + if (list_empty(&obj->subscribers)) + ubus_notify_subscription(obj); } void ubusd_free_object(struct ubus_object *obj) { - struct ubus_watch *w, *tmp; + struct ubus_subscription *s, *tmp; - list_for_each_entry_safe(w, tmp, &obj->watched, watched_list) { - ubus_watch_free(w); + list_for_each_entry_safe(s, tmp, &obj->target_list, target_list) { + ubus_unsubscribe(s); } - list_for_each_entry_safe(w, tmp, &obj->watchers, watcher_list) { - ubus_proto_notify_watch(w); + list_for_each_entry_safe(s, tmp, &obj->subscribers, list) { + ubus_notify_unsubscribe(s); } ubusd_event_cleanup_object(obj);