I'm struggling with a problem i can't find a way to solve. Here's the story.
I have an input method. Input method is to certain extent automatic, that is, it synchronizes input on a device (say: phone) with an input on another device (say: computer). Whenever I start typing things on my local app, i want to have my typed text synced with the phone. To do that, I introduced an InputMethodService (derived from AbstractInputMethodService), an InputMethod (derived from AbstractInputMethodImpl) and a InputMethodSession (AbstractInputMethodSessionImpl), because if i change something on the phone, I want to be able to report it back to my computer.
now the problem is with synchronizing InputMethod and InputMethodSession. I want to synchronize as much as possible, including selection or cursor position. This can be done in updateSelection and updateExtractedText, so if i move things around on cell phone these methods are called and i can report things to my computer. Problem is, if i edit things on my computer, these functions are called, too, so i have a feedback loop, which causes plenty of trouble (i update only delta, not entire text).
My problem is, I want to be able to inform session (from an input method), that the following changes are to be ignored (= not forwarded to the client), and when i complete applying modifications, tell it again that it is okay to resume forwarding, so for example have this scenario inside session:
block forward -> commit text -> change selection -> resume forward
if i call session methods directly, i always end up with:
block forward -> resume forward -> commit text -> change selection.
i understand this is because my commits are forwarded to the task that requires my input and then back to me - from the task - after the input is applied. InputMethodManager from inside my InputMethod does not seem to have any details about the field being currently edited, which again makes sense, because it's a totally different process (InputMethodService vs application).
Now question is:
How can I synchronize these two classes, so that the former scenario is executed every time?
Thanks for your help! T.