blob: 460eed5a4169c4c71bc4d9d4f0a52566eac3684c (
plain)
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
|
/*
* Copyright © 2018 Red Hat, Inc
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Christian J. Kellner <christian@kellner.me>
*/
#pragma once
#include <glib.h>
G_BEGIN_DECLS
/* D-Bus API revision (here for the lack of a better place) */
#define BOLT_DBUS_API_VERSION 1U
/* logging */
#define BOLT_LOG_DOMAIN_UID "BOLT_DOMAIN_UID"
#define BOLT_LOG_DOMAIN_NAME "BOLT_DOMAIN_NAME"
#define BOLT_LOG_DEVICE_UID "BOLT_DEVICE_UID"
#define BOLT_LOG_DEVICE_NAME "BOLT_DEVICE_NAME"
#define BOLT_LOG_DEVICE_STATE "BOLT_DEVICE_STATE"
#define BOLT_LOG_ERROR_DOMAIN "ERROR_DOMAIN"
#define BOLT_LOG_ERROR_CODE "ERROR_CODE"
#define BOLT_LOG_ERROR_MESSAGE "ERROR_MESSAGE"
#define BOLT_LOG_TOPIC "BOLT_TOPIC"
#define BOLT_LOG_VERSION "BOLT_VERSION"
#define BOLT_LOG_CONTEXT "BOLT_LOG_CONTEXT"
#define BOLT_LOG_BUG_MARK "BOLT_LOG_BUG"
/* logging - message ids */
#define BOLT_LOG_MSG_IDLEN 33
#define BOLT_LOG_MSG_ID_STARTUP "dd11929c788e48bdbb6276fb5f26b08a"
/* dbus */
#define BOLT_DBUS_NAME "org.freedesktop.bolt"
#define BOLT_DBUS_PATH "/org/freedesktop/bolt"
#define BOLT_DBUS_PATH_DOMAINS BOLT_DBUS_PATH "/domains"
#define BOLT_DBUS_PATH_DEVICES BOLT_DBUS_PATH "/devices"
#define BOLT_DBUS_INTERFACE "org.freedesktop.bolt1.Manager"
#define BOLT_DBUS_DEVICE_INTERFACE "org.freedesktop.bolt1.Device"
#define BOLT_DBUS_DOMAIN_INTERFACE "org.freedesktop.bolt1.Domain"
#define BOLT_DBUS_POWER_INTERFACE "org.freedesktop.bolt1.Power"
/* other well known names */
#define INTEL_WMI_THUNDERBOLT_GUID "86CCFD48-205E-4A77-9C48-2021CBEDE341"
/* helper functions */
char * bolt_gen_object_path (const char *path_base,
const char *object_id);
G_END_DECLS
|