1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
*
* OBEX
*
* Copyright (C) 2013 BMW Car IT GmbH. All rights reserved.
*
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <glib.h>
#include <string.h>
#include <stdbool.h>
#include <inttypes.h>
#include "gdbus/gdbus.h"
#include "obexd/src/log.h"
#include "map-event.h"
#include "transfer.h"
#include "session.h"
static GSList *handlers;
struct mns_handler {
int mas_id;
struct obc_session *session;
map_event_cb cb;
void *user_data;
};
static struct mns_handler *find_handler(int mas_id, const char *device)
{
GSList *list;
for (list = handlers; list; list = list->next) {
struct mns_handler *handler = list->data;
if (mas_id != handler->mas_id)
continue;
if (g_str_equal(device,
obc_session_get_destination(handler->session)))
return handler;
}
return NULL;
}
bool map_register_event_handler(struct obc_session *session,
int mas_id, map_event_cb cb,
void *user_data)
{
struct mns_handler *handler;
handler = find_handler(mas_id, obc_session_get_destination(session));
if (handler != NULL)
return FALSE;
handler = g_new0(struct mns_handler, 1);
handler->mas_id = mas_id;
handler->session = session;
handler->cb = cb;
handler->user_data = user_data;
handlers = g_slist_prepend(handlers, handler);
DBG("Handler %p for %s:%d registered", handler,
obc_session_get_destination(session), mas_id);
return TRUE;
}
void map_unregister_event_handler(struct obc_session *session, int mas_id)
{
struct mns_handler *handler;
handler = find_handler(mas_id, obc_session_get_destination(session));
if (handler == NULL)
return;
handlers = g_slist_remove(handlers, handler);
DBG("Handler %p for %s:%d unregistered", handler,
obc_session_get_destination(session), mas_id);
g_free(handler);
}
void map_dispatch_event(int mas_id, const char *device,
struct map_event *event)
{
struct mns_handler *handler;
handler = find_handler(mas_id, device);
if (handler)
handler->cb(event, handler->user_data);
}
|