in->proc.pid = pid;
clock_gettime(CLOCK_MONOTONIC, &in->start);
uloop_process_add(&in->proc);
+ service_event("instance.start", in->srv->name, in->name);
}
static void
uloop_timeout_set(&in->timeout, in->respawn_timeout * 1000);
}
}
+ service_event("instance.stop", in->srv->name, in->name);
}
void
struct avl_tree services;
static struct blob_buf b;
+static struct ubus_context *ctx;
static void
service_instance_add(struct service *s, struct blob_attr *attr)
static void
service_delete(struct service *s)
{
+ service_event("service.stop", s->name, NULL);
vlist_flush_all(&s->instances);
avl_delete(&services, &s->avl);
trigger_del(s);
avl_insert(&services, &s->avl);
+ service_event("service.start", s->name, NULL);
+
return 0;
}
return service_handle_set(NULL, NULL, NULL, "add", b.head);
}
-void ubus_init_service(struct ubus_context *ctx)
+void service_event(const char *type, const char *service, const char *instance)
+{
+ blob_buf_init(&b, 0);
+ blobmsg_add_string(&b, "service", service);
+ if (instance)
+ blobmsg_add_string(&b, "instance", instance);
+ ubus_notify(ctx, &main_object, type, b.head, -1);
+}
+
+void ubus_init_service(struct ubus_context *_ctx)
{
+ ctx = _ctx;
ubus_add_object(ctx, &main_object);
}