diff options
author | Vladislav Kaznacheev <kaznacheev@google.com> | 2016-09-09 19:42:04 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-09-09 19:42:04 +0000 |
commit | 23bb30843ca2c760b15ef07f0d9a344f3b198e41 (patch) | |
tree | 12a618cf12d5b534c91dccfe105200ddc3b77747 /libs/input/PointerController.cpp | |
parent | 12487d1abcae9f2f877dc49935cd134e8678fda8 (diff) | |
parent | 8728a2fe53cd63b4f78fe28dc8205ece88eba75e (diff) |
Hold a weak reference to PointerController when handling vsync am: 33c5903e77
am: 8728a2fe53
Change-Id: Id131b973188298718a6f5423373af5bf54c8b18f
Diffstat (limited to 'libs/input/PointerController.cpp')
-rw-r--r-- | libs/input/PointerController.cpp | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/libs/input/PointerController.cpp b/libs/input/PointerController.cpp index 27193b743379..abef66f9ecd9 100644 --- a/libs/input/PointerController.cpp +++ b/libs/input/PointerController.cpp @@ -36,6 +36,29 @@ namespace android { +// --- WeakLooperCallback --- + +class WeakLooperCallback: public LooperCallback { +protected: + virtual ~WeakLooperCallback() { } + +public: + WeakLooperCallback(const wp<LooperCallback>& callback) : + mCallback(callback) { + } + + virtual int handleEvent(int fd, int events, void* data) { + sp<LooperCallback> callback = mCallback.promote(); + if (callback != NULL) { + return callback->handleEvent(fd, events, data); + } + return 0; // the client is gone, remove the callback + } + +private: + wp<LooperCallback> mCallback; +}; + // --- PointerController --- // Time to wait before starting the fade when the pointer is inactive. @@ -57,10 +80,11 @@ PointerController::PointerController(const sp<PointerControllerPolicyInterface>& const sp<Looper>& looper, const sp<SpriteController>& spriteController) : mPolicy(policy), mLooper(looper), mSpriteController(spriteController) { mHandler = new WeakMessageHandler(this); + mCallback = new WeakLooperCallback(this); if (mDisplayEventReceiver.initCheck() == NO_ERROR) { mLooper->addFd(mDisplayEventReceiver.getFd(), Looper::POLL_CALLBACK, - Looper::EVENT_INPUT, this, nullptr); + Looper::EVENT_INPUT, mCallback, nullptr); } else { ALOGE("Failed to initialize DisplayEventReceiver."); } |