Add flake8-ycm to test requirements
Fix errors reported by flake8-ycm.
This commit is contained in:
parent
8e448920c9
commit
6b4d705238
@ -1,5 +1,6 @@
|
|||||||
flake8 >= 3.0.0
|
flake8 >= 3.0.0
|
||||||
flake8-comprehensions >= 1.4.1
|
flake8-comprehensions >= 1.4.1
|
||||||
|
flake8-ycm >= 0.1.0
|
||||||
mock >= 1.0.1
|
mock >= 1.0.1
|
||||||
nose >= 1.3.7
|
nose >= 1.3.7
|
||||||
PyHamcrest >= 1.8.0
|
PyHamcrest >= 1.8.0
|
||||||
|
@ -32,7 +32,7 @@ from ycmd.utils import ToBytes, urljoin, urlparse, GetCurrentDirectory
|
|||||||
from ycmd.hmac_utils import CreateRequestHmac, CreateHmac, SecureBytesEqual
|
from ycmd.hmac_utils import CreateRequestHmac, CreateHmac, SecureBytesEqual
|
||||||
from ycmd.responses import ServerError, UnknownExtraConf
|
from ycmd.responses import ServerError, UnknownExtraConf
|
||||||
|
|
||||||
_HEADERS = {'content-type': 'application/json'}
|
_HEADERS = { 'content-type': 'application/json' }
|
||||||
_CONNECT_TIMEOUT_SEC = 0.01
|
_CONNECT_TIMEOUT_SEC = 0.01
|
||||||
# Setting this to None seems to screw up the Requests/urllib3 libs.
|
# Setting this to None seems to screw up the Requests/urllib3 libs.
|
||||||
_READ_TIMEOUT_SEC = 30
|
_READ_TIMEOUT_SEC = 30
|
||||||
|
@ -94,7 +94,7 @@ def _FormatCompleterDebugInfo( completer ):
|
|||||||
message += ' {0} process ID: {1}\n'.format( name, server[ 'pid' ] )
|
message += ' {0} process ID: {1}\n'.format( name, server[ 'pid' ] )
|
||||||
else:
|
else:
|
||||||
message += ' {0} not running\n'.format( name )
|
message += ' {0} not running\n'.format( name )
|
||||||
message += ' {0} executable: {1}\n'.format( name, server[ 'executable'] )
|
message += ' {0} executable: {1}\n'.format( name, server[ 'executable' ] )
|
||||||
logfiles = server[ 'logfiles' ]
|
logfiles = server[ 'logfiles' ]
|
||||||
if logfiles:
|
if logfiles:
|
||||||
message += ' {0} logfiles:\n'.format( name )
|
message += ' {0} logfiles:\n'.format( name )
|
||||||
|
@ -42,7 +42,7 @@ SYNTAX_ARGUMENT_REGEX = re.compile(
|
|||||||
r"^\w+=.*$" )
|
r"^\w+=.*$" )
|
||||||
|
|
||||||
SYNTAX_REGION_ARGUMENT_REGEX = re.compile(
|
SYNTAX_REGION_ARGUMENT_REGEX = re.compile(
|
||||||
r"^(?:matchgroup|start)=.*$")
|
r"^(?:matchgroup|start)=.*$" )
|
||||||
|
|
||||||
# See ":h syn-nextgroup".
|
# See ":h syn-nextgroup".
|
||||||
SYNTAX_NEXTGROUP_ARGUMENTS = {
|
SYNTAX_NEXTGROUP_ARGUMENTS = {
|
||||||
@ -106,7 +106,7 @@ def _SyntaxGroupsFromOutput( syntax_output ):
|
|||||||
group_name_to_group[ current_group.name ] = current_group
|
group_name_to_group[ current_group.name ] = current_group
|
||||||
|
|
||||||
current_group = SyntaxGroup( match.group( 'group_name' ),
|
current_group = SyntaxGroup( match.group( 'group_name' ),
|
||||||
[ match.group( 'content').strip() ] )
|
[ match.group( 'content' ).strip() ] )
|
||||||
else:
|
else:
|
||||||
if looking_for_group:
|
if looking_for_group:
|
||||||
continue
|
continue
|
||||||
|
@ -35,7 +35,7 @@ from ycm import base
|
|||||||
|
|
||||||
|
|
||||||
@contextlib.contextmanager
|
@contextlib.contextmanager
|
||||||
def MockCurrentFiletypes( filetypes = [''] ):
|
def MockCurrentFiletypes( filetypes = [ '' ] ):
|
||||||
with patch( 'ycm.vimsupport.CurrentFiletypes', return_value = filetypes ):
|
with patch( 'ycm.vimsupport.CurrentFiletypes', return_value = filetypes ):
|
||||||
yield
|
yield
|
||||||
|
|
||||||
@ -180,7 +180,7 @@ def LastEnteredCharIsIdentifierChar_Basic_test():
|
|||||||
|
|
||||||
|
|
||||||
def LastEnteredCharIsIdentifierChar_FiletypeHtml_test():
|
def LastEnteredCharIsIdentifierChar_FiletypeHtml_test():
|
||||||
with MockCurrentFiletypes( ['html'] ):
|
with MockCurrentFiletypes( [ 'html' ] ):
|
||||||
with MockCurrentColumnAndLineContents( 3, 'ab-' ):
|
with MockCurrentColumnAndLineContents( 3, 'ab-' ):
|
||||||
ok_( base.LastEnteredCharIsIdentifierChar() )
|
ok_( base.LastEnteredCharIsIdentifierChar() )
|
||||||
|
|
||||||
@ -272,7 +272,7 @@ def CurrentIdentifierFinished_InMiddleOfLine_test():
|
|||||||
|
|
||||||
|
|
||||||
def CurrentIdentifierFinished_Html_test():
|
def CurrentIdentifierFinished_Html_test():
|
||||||
with MockCurrentFiletypes( ['html'] ):
|
with MockCurrentFiletypes( [ 'html' ] ):
|
||||||
with MockCurrentColumnAndLineContents( 4, 'bar-zoo' ):
|
with MockCurrentColumnAndLineContents( 4, 'bar-zoo' ):
|
||||||
ok_( not base.CurrentIdentifierFinished() )
|
ok_( not base.CurrentIdentifierFinished() )
|
||||||
|
|
||||||
|
@ -203,7 +203,7 @@ class Response_Detection_test( object ):
|
|||||||
[ 'and8434fd andy garbag!',
|
[ 'and8434fd andy garbag!',
|
||||||
basic_fixit, basic_fixit_chunks, 0, False ],
|
basic_fixit, basic_fixit_chunks, 0, False ],
|
||||||
[ 'Format',
|
[ 'Format',
|
||||||
basic_fixit, basic_fixit_chunks, 0, True ],
|
basic_fixit, basic_fixit_chunks, 0, True ],
|
||||||
[ 'select from multiple 1',
|
[ 'select from multiple 1',
|
||||||
multi_fixit, multi_fixit_first_chunks, 0, False ],
|
multi_fixit, multi_fixit_first_chunks, 0, False ],
|
||||||
[ 'select from multiple 2',
|
[ 'select from multiple 2',
|
||||||
@ -293,7 +293,7 @@ class Response_Detection_test( object ):
|
|||||||
[ GoToTest, 'FindAThing', basic_goto ],
|
[ GoToTest, 'FindAThing', basic_goto ],
|
||||||
[ GoToTest, 'FixItGoto', basic_goto ],
|
[ GoToTest, 'FixItGoto', basic_goto ],
|
||||||
[ GoToListTest, 'AnythingYouLike', [ basic_goto ] ],
|
[ GoToListTest, 'AnythingYouLike', [ basic_goto ] ],
|
||||||
[ GoToListTest, 'GoTo', [] ],
|
[ GoToListTest, 'GoTo', [] ],
|
||||||
[ GoToListTest, 'FixItGoto', [ basic_goto, basic_goto ] ],
|
[ GoToListTest, 'FixItGoto', [ basic_goto, basic_goto ] ],
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -64,8 +64,8 @@ def RawResponse_ConvertedFromOmniCompleter_test():
|
|||||||
"kind": "KIND", "info": "INFO" },
|
"kind": "KIND", "info": "INFO" },
|
||||||
{ "word": "WORD2", "abbr": "ABBR2", "menu": "MENU2",
|
{ "word": "WORD2", "abbr": "ABBR2", "menu": "MENU2",
|
||||||
"kind": "KIND2", "info": "INFO" },
|
"kind": "KIND2", "info": "INFO" },
|
||||||
{ "word": "WORD", "abbr": "ABBR", },
|
{ "word": "WORD", "abbr": "ABBR", },
|
||||||
{ },
|
{},
|
||||||
]
|
]
|
||||||
expected_results = [
|
expected_results = [
|
||||||
has_entries( { "insertion_text": "WORD", "menu_text": "ABBR",
|
has_entries( { "insertion_text": "WORD", "menu_text": "ABBR",
|
||||||
@ -74,8 +74,8 @@ def RawResponse_ConvertedFromOmniCompleter_test():
|
|||||||
has_entries( { "insertion_text": "WORD2", "menu_text": "ABBR2",
|
has_entries( { "insertion_text": "WORD2", "menu_text": "ABBR2",
|
||||||
"extra_menu_info": "MENU2", "kind": [ "KIND2" ],
|
"extra_menu_info": "MENU2", "kind": [ "KIND2" ],
|
||||||
"detailed_info": "INFO" } ),
|
"detailed_info": "INFO" } ),
|
||||||
has_entries( { "insertion_text": "WORD", "menu_text": "ABBR", } ),
|
has_entries( { "insertion_text": "WORD", "menu_text": "ABBR", } ),
|
||||||
has_entries( { } ),
|
has_entries( {} ),
|
||||||
]
|
]
|
||||||
request = BuildOmnicompletionRequest( vim_results )
|
request = BuildOmnicompletionRequest( vim_results )
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ def RegexFilter_test():
|
|||||||
|
|
||||||
|
|
||||||
def RegexSingleList_test():
|
def RegexSingleList_test():
|
||||||
opts = _JavaFilter( { 'regex' : [ 'taco' ] } )
|
opts = _JavaFilter( { 'regex' : [ 'taco' ] } )
|
||||||
f = _CreateFilterForTypes( opts, [ 'java' ] )
|
f = _CreateFilterForTypes( opts, [ 'java' ] )
|
||||||
|
|
||||||
_assert_rejects( f, 'This is a Taco' )
|
_assert_rejects( f, 'This is a Taco' )
|
||||||
|
@ -389,7 +389,7 @@ def PostCompleteFixIt_ApplyFixIt_EmptyFixIt_test( replace_chunks, *args ):
|
|||||||
@patch( 'ycm.vimsupport.ReplaceChunks' )
|
@patch( 'ycm.vimsupport.ReplaceChunks' )
|
||||||
def PostCompleteFixIt_ApplyFixIt_NoFixIt_test( replace_chunks, *args ):
|
def PostCompleteFixIt_ApplyFixIt_NoFixIt_test( replace_chunks, *args ):
|
||||||
completions = [
|
completions = [
|
||||||
BuildCompletion( )
|
BuildCompletion()
|
||||||
]
|
]
|
||||||
with _SetUpCompleteDone( completions ) as request:
|
with _SetUpCompleteDone( completions ) as request:
|
||||||
request._OnCompleteDone_FixIt()
|
request._OnCompleteDone_FixIt()
|
||||||
|
@ -530,11 +530,11 @@ def MockVimModule():
|
|||||||
class VimError( Exception ):
|
class VimError( Exception ):
|
||||||
|
|
||||||
def __init__( self, code ):
|
def __init__( self, code ):
|
||||||
self.code = code
|
self.code = code
|
||||||
|
|
||||||
|
|
||||||
def __str__( self ):
|
def __str__( self ):
|
||||||
return repr( self.code )
|
return repr( self.code )
|
||||||
|
|
||||||
|
|
||||||
class ExtendedMock( MagicMock ):
|
class ExtendedMock( MagicMock ):
|
||||||
|
@ -1114,17 +1114,17 @@ def ReplaceChunks_User_Aborts_Opening_File_test(
|
|||||||
False, # second_file (apply)
|
False, # second_file (apply)
|
||||||
True, # side_effect (check after open)
|
True, # side_effect (check after open)
|
||||||
],
|
],
|
||||||
new_callable = ExtendedMock)
|
new_callable = ExtendedMock )
|
||||||
@patch( 'ycm.vimsupport.OpenFilename',
|
@patch( 'ycm.vimsupport.OpenFilename',
|
||||||
new_callable = ExtendedMock)
|
new_callable = ExtendedMock )
|
||||||
@patch( 'ycm.vimsupport.PostVimMessage',
|
@patch( 'ycm.vimsupport.PostVimMessage',
|
||||||
new_callable = ExtendedMock)
|
new_callable = ExtendedMock )
|
||||||
@patch( 'ycm.vimsupport.Confirm', return_value = True,
|
@patch( 'ycm.vimsupport.Confirm', return_value = True,
|
||||||
new_callable = ExtendedMock)
|
new_callable = ExtendedMock )
|
||||||
@patch( 'vim.eval', return_value = 10,
|
@patch( 'vim.eval', return_value = 10,
|
||||||
new_callable = ExtendedMock)
|
new_callable = ExtendedMock )
|
||||||
@patch( 'vim.command',
|
@patch( 'vim.command',
|
||||||
new_callable = ExtendedMock)
|
new_callable = ExtendedMock )
|
||||||
def ReplaceChunks_MultiFile_Open_test( vim_command,
|
def ReplaceChunks_MultiFile_Open_test( vim_command,
|
||||||
vim_eval,
|
vim_eval,
|
||||||
confirm,
|
confirm,
|
||||||
@ -1295,7 +1295,7 @@ def AddDiagnosticSyntaxMatch_UnicodeAtEndOfLine_test():
|
|||||||
|
|
||||||
|
|
||||||
@patch( 'vim.command', new_callable=ExtendedMock )
|
@patch( 'vim.command', new_callable=ExtendedMock )
|
||||||
@patch( 'vim.current', new_callable=ExtendedMock)
|
@patch( 'vim.current', new_callable=ExtendedMock )
|
||||||
def WriteToPreviewWindow_test( vim_current, vim_command ):
|
def WriteToPreviewWindow_test( vim_current, vim_command ):
|
||||||
vim_current.window.options.__getitem__ = MagicMock( return_value = True )
|
vim_current.window.options.__getitem__ = MagicMock( return_value = True )
|
||||||
|
|
||||||
@ -1534,8 +1534,8 @@ def SelectFromList_FirstItem_test( vim_eval ):
|
|||||||
|
|
||||||
@patch( 'vim.eval', side_effect = [ None, 3, None ] )
|
@patch( 'vim.eval', side_effect = [ None, 3, None ] )
|
||||||
def SelectFromList_OutOfRange_test( vim_eval ):
|
def SelectFromList_OutOfRange_test( vim_eval ):
|
||||||
assert_that( calling( vimsupport.SelectFromList).with_args( 'test',
|
assert_that( calling( vimsupport.SelectFromList ).with_args( 'test',
|
||||||
[ 'a', 'b' ] ),
|
[ 'a', 'b' ] ),
|
||||||
raises( RuntimeError, vimsupport.NO_SELECTION_MADE_MSG ) )
|
raises( RuntimeError, vimsupport.NO_SELECTION_MADE_MSG ) )
|
||||||
|
|
||||||
|
|
||||||
|
@ -240,22 +240,22 @@ def YouCompleteMe_DebugInfo_ServerNotRunning_test( ycm ):
|
|||||||
|
|
||||||
@YouCompleteMeInstance()
|
@YouCompleteMeInstance()
|
||||||
def YouCompleteMe_OnVimLeave_RemoveClientLogfileByDefault_test( ycm ):
|
def YouCompleteMe_OnVimLeave_RemoveClientLogfileByDefault_test( ycm ):
|
||||||
client_logfile = ycm._client_logfile
|
client_logfile = ycm._client_logfile
|
||||||
assert_that( os.path.isfile( client_logfile ),
|
assert_that( os.path.isfile( client_logfile ),
|
||||||
'Logfile {0} does not exist.'.format( client_logfile ) )
|
'Logfile {0} does not exist.'.format( client_logfile ) )
|
||||||
ycm.OnVimLeave()
|
ycm.OnVimLeave()
|
||||||
assert_that( not os.path.isfile( client_logfile ),
|
assert_that( not os.path.isfile( client_logfile ),
|
||||||
'Logfile {0} was not removed.'.format( client_logfile ) )
|
'Logfile {0} was not removed.'.format( client_logfile ) )
|
||||||
|
|
||||||
|
|
||||||
@YouCompleteMeInstance( { 'g:ycm_keep_logfiles': 1 } )
|
@YouCompleteMeInstance( { 'g:ycm_keep_logfiles': 1 } )
|
||||||
def YouCompleteMe_OnVimLeave_KeepClientLogfile_test( ycm ):
|
def YouCompleteMe_OnVimLeave_KeepClientLogfile_test( ycm ):
|
||||||
client_logfile = ycm._client_logfile
|
client_logfile = ycm._client_logfile
|
||||||
assert_that( os.path.isfile( client_logfile ),
|
assert_that( os.path.isfile( client_logfile ),
|
||||||
'Logfile {0} does not exist.'.format( client_logfile ) )
|
'Logfile {0} does not exist.'.format( client_logfile ) )
|
||||||
ycm.OnVimLeave()
|
ycm.OnVimLeave()
|
||||||
assert_that( os.path.isfile( client_logfile ),
|
assert_that( os.path.isfile( client_logfile ),
|
||||||
'Logfile {0} was removed.'.format( client_logfile ) )
|
'Logfile {0} was removed.'.format( client_logfile ) )
|
||||||
|
|
||||||
|
|
||||||
@YouCompleteMeInstance()
|
@YouCompleteMeInstance()
|
||||||
@ -696,7 +696,7 @@ def YouCompleteMe_UpdateMatches_ClearDiagnosticMatchesInNewBuffer_test( ycm ):
|
|||||||
@patch( 'ycm.vimsupport.PostVimMessage', new_callable = ExtendedMock )
|
@patch( 'ycm.vimsupport.PostVimMessage', new_callable = ExtendedMock )
|
||||||
def YouCompleteMe_AsyncDiagnosticUpdate_SingleFile_test( ycm,
|
def YouCompleteMe_AsyncDiagnosticUpdate_SingleFile_test( ycm,
|
||||||
post_vim_message,
|
post_vim_message,
|
||||||
*args ):
|
*args ):
|
||||||
|
|
||||||
# This test simulates asynchronous diagnostic updates associated with a single
|
# This test simulates asynchronous diagnostic updates associated with a single
|
||||||
# file (e.g. Translation Unit), but where the actual errors refer to other
|
# file (e.g. Translation Unit), but where the actual errors refer to other
|
||||||
@ -811,7 +811,7 @@ def YouCompleteMe_AsyncDiagnosticUpdate_SingleFile_test( ycm,
|
|||||||
@patch( 'ycm.vimsupport.PostVimMessage', new_callable = ExtendedMock )
|
@patch( 'ycm.vimsupport.PostVimMessage', new_callable = ExtendedMock )
|
||||||
def YouCompleteMe_AsyncDiagnosticUpdate_PerFile_test( ycm,
|
def YouCompleteMe_AsyncDiagnosticUpdate_PerFile_test( ycm,
|
||||||
post_vim_message,
|
post_vim_message,
|
||||||
*args ):
|
*args ):
|
||||||
|
|
||||||
# This test simulates asynchronous diagnostic updates which are delivered per
|
# This test simulates asynchronous diagnostic updates which are delivered per
|
||||||
# file, including files which are open and files which are not.
|
# file, including files which are open and files which are not.
|
||||||
@ -903,7 +903,7 @@ def YouCompleteMe_AsyncDiagnosticUpdate_PerFile_test( ycm,
|
|||||||
|
|
||||||
|
|
||||||
@YouCompleteMeInstance()
|
@YouCompleteMeInstance()
|
||||||
def YouCompleteMe_OnPeriodicTick_ServerNotRunning_test( ycm, *args ):
|
def YouCompleteMe_OnPeriodicTick_ServerNotRunning_test( ycm, *args ):
|
||||||
with patch.object( ycm, 'IsServerAlive', return_value = False ):
|
with patch.object( ycm, 'IsServerAlive', return_value = False ):
|
||||||
assert_that( ycm.OnPeriodicTick(), equal_to( False ) )
|
assert_that( ycm.OnPeriodicTick(), equal_to( False ) )
|
||||||
|
|
||||||
@ -935,8 +935,8 @@ def YouCompleteMe_OnPeriodicTick_DontRetry_test( ycm,
|
|||||||
|
|
||||||
# Create the request and make the first poll; we expect no response
|
# Create the request and make the first poll; we expect no response
|
||||||
with MockVimBuffers( buffers, current_buffer, ( 1, 1 ) ):
|
with MockVimBuffers( buffers, current_buffer, ( 1, 1 ) ):
|
||||||
assert_that( ycm.OnPeriodicTick(), equal_to( True ) )
|
assert_that( ycm.OnPeriodicTick(), equal_to( True ) )
|
||||||
post_data_to_handler_async.assert_called()
|
post_data_to_handler_async.assert_called()
|
||||||
|
|
||||||
assert ycm._message_poll_request is not None
|
assert ycm._message_poll_request is not None
|
||||||
post_data_to_handler_async.reset_mock()
|
post_data_to_handler_async.reset_mock()
|
||||||
|
@ -14,9 +14,9 @@ import sys
|
|||||||
from concurrent.futures import _base
|
from concurrent.futures import _base
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import queue
|
import queue
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import Queue as queue
|
import Queue as queue
|
||||||
|
|
||||||
|
|
||||||
# This file provides an UnsafeThreadPoolExecutor, which operates exactly like
|
# This file provides an UnsafeThreadPoolExecutor, which operates exactly like
|
||||||
@ -28,93 +28,93 @@ except ImportError:
|
|||||||
# only send network requests). The YCM workload is one of those workloads where
|
# only send network requests). The YCM workload is one of those workloads where
|
||||||
# it's safe (the aforementioned network requests case).
|
# it's safe (the aforementioned network requests case).
|
||||||
|
|
||||||
class _WorkItem(object):
|
class _WorkItem( object ):
|
||||||
def __init__(self, future, fn, args, kwargs):
|
def __init__( self, future, fn, args, kwargs ):
|
||||||
self.future = future
|
self.future = future
|
||||||
self.fn = fn
|
self.fn = fn
|
||||||
self.args = args
|
self.args = args
|
||||||
self.kwargs = kwargs
|
self.kwargs = kwargs
|
||||||
|
|
||||||
def run(self):
|
def run( self ):
|
||||||
if not self.future.set_running_or_notify_cancel():
|
if not self.future.set_running_or_notify_cancel():
|
||||||
return
|
return
|
||||||
|
|
||||||
try:
|
|
||||||
result = self.fn(*self.args, **self.kwargs)
|
|
||||||
except BaseException:
|
|
||||||
e = sys.exc_info()[1]
|
|
||||||
self.future.set_exception(e)
|
|
||||||
else:
|
|
||||||
self.future.set_result(result)
|
|
||||||
|
|
||||||
|
|
||||||
def _worker(executor_reference, work_queue):
|
|
||||||
try:
|
try:
|
||||||
while True:
|
result = self.fn( *self.args, **self.kwargs )
|
||||||
work_item = work_queue.get(block=True)
|
|
||||||
if work_item is not None:
|
|
||||||
work_item.run()
|
|
||||||
continue
|
|
||||||
executor = executor_reference()
|
|
||||||
# Exit if:
|
|
||||||
# - The executor that owns the worker has been collected OR
|
|
||||||
# - The executor that owns the worker has been shutdown.
|
|
||||||
if executor is None or executor._shutdown:
|
|
||||||
# Notice other workers
|
|
||||||
work_queue.put(None)
|
|
||||||
return
|
|
||||||
del executor
|
|
||||||
except BaseException:
|
except BaseException:
|
||||||
_base.LOGGER.critical('Exception in worker', exc_info=True)
|
e = sys.exc_info()[ 1 ]
|
||||||
|
self.future.set_exception( e )
|
||||||
|
else:
|
||||||
|
self.future.set_result( result )
|
||||||
|
|
||||||
|
|
||||||
class UnsafeThreadPoolExecutor(_base.Executor):
|
def _worker( executor_reference, work_queue ):
|
||||||
def __init__(self, max_workers):
|
try:
|
||||||
"""Initializes a new ThreadPoolExecutor instance.
|
while True:
|
||||||
|
work_item = work_queue.get( block=True )
|
||||||
|
if work_item is not None:
|
||||||
|
work_item.run()
|
||||||
|
continue
|
||||||
|
executor = executor_reference()
|
||||||
|
# Exit if:
|
||||||
|
# - The executor that owns the worker has been collected OR
|
||||||
|
# - The executor that owns the worker has been shutdown.
|
||||||
|
if executor is None or executor._shutdown:
|
||||||
|
# Notice other workers
|
||||||
|
work_queue.put( None )
|
||||||
|
return
|
||||||
|
del executor
|
||||||
|
except BaseException:
|
||||||
|
_base.LOGGER.critical( 'Exception in worker', exc_info=True )
|
||||||
|
|
||||||
Args:
|
|
||||||
max_workers: The maximum number of threads that can be used to
|
|
||||||
execute the given calls.
|
|
||||||
"""
|
|
||||||
self._max_workers = max_workers
|
|
||||||
self._work_queue = queue.Queue()
|
|
||||||
self._threads = set()
|
|
||||||
self._shutdown = False
|
|
||||||
self._shutdown_lock = threading.Lock()
|
|
||||||
|
|
||||||
def submit(self, fn, *args, **kwargs):
|
class UnsafeThreadPoolExecutor( _base.Executor ):
|
||||||
with self._shutdown_lock:
|
def __init__( self, max_workers ):
|
||||||
if self._shutdown:
|
"""Initializes a new ThreadPoolExecutor instance.
|
||||||
raise RuntimeError('cannot schedule new futures after shutdown')
|
|
||||||
|
|
||||||
f = _base.Future()
|
Args:
|
||||||
w = _WorkItem(f, fn, args, kwargs)
|
max_workers: The maximum number of threads that can be used to
|
||||||
|
execute the given calls.
|
||||||
|
"""
|
||||||
|
self._max_workers = max_workers
|
||||||
|
self._work_queue = queue.Queue()
|
||||||
|
self._threads = set()
|
||||||
|
self._shutdown = False
|
||||||
|
self._shutdown_lock = threading.Lock()
|
||||||
|
|
||||||
self._work_queue.put(w)
|
def submit( self, fn, *args, **kwargs ):
|
||||||
self._adjust_thread_count()
|
with self._shutdown_lock:
|
||||||
return f
|
if self._shutdown:
|
||||||
submit.__doc__ = _base.Executor.submit.__doc__
|
raise RuntimeError( 'cannot schedule new futures after shutdown' )
|
||||||
|
|
||||||
def _adjust_thread_count(self):
|
f = _base.Future()
|
||||||
# When the executor gets lost, the weakref callback will wake up
|
w = _WorkItem( f, fn, args, kwargs )
|
||||||
# the worker threads.
|
|
||||||
def weakref_cb(_, q=self._work_queue):
|
|
||||||
q.put(None)
|
|
||||||
# TODO(bquinlan): Should avoid creating new threads if there are more
|
|
||||||
# idle threads than items in the work queue.
|
|
||||||
if len(self._threads) < self._max_workers:
|
|
||||||
t = threading.Thread(target=_worker,
|
|
||||||
args=(weakref.ref(self, weakref_cb),
|
|
||||||
self._work_queue))
|
|
||||||
t.daemon = True
|
|
||||||
t.start()
|
|
||||||
self._threads.add(t)
|
|
||||||
|
|
||||||
def shutdown(self, wait=True):
|
self._work_queue.put( w )
|
||||||
with self._shutdown_lock:
|
self._adjust_thread_count()
|
||||||
self._shutdown = True
|
return f
|
||||||
self._work_queue.put(None)
|
submit.__doc__ = _base.Executor.submit.__doc__
|
||||||
if wait:
|
|
||||||
for t in self._threads:
|
def _adjust_thread_count( self ):
|
||||||
t.join()
|
# When the executor gets lost, the weakref callback will wake up
|
||||||
shutdown.__doc__ = _base.Executor.shutdown.__doc__
|
# the worker threads.
|
||||||
|
def weakref_cb( _, q=self._work_queue ):
|
||||||
|
q.put( None )
|
||||||
|
# TODO(bquinlan): Should avoid creating new threads if there are more
|
||||||
|
# idle threads than items in the work queue.
|
||||||
|
if len( self._threads ) < self._max_workers:
|
||||||
|
t = threading.Thread( target=_worker,
|
||||||
|
args=( weakref.ref( self, weakref_cb ),
|
||||||
|
self._work_queue ) )
|
||||||
|
t.daemon = True
|
||||||
|
t.start()
|
||||||
|
self._threads.add( t )
|
||||||
|
|
||||||
|
def shutdown( self, wait=True ):
|
||||||
|
with self._shutdown_lock:
|
||||||
|
self._shutdown = True
|
||||||
|
self._work_queue.put( None )
|
||||||
|
if wait:
|
||||||
|
for t in self._threads:
|
||||||
|
t.join()
|
||||||
|
shutdown.__doc__ = _base.Executor.shutdown.__doc__
|
||||||
|
@ -941,7 +941,7 @@ def ReplaceChunk( start, end, replacement_text, vim_buffer ):
|
|||||||
replacement_lines[ 0 ] = start_existing_text + replacement_lines[ 0 ]
|
replacement_lines[ 0 ] = start_existing_text + replacement_lines[ 0 ]
|
||||||
replacement_lines[ -1 ] = replacement_lines[ -1 ] + end_existing_text
|
replacement_lines[ -1 ] = replacement_lines[ -1 ] + end_existing_text
|
||||||
|
|
||||||
vim_buffer[ start_line : end_line + 1 ] = replacement_lines[:]
|
vim_buffer[ start_line : end_line + 1 ] = replacement_lines[ : ]
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'bufnr': vim_buffer.number,
|
'bufnr': vim_buffer.number,
|
||||||
@ -977,7 +977,8 @@ def InsertNamespace( namespace ):
|
|||||||
def SearchInCurrentBuffer( pattern ):
|
def SearchInCurrentBuffer( pattern ):
|
||||||
""" Returns the 1-indexed line on which the pattern matches
|
""" Returns the 1-indexed line on which the pattern matches
|
||||||
(going UP from the current position) or 0 if not found """
|
(going UP from the current position) or 0 if not found """
|
||||||
return GetIntValue( "search('{0}', 'Wcnb')".format( EscapeForVim( pattern )))
|
return GetIntValue(
|
||||||
|
"search('{0}', 'Wcnb')".format( EscapeForVim( pattern ) ) )
|
||||||
|
|
||||||
|
|
||||||
def LineTextInCurrentBuffer( line_number ):
|
def LineTextInCurrentBuffer( line_number ):
|
||||||
@ -1033,7 +1034,7 @@ def WriteToPreviewWindow( message ):
|
|||||||
vim.current.buffer.options[ 'modifiable' ] = True
|
vim.current.buffer.options[ 'modifiable' ] = True
|
||||||
vim.current.buffer.options[ 'readonly' ] = False
|
vim.current.buffer.options[ 'readonly' ] = False
|
||||||
|
|
||||||
vim.current.buffer[:] = message.splitlines()
|
vim.current.buffer[ : ] = message.splitlines()
|
||||||
|
|
||||||
vim.current.buffer.options[ 'buftype' ] = 'nofile'
|
vim.current.buffer.options[ 'buftype' ] = 'nofile'
|
||||||
vim.current.buffer.options[ 'bufhidden' ] = 'wipe'
|
vim.current.buffer.options[ 'bufhidden' ] = 'wipe'
|
||||||
|
@ -53,10 +53,10 @@ from ycm.client.messages_request import MessagesPoll
|
|||||||
|
|
||||||
|
|
||||||
def PatchNoProxy():
|
def PatchNoProxy():
|
||||||
current_value = os.environ.get('no_proxy', '')
|
current_value = os.environ.get( 'no_proxy', '' )
|
||||||
additions = '127.0.0.1,localhost'
|
additions = '127.0.0.1,localhost'
|
||||||
os.environ['no_proxy'] = ( additions if not current_value
|
os.environ[ 'no_proxy' ] = ( additions if not current_value
|
||||||
else current_value + ',' + additions )
|
else current_value + ',' + additions )
|
||||||
|
|
||||||
|
|
||||||
# We need this so that Requests doesn't end up using the local HTTP proxy when
|
# We need this so that Requests doesn't end up using the local HTTP proxy when
|
||||||
|
Loading…
Reference in New Issue
Block a user