event_notification.py 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Copyright (C) 2013 Google Inc.
  2. #
  3. # This file is part of YouCompleteMe.
  4. #
  5. # YouCompleteMe is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # YouCompleteMe is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
  17. from __future__ import unicode_literals
  18. from __future__ import print_function
  19. from __future__ import division
  20. from __future__ import absolute_import
  21. from future import standard_library
  22. standard_library.install_aliases()
  23. from builtins import * # noqa
  24. from ycm.client.base_request import ( BaseRequest, BuildRequestData,
  25. JsonFromFuture, HandleServerException )
  26. class EventNotification( BaseRequest ):
  27. def __init__( self, event_name, filepath = None, extra_data = None ):
  28. super( EventNotification, self ).__init__()
  29. self._event_name = event_name
  30. self._filepath = filepath
  31. self._extra_data = extra_data
  32. self._response_future = None
  33. self._cached_response = None
  34. def Start( self ):
  35. request_data = BuildRequestData( self._filepath )
  36. if self._extra_data:
  37. request_data.update( self._extra_data )
  38. request_data[ 'event_name' ] = self._event_name
  39. self._response_future = self.PostDataToHandlerAsync( request_data,
  40. 'event_notification' )
  41. def Done( self ):
  42. return bool( self._response_future ) and self._response_future.done()
  43. def Response( self ):
  44. if self._cached_response:
  45. return self._cached_response
  46. if not self._response_future or self._event_name != 'FileReadyToParse':
  47. return []
  48. with HandleServerException( truncate = True ):
  49. self._cached_response = JsonFromFuture( self._response_future )
  50. return self._cached_response if self._cached_response else []
  51. def SendEventNotificationAsync( event_name,
  52. filepath = None,
  53. extra_data = None ):
  54. event = EventNotification( event_name, filepath, extra_data )
  55. event.Start()