File: map-event.h

package info (click to toggle)
bluez 5.83-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 25,664 kB
  • sloc: ansic: 471,418; python: 4,751; sh: 4,580; makefile: 1,042; xml: 126
file content (58 lines) | stat: -rw-r--r-- 1,342 bytes parent folder | download | duplicates (3)
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
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 *
 *  OBEX
 *
 *  Copyright (C) 2013  BMW Car IT GmbH. All rights reserved.
 *
 *
 */

struct obc_session;

enum map_event_type {
	MAP_ET_NEW_MESSAGE,
	MAP_ET_DELIVERY_SUCCESS,
	MAP_ET_SENDING_SUCCESS,
	MAP_ET_DELIVERY_FAILURE,
	MAP_ET_SENDING_FAILURE,
	MAP_ET_MEMORY_FULL,
	MAP_ET_MEMORY_AVAILABLE,
	MAP_ET_MESSAGE_DELETED,
	MAP_ET_MESSAGE_SHIFT
};

struct map_event {
	enum map_event_type type;
	uint64_t handle;
	char *folder;
	char *old_folder;
	char *msg_type;
	char *datetime;
	char *subject;
	char *sender_name;
	char *priority;
};

/* Handle notification in map client.
 *
 * event: Event report.
 *
 * Callback shall be called for every received event.
 */
typedef void (*map_event_cb) (struct map_event *event, void *user_data);

/* Registers client notification handler callback for events that are
 * addressed to the given mas instance id for the given device.
 */
bool map_register_event_handler(struct obc_session *session, int mas_id,
					map_event_cb cb, void *user_data);

/* Unregisters client notification handler callback.
 */
void map_unregister_event_handler(struct obc_session *session, int mas_id);

/* Dispatch notification to a registered notification handler callback.
 */
void map_dispatch_event(int mas_id, const char *device,
						struct map_event *event);