2012-12-13 18:44:15 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011-2012 Felix Fietkau <nbd@openwrt.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 2.1
|
|
|
|
* as published by the Free Software Foundation
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libubus.h"
|
|
|
|
#include "libubus-internal.h"
|
|
|
|
|
|
|
|
static int ubus_subscriber_cb(struct ubus_context *ctx, struct ubus_object *obj,
|
|
|
|
struct ubus_request_data *req,
|
|
|
|
const char *method, struct blob_attr *msg)
|
|
|
|
{
|
|
|
|
struct ubus_subscriber *s;
|
|
|
|
|
|
|
|
s = container_of(obj, struct ubus_subscriber, obj);
|
2012-12-14 21:27:52 +01:00
|
|
|
if (s->cb)
|
2013-03-17 18:29:38 +01:00
|
|
|
return s->cb(ctx, obj, req, method, msg);
|
2012-12-13 18:44:15 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-14 13:42:10 +01:00
|
|
|
const struct ubus_method watch_method __hidden = {
|
2012-12-13 18:44:15 +01:00
|
|
|
.name = NULL,
|
|
|
|
.handler = ubus_subscriber_cb,
|
|
|
|
};
|
|
|
|
|
|
|
|
int ubus_register_subscriber(struct ubus_context *ctx, struct ubus_subscriber *s)
|
|
|
|
{
|
|
|
|
struct ubus_object *obj = &s->obj;
|
|
|
|
|
|
|
|
obj->methods = &watch_method;
|
|
|
|
obj->n_methods = 1;
|
|
|
|
|
|
|
|
return ubus_add_object(ctx, obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2012-12-14 13:11:40 +01:00
|
|
|
__ubus_subscribe_request(struct ubus_context *ctx, struct ubus_object *obj, uint32_t id, int type)
|
2012-12-13 18:44:15 +01:00
|
|
|
{
|
|
|
|
struct ubus_request req;
|
|
|
|
|
|
|
|
blob_buf_init(&b, 0);
|
|
|
|
blob_put_int32(&b, UBUS_ATTR_OBJID, obj->id);
|
|
|
|
blob_put_int32(&b, UBUS_ATTR_TARGET, id);
|
|
|
|
|
|
|
|
if (ubus_start_request(ctx, &req, b.head, type, 0) < 0)
|
|
|
|
return UBUS_STATUS_INVALID_ARGUMENT;
|
|
|
|
|
|
|
|
return ubus_complete_request(ctx, &req, 0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int ubus_subscribe(struct ubus_context *ctx, struct ubus_subscriber *obj, uint32_t id)
|
|
|
|
{
|
2012-12-14 13:11:40 +01:00
|
|
|
return __ubus_subscribe_request(ctx, &obj->obj, id, UBUS_MSG_SUBSCRIBE);
|
2012-12-13 18:44:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int ubus_unsubscribe(struct ubus_context *ctx, struct ubus_subscriber *obj, uint32_t id)
|
|
|
|
{
|
2012-12-14 13:11:40 +01:00
|
|
|
return __ubus_subscribe_request(ctx, &obj->obj, id, UBUS_MSG_UNSUBSCRIBE);
|
2012-12-13 18:44:15 +01:00
|
|
|
}
|
|
|
|
|