Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relatively high CPU usage (1-2% during every mouse event) #14

Open
chrisballinger opened this issue Feb 17, 2018 · 11 comments
Open

Relatively high CPU usage (1-2% during every mouse event) #14

chrisballinger opened this issue Feb 17, 2018 · 11 comments
Assignees

Comments

@chrisballinger
Copy link

chrisballinger commented Feb 17, 2018

Every mouse event causes the EventTapCallback to be called, which over time results in a constant 1-2% CPU usage.

I did a basic time profile and found that the main culprit is calling [NSEvent eventWithCGEvent:eventRef], which seems extremely slow for something that I assumed would be "toll-free". There are a few things I'm going to try to reduce CPU usage in the callback, but I was wondering if you had a preferred approach.

screen shot 2018-02-17 at 11 25 04 am

@chrisballinger chrisballinger changed the title Relatively high CPU usage (1-2% during every input event) Relatively high CPU usage (1-2% during every mouse event) Feb 17, 2018
@chrisballinger
Copy link
Author

After further investigation I think this is unavoidable because I don't think it's possible to distinguish between mouse gesture events and touchbar events without first creating the NSEvent.

@niw
Copy link
Owner

niw commented Feb 18, 2018

@chrisballinger Thank you for your investigation, I didn't realize that eventWithCGEvent: costs that much. Actually, after disassemble NSEvent implementation, it does more than I expected. Technically, scan all possible event types and create touches synchronously upfront, which is not deferring at all. I think we can use CGEvent directly with some private values to mitigate this call.

@niw niw reopened this Feb 18, 2018
@niw niw self-assigned this Feb 18, 2018
@niw
Copy link
Owner

niw commented Feb 18, 2018

Created #15 for testing.
The change removes all eventWithCGEvent: call from non Touch Bar related gesture events.
However, as I tested, probably because of amount of events we anyways need to observe, it still costs some CPU usage.
Wondering if this patch is worth enough or not... 🤔

@chrisballinger
Copy link
Author

I made a very similar patch on a branch that I threw away :) The hard part will be figuring out how to filter mouse gestures vs touchpad gestures from some private CGEvent API without first converting to NSEvent, because that would eliminate most of the noise. Even if you still have to eventually convert the touchpad gestures to NSEvent, being able to efficiently ignore the extraneous trackpad input would eliminate the vast majority of CPU usage since most of the time I'm not using the touchbar.

@niw
Copy link
Owner

niw commented Feb 18, 2018

@chrisballinger Yeah, that part, differentiating events from Touch Bar or normal multi touch device, requires some undocumented API usages. If you can test this branch and see some benefits, I’m going to merge this.

@ghazel
Copy link

ghazel commented Nov 24, 2018

I found another potential solution; watch IOHID for Touch Bar events, and only enable CGEventTap for a brief period after. As long as the CGEventTap was created before the event, it does seem to catch the keydown event.

Proof of concept: https://gist.github.com/ghazel/e2e0f2644f816cb4167021a2e0566357

@niw
Copy link
Owner

niw commented Nov 24, 2018

@ghazel Awesome. This is good hack. For sure, using IOKit would be a possible solution, not only for this but also other issues such as #4. Let me test your proof of concept and see the results!

@gch1p
Copy link

gch1p commented Jan 24, 2019

Hi! Have you tried the proposed IOKit solution?

@niw
Copy link
Owner

niw commented Feb 6, 2019

@gch1p Yeah, I tested once and tried to use it, however recently I was a little bit busy and couldn’t have time to work on it. I will give another work soon.

@koynoyno
Copy link

@niw Just found this app and it's extremely useful! However, I just can't use it while this bug is active, I prefer more battery life than constant loading on CPU. Would it be possible to fix this issue?

@DennisSchiefer
Copy link

I can second that. If @niw is currently busy, @ghazel would you be up to trying to add this to HapticKey?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants