summaryrefslogtreecommitdiff
path: root/src/rcl-timedate.h
blob: 75710dda4bd7be63fb345989fdffb1146d670b19 (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
74
75
76
/*
 * Copyright (C) 2023 Andrey V.Kosteltsev <kx@radix.pro>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifndef __RCL_DAEMON_H__
#define __RCL_DAEMON_H__

#include <dbus/rcl-timedate-generated.h>

G_BEGIN_DECLS

#define RCL_TYPE_DAEMON         (rcl_daemon_get_type ())
#define RCL_DAEMON(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), RCL_TYPE_DAEMON, RclDaemon))
#define RCL_DAEMON_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), RCL_TYPE_DAEMON, RclDaemonClass))
#define RCL_IS_DAEMON(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), RCL_TYPE_DAEMON))
#define RCL_IS_DAEMON_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), RCL_TYPE_DAEMON))
#define RCL_DAEMON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), RCL_TYPE_DAEMON, RclDaemonClass))

typedef struct RclDaemonPrivate RclDaemonPrivate;

typedef struct
{
  RclTimedateDaemonSkeleton  parent;
  RclDaemonPrivate          *priv;
} RclDaemon;

typedef struct
{
  RclTimedateDaemonSkeletonClass parent_class;
} RclDaemonClass;

typedef enum
{
  RCL_DAEMON_ERROR_GENERAL,
  RCL_DAEMON_ERROR_NOT_PRIVILEGED,
  RCL_DAEMON_ERROR_INVALID_TIMEZONE_FILE,
  RCL_DAEMON_ERROR_INVALID_ARGS,
  RCL_DAEMON_ERROR_NOT_SUPPORTED,
  RCL_DAEMON_NUM_ERRORS
} RclDaemonError;

#define RCL_DAEMON_ERROR rcl_daemon_error_quark ()

GQuark     rcl_daemon_error_quark ( void );
GType      rcl_daemon_get_type    ( void );
RclDaemon *rcl_daemon_new         ( void );

/* private */
gboolean  rcl_daemon_startup     ( RclDaemon       *daemon,
                                   GDBusConnection *connection );
void      rcl_daemon_shutdown    ( RclDaemon       *daemon );
void      rcl_daemon_set_debug   ( RclDaemon       *daemon,
                                   gboolean         debug  );
gboolean  rcl_daemon_get_debug   ( RclDaemon       *daemon );

void      rcl_daemon_sync_dbus_properties( RclTimedateDaemon *object );

G_END_DECLS

#endif /* __RCL_DAEMON_H__ */