17 #ifndef LIBHOMESCREEN_H 18 #define LIBHOMESCREEN_H 23 #include <json-c/json.h> 24 #include <systemd/sd-event.h> 27 #include <afb/afb-binding.h> 28 #include <afb/afb-wsj1.h> 29 #include <afb/afb-ws-client.h> 50 static const std::vector<std::string>
api_list;
54 int init(
const int port,
const std::string& token);
63 void (*event_cb)(
const std::string&
event,
struct json_object* event_contents),
64 void (*reply_cb)(
struct json_object* reply_contents),
65 void (*hangup_cb)(
void) =
nullptr);
67 int call(
const std::string& verb,
struct json_object* arg);
68 int call(
const char* verb,
struct json_object* arg);
69 int subscribe(
const std::string& event_name);
73 int initialize_websocket();
75 void (*onEvent)(
const std::string& event,
struct json_object* event_contents);
76 void (*onReply)(
struct json_object* reply);
77 void (*onHangup)(void);
79 struct afb_wsj1* sp_websock;
80 struct afb_wsj1_itf minterface;
85 std::string mtoken =
"hs";
87 std::map<EventType, handler_func> handlers;
91 void on_hangup(
void *closure,
struct afb_wsj1 *wsj);
92 void on_call(
void *closure,
const char *api,
const char *verb,
struct afb_wsj1_msg *msg);
93 void on_event(
void *closure,
const char *event,
struct afb_wsj1_msg *msg);
94 void on_reply(
void *closure,
struct afb_wsj1_msg *msg);
void on_event(void *closure, const char *event, struct afb_wsj1_msg *msg)
void on_reply(void *closure, struct afb_wsj1_msg *msg)
int onScreenReply(const char *reply_message)
LibHomeScreen & operator=(const LibHomeScreen &)=delete
std::function< void(json_object *)> handler_func
void on_call(void *closure, const char *api, const char *verb, struct afb_wsj1_msg *msg)
int call(const std::string &verb, struct json_object *arg)
void on_hangup(void *closure, struct afb_wsj1 *wsj)
int tapShortcut(const char *application_name)
int subscribe(const std::string &event_name)
static const std::vector< std::string > event_list
int init(const int port, const std::string &token)
int onScreenMessage(const char *display_message)
static const std::vector< std::string > api_list
int unsubscribe(const std::string &event_name)
void set_event_handler(enum EventType et, handler_func f)
void registerCallback(void(*event_cb)(const std::string &event, struct json_object *event_contents), void(*reply_cb)(struct json_object *reply_contents), void(*hangup_cb)(void)=nullptr)