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

Nonblocking v2 #102

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open

Nonblocking v2 #102

wants to merge 13 commits into from

Conversation

chendo
Copy link
Member

@chendo chendo commented Oct 26, 2015

Last one wouldn't merge cleanly with master and felt a bit meh so I started over.

Xcode feels a lot better with non-blocking turned on!

Changes:

  • Added checkbox in Experimental options to enable Non-blocking mode and set delay. Defaults to off and 0.1 seconds.
  • Uses a dispatch_source_t timer to start delay after typing
  • _fa_bestMatchForQuery will now bail out if the prefix changes (i.e. a new keystroke happens when it's in a middle of matching). This could be implemented a bit nicer
  • Matching no longer blocks main thread if non-blocking is on

Haven't been able to crash it yet!

Caveats:

  • Disabled inline preview for non-blocking as we see super weird reverse typing issues when the user types in a matching completion
  • I couldn't figure out a nice way to get dispatch_source_t into objc_setAssociatedObject (wrapping in NSValue didn't appear to do what I wanted), so it's static

@chendo chendo mentioned this pull request Oct 26, 2015
1 task
@chendo
Copy link
Member Author

chendo commented Oct 26, 2015

Forgot about the weird reverse typing thing reported by @mokagio, still a problem with inline preview turned on.

@@ -22,6 +22,8 @@
#import "FAItemScoringMethod.h"
#import <objc/runtime.h>

#define dispatch_on_main($block) (dispatch_get_current_queue() == dispatch_get_main_queue() ? $block() : dispatch_sync(dispatch_get_main_queue(), $block))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't have any dispatch_sync calling _fa_performFuzzyFiltering from a background thread which is the only case where it would cause a deadlock, but I can work around it so we don't call dispatch_get_current_queue() cause it's deprecated

@vlas-voloshin
Copy link

Hey @chendo thanks for this improvement!
I got this crash today: https://dl.dropboxusercontent.com/u/40762640/Xcode_2015-11-06-131820_Vlas-Voloshin-MacBook-Pro.crash
It was in Swift code, I think I was typing default: in a switch statement. Hopefully it's helpful! I'll keep testing.

@chendo
Copy link
Member Author

chendo commented Nov 6, 2015

@vlas-voloshin thanks for the report, will investigate and hopefully fix! Doesn't seem to be specifically tied to the statement, more of a timing issue with running the autocompletion outside of text insertion.

@vlas-voloshin
Copy link

@chendo
Copy link
Member Author

chendo commented Nov 6, 2015

@vlas-voloshin thanks for that! I've pushed two commits that should hopefully solve those crashes, let me know if you see any other ones.

@vlas-voloshin
Copy link

@chendo I think it's much more stable now, thanks! Though I got another crash, now in Objective C code 😃
https://dl.dropboxusercontent.com/u/40762640/Xcode_2015-11-07-012633_Vlas-Voloshin-MacBook-Pro.crash

@chendo
Copy link
Member Author

chendo commented Nov 7, 2015

@vlas-voloshin I've hopefully patched around that, let me know if you see that crash again

@vlas-voloshin
Copy link

@chendo
Copy link
Member Author

chendo commented Nov 9, 2015

@vlas-voloshin was that with those last 2 commits I pushed?

@vlas-voloshin
Copy link

@chendo yes, I believe so. I will, however, try doing a clean rebuild/install of the plugin.

@vlas-voloshin
Copy link

@chendo I also keep seeing a rare, but annoying issue with autocompletion results list appearing and moving the caret a bit backwards while I'm still typing, so I end up inserting something inside already typed text 😢

@chendo
Copy link
Member Author

chendo commented Nov 10, 2015

Is that with inline preview turned on?

On 10 Nov 2015, at 11:12 AM, Vlas Voloshin [email protected] wrote:

@chendo I also keep seeing a rare, but annoying issue with autocompletion results list appearing and moving the caret a bit backwards while I'm still typing, so I end up inserting something inside already typed text


Reply to this email directly or view it on GitHub.

@vlas-voloshin
Copy link

@chendo no, I don't use Inline Preview actually.

@chendo
Copy link
Member Author

chendo commented Nov 11, 2015

@vlas-voloshin hmm okay, that seems like that's gonna be difficult to track down and fix especially without a reliable repro :(

@cbowns
Copy link

cbowns commented Nov 30, 2015

@chendo What's the best way to try this out? pull down your PR branch and build it locally? or if it makes crash symbolication easier, do you have a pre-built version I should use?

@zenangst
Copy link
Contributor

Hey @chendo kudos on this PR, using it now to see how it spins. I'll let you know if I run into anything weird.

@chendo
Copy link
Member Author

chendo commented Jan 21, 2016

@cbowns yeah, pulling down the PR and building in Xcode should build it into the right directory. Don't have a pre-built version at this time.

@zenangst cool, thanks!

Also FYI, Xcode 7.3 beta has got fuzzy autocomplete but I haven't tried it out yet

@zenangst
Copy link
Contributor

@chendo been using this all day yesterday and today at work. Works like a charm!

@cbowns
Copy link

cbowns commented Jan 22, 2016

