gohook/event/goEvent.h

173 lines
4.3 KiB
C
Raw Normal View History

2018-09-17 07:25:32 +08:00
// Copyright 2016 The go-vgo Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// https://github.com/go-vgo/robotgo/blob/master/LICENSE
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2019-02-20 23:07:25 +08:00
#ifndef goevent_h
#define goevent_h
2018-09-17 07:25:32 +08:00
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
2018-09-18 01:36:29 +08:00
#include <stdlib.h>
2018-09-17 07:25:32 +08:00
#include "pub.h"
2019-02-20 23:07:25 +08:00
// #include "../chan/eb_chan.h"
#include "dispatch_proc.h"
void go_send(char*);
void go_sleep(void);
2019-02-20 23:07:25 +08:00
void start_ev(){
events = eb_chan_create(1024);
eb_chan_retain(events);
sending = true;
2019-02-20 23:07:25 +08:00
// add_event("q");
add_event_async();
}
2018-09-17 07:25:32 +08:00
void pollEv(){
2019-02-20 23:07:25 +08:00
if (events == NULL) { return; }
2019-02-19 22:47:03 +08:00
for (;eb_chan_buf_len(events)!=0;) {
char* tmp;
2019-02-19 23:32:48 +08:00
if (eb_chan_try_recv(events, (const void**) &tmp)
== eb_chan_res_ok) {
// send a char
go_send(tmp);
free(tmp);
2019-02-19 22:47:03 +08:00
} else {
//
}
}
}
void endPoll(){
sending = false;
2019-02-19 22:47:03 +08:00
pollEv(); // remove last things from channel
eb_chan_release(events);
}
2018-09-17 07:25:32 +08:00
2019-02-20 23:07:25 +08:00
int add_event(char *key_event) {
// (uint16_t *)
cevent = key_event;
add(&dispatch_proc_end);
2018-09-17 07:25:32 +08:00
2019-02-20 23:07:25 +08:00
return cstatus;
2018-09-17 07:25:32 +08:00
}
2019-02-20 23:07:25 +08:00
void add_event_async(){
add(&dispatch_proc);
}
int add(dispatcher_t dispatch) {
2018-09-17 07:25:32 +08:00
// Set the logger callback for library output.
2018-11-13 04:39:16 +08:00
hook_set_logger(&loggerProc);
2018-09-17 07:25:32 +08:00
// Set the event callback for IOhook events.
2019-02-20 23:07:25 +08:00
hook_set_dispatch_proc(dispatch);
2018-09-17 07:25:32 +08:00
// Start the hook and block.
// NOTE If EVENT_HOOK_ENABLED was delivered, the status will always succeed.
int status = hook_run();
switch (status) {
case IOHOOK_SUCCESS:
// Everything is ok.
break;
// System level errors.
case IOHOOK_ERROR_OUT_OF_MEMORY:
loggerProc(LOG_LEVEL_ERROR, "Failed to allocate memory. (%#X)", status);
break;
// X11 specific errors.
case IOHOOK_ERROR_X_OPEN_DISPLAY:
loggerProc(LOG_LEVEL_ERROR, "Failed to open X11 display. (%#X)", status);
break;
case IOHOOK_ERROR_X_RECORD_NOT_FOUND:
loggerProc(LOG_LEVEL_ERROR, "Unable to locate XRecord extension. (%#X)", status);
break;
case IOHOOK_ERROR_X_RECORD_ALLOC_RANGE:
loggerProc(LOG_LEVEL_ERROR, "Unable to allocate XRecord range. (%#X)", status);
break;
case IOHOOK_ERROR_X_RECORD_CREATE_CONTEXT:
loggerProc(LOG_LEVEL_ERROR, "Unable to allocate XRecord context. (%#X)", status);
break;
case IOHOOK_ERROR_X_RECORD_ENABLE_CONTEXT:
loggerProc(LOG_LEVEL_ERROR, "Failed to enable XRecord context. (%#X)", status);
break;
// Windows specific errors.
case IOHOOK_ERROR_SET_WINDOWS_HOOK_EX:
loggerProc(LOG_LEVEL_ERROR, "Failed to register low level windows hook. (%#X)", status);
break;
// Darwin specific errors.
case IOHOOK_ERROR_AXAPI_DISABLED:
loggerProc(LOG_LEVEL_ERROR, "Failed to enable access for assistive devices. (%#X)", status);
break;
case IOHOOK_ERROR_CREATE_EVENT_PORT:
loggerProc(LOG_LEVEL_ERROR, "Failed to create apple event port. (%#X)", status);
break;
case IOHOOK_ERROR_CREATE_RUN_LOOP_SOURCE:
loggerProc(LOG_LEVEL_ERROR, "Failed to create apple run loop source. (%#X)", status);
break;
case IOHOOK_ERROR_GET_RUNLOOP:
loggerProc(LOG_LEVEL_ERROR, "Failed to acquire apple run loop. (%#X)", status);
break;
case IOHOOK_ERROR_CREATE_OBSERVER:
loggerProc(LOG_LEVEL_ERROR, "Failed to create apple run loop observer. (%#X)", status);
break;
// Default error.
case IOHOOK_FAILURE:
default:
loggerProc(LOG_LEVEL_ERROR, "An unknown hook error occurred. (%#X)", status);
break;
}
2019-02-20 23:07:25 +08:00
return status;
2018-09-17 07:25:32 +08:00
// printf("%d\n", status);
2019-02-20 23:07:25 +08:00
// return cstatus;
2018-09-17 07:25:32 +08:00
}
int stop_event(){
int status = hook_stop();
switch (status) {
// System level errors.
case IOHOOK_ERROR_OUT_OF_MEMORY:
loggerProc(LOG_LEVEL_ERROR, "Failed to allocate memory. (%#X)", status);
break;
case IOHOOK_ERROR_X_RECORD_GET_CONTEXT:
// NOTE This is the only platform specific error that occurs on hook_stop().
loggerProc(LOG_LEVEL_ERROR, "Failed to get XRecord context. (%#X)", status);
break;
// Default error.
2018-09-17 07:25:32 +08:00
case IOHOOK_FAILURE:
default:
// loggerProc(LOG_LEVEL_ERROR, "An unknown hook error occurred. (%#X)", status);
break;
}
return status;
}
#endif