Giter Site home page Giter Site logo

Comments (6)

kwhat avatar kwhat commented on May 18, 2024

Do you get any key typed events?

from libuiohook.

WilixLead avatar WilixLead commented on May 18, 2024

from libuiohook.

WilixLead avatar WilixLead commented on May 18, 2024

Today I add logger function to my module and get some additional information.

  1. I found in demo this code part and add it to my module source:
// NOTE Darwin requires that you start your own runloop from main.
CFRunLoopRun();
  1. This is part of log from my module
hook_set_dispatch_proc [105]: Setting new dispatch callback to 0x101e9f8a0.
hook_run [1126]: Accessibility API is enabled.
Hook started
hook_run [1173]: CGEventTapCreate Successful.
hook_run [1179]: CFMachPortCreateRunLoopSource successful.
hook_run [1184]: CFRunLoopGetCurrent successful.
hook_run [1197]: CFRunLoopObserverCreate successful.
hook_run [1216]: dlsym(RTLD_DEFAULT, dispatch_get_main_queue): symbol not found. <----
hook_run [1222]: Failed to locate dispatch_sync_f() or dispatch_get_main_queue()! <----
hook_run [1226]: Falling back to runloop signaling. <----
start_message_port_runloop [274]: Successful.
dispatch_event [114]: Dispatching event type 1.
process_key_pressed [373]: Key 0X35 pressed. (0X2C)
dispatch_event [114]: Dispatching event type 4. <---- Event dispatched
process_key_pressed [427]: Failed to signal RunLoop main! <---- This is error
/process_key_released [475]: Key 0X35 released. (0X2C) <---- Another event dispatched successful 
dispatch_event [114]: Dispatching event type 5.
process_key_pressed [373]: Key 0X34 pressed. (0X2F)

Looks like I skip something for macOS, but I don't understand, what.
Thanks!

from libuiohook.

WilixLead avatar WilixLead commented on May 18, 2024

any news?

from libuiohook.

kwhat avatar kwhat commented on May 18, 2024

Hey, sorry for the delay. The problem is related to late loading some apple queue functionality. (https://developer.apple.com/library/content/documentation/General/Conceptual/ConcurrencyProgrammingGuide/OperationQueues/OperationQueues.html)

How are you currently compiling and linking? The library code is looking to define https://developer.apple.com/reference/dispatch/1453123-dispatch_sync_f from dlsym(RTLD_DEFAULT, "dispatch_sync_f"); which should find that function in the default library search. Is your lib path correct for your use case? You maybe able to compile with -D USE_WEAK_IMPORT=1 if you dont need old mac support (10.5 era iirc).

from libuiohook.

WilixLead avatar WilixLead commented on May 18, 2024

Thank you for answer. But I can't find way for include Dispatch framework. I am not a C++ coder :) And I don't have good understanding how is MacOS frameworks work.
But I use examples in my CMakeLists.txt code like:

find_library(FRAMEWORK_IOKIT IOKit)
find_library(FRAMEWORK_Carbon Carbon)
target_link_libraries(${PROJECT_NAME} ${FRAMEWORK_IOKIT} ${FRAMEWORK_Carbon})

I try to add find_library(FRAMEWORK_Dispatch Dispatch) and change line
target_link_libraries(${PROJECT_NAME} ${FRAMEWORK_IOKIT} ${FRAMEWORK_Carbon} ${FRAMEWORK_Dispatch})

But it not help's... May be I skip something?

from libuiohook.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.