Belay that, after a removal and reinstall it's all fine.

When I add Xcode 7.2's UUID to the compatibility list, then relaunch Xcode and load FuzzyAutocomplete, I get a crash. (Uploaded at https://cloudup.com/icgeEwpjKdW)

1/22/16 12:33:44.323 PM Xcode[70629]: [MT] DVTAssertions: UNCAUGHT EXCEPTION (NSInvalidArgumentException): *** -[__NSCFConstantString stringByAppendingString:]: nil argument
UserInfo: (null)
Hints: None
1/22/16 12:33:47.237 PM Xcode[70629]: [MT] DVTAssertions: 
Backtrace:
  0  0x00007fff87f56aca __exceptionPreprocess (in CoreFoundation)
  1  0x0000000108e81c67 DVTFailureHintExceptionPreprocessor (in DVTFoundation)
  2  0x00007fff95a06f7e objc_exception_throw (in libobjc.A.dylib)
  3  0x00007fff87f5698d +[NSException raise:format:] (in CoreFoundation)
  4  0x00007fff9330e027 -[NSString stringByAppendingString:] (in Foundation)
  5  0x00000001106acdf2 +[FuzzyAutocomplete createMenuItem] at /Users/cbowns/Development/FuzzyAutocompletePlugin/FuzzyAutocomplete/FuzzyAutocomplete.m:94 (in FuzzyAutocomplete)
  6  0x00000001106acc3b +[FuzzyAutocomplete menuDidChange:] at /Users/cbowns/Development/FuzzyAutocompletePlugin/FuzzyAutocomplete/FuzzyAutocomplete.m:81 (in FuzzyAutocomplete)
  7  0x00007fff87f1070c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ (in CoreFoundation)
  8  0x00007fff87f1067f ___CFXRegistrationPost_block_invoke (in CoreFoundation)
  9  0x00007fff87f0fd47 _CFXRegistrationPost (in CoreFoundation)
 10  0x00007fff87f0fab2 ___CFXNotificationPost_block_invoke (in CoreFoundation)
 11  0x00007fff87f09d42 -[_CFXNotificationRegistrar find:object:observer:enumerator:] (in CoreFoundation)
 12  0x00007fff87df8145 _CFXNotificationPost (in CoreFoundation)
 13  0x00007fff932e7921 -[NSNotificationCenter postNotificationName:object:userInfo:] (in Foundation)
 14  0x0000000108e58f55 -[NSNotificationCenter(DVTNSNotificationCenterAdditions) _dvt_postNotificationName:object:userInfo:] (in DVTFoundation)
 15  0x00007fff8b040faf -[NSMenu _menuItem:didChangeKeyEquivalentModifierMaskFrom:to:] (in AppKit)
 16  0x0000000109326fb9 -[NSMenuItem(DVTNSMenuItemAdditions) _dvt_actualKeyEquivalent] (in DVTKit)
 17  0x0000000109326e80 -[NSMenuItem(DVTNSMenuItemAdditions) dvt_setShowsKeyEquivalent:] (in DVTKit)
 18  0x000000010a0be0f1 -[IDEApplicationController _updateCloseKeyEquivalents] (in IDEKit)
 19  0x000000010a0bb11d -[IDEApplicationController applicationWillFinishLaunching:] (in IDEKit)
 20  0x00007fff87f1070c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ (in CoreFoundation)
 21  0x00007fff87f1067f ___CFXRegistrationPost_block_invoke (in CoreFoundation)
 22  0x00007fff87f0fd47 _CFXRegistrationPost (in CoreFoundation)
 23  0x00007fff87f0fab2 ___CFXNotificationPost_block_invoke (in CoreFoundation)
 24  0x00007fff87f09d42 -[_CFXNotificationRegistrar find:object:observer:enumerator:] (in CoreFoundation)
 25  0x00007fff87df8145 _CFXNotificationPost (in CoreFoundation)
 26  0x00007fff932e7921 -[NSNotificationCenter postNotificationName:object:userInfo:] (in Foundation)
 27  0x0000000108e58f55 -[NSNotificationCenter(DVTNSNotificationCenterAdditions) _dvt_postNotificationName:object:userInfo:] (in DVTFoundation)
 28  0x00007fff8b0452c2 -[NSApplication finishLaunching] (in AppKit)
 29  0x000000010945ef62 -[DVTApplication finishLaunching] (in DVTKit)
 30  0x00007fff8b044e05 -[NSApplication run] (in AppKit)
 31  0x00007fff8afc7520 NSApplicationMain (in AppKit)
 32  0x00007fff91f895ad start (in libdyld.dylib)

@cbowns
Copy link

cbowns commented Jan 22, 2016

Is the version number for this still 2.1.1? I'm trying to verify in the Xcode UI that I'm actually using this plug-in and not some cached thing from somewhere else in the system.

@zenangst
Copy link
Contributor

zenangst commented Feb 1, 2016

This works great for me, haven't had a crash yet.

@DenTelezhkin
Copy link

Guys, what are the plans on this PR? Is it ready for use, or it's better to build plugin from nonblocking branch for now?

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

Successfully merging this pull request may close these issues.

6 participants