예제 #1
0
 def _DrawScopes(self):
     # FIXME: The drawing is dumb and draws from scratch every time. This is
     # simple and works and makes sure the line-map is always correct.
     # However it is really inefficient, and makes it so that expanded results
     # are collapsed on every step.
     self._vars.lines.clear()
     with utils.RestoreCursorPosition():
         with utils.ModifiableScratchBuffer(self._vars.win.buffer):
             utils.ClearBuffer(self._vars.win.buffer)
             for scope in self._scopes:
                 self._DrawScope(0, scope)
    def _SetUpUI(self):
        vim.command('tab split')
        self._uiTab = vim.current.tabpage

        # Code window
        code_window = vim.current.window
        self._codeView = code.CodeView(code_window, self._api_prefix)

        # Call stack
        vim.command(f'topleft vertical { settings.Int( "sidebar_width" ) }new')
        stack_trace_window = vim.current.window
        one_third = int(vim.eval('winheight( 0 )')) / 3
        self._stackTraceView = stack_trace.StackTraceView(
            self, stack_trace_window)

        # Watches
        vim.command('leftabove new')
        watch_window = vim.current.window

        # Variables
        vim.command('leftabove new')
        vars_window = vim.current.window

        with utils.LetCurrentWindow(vars_window):
            vim.command(f'{ one_third }wincmd _')
        with utils.LetCurrentWindow(watch_window):
            vim.command(f'{ one_third }wincmd _')
        with utils.LetCurrentWindow(stack_trace_window):
            vim.command(f'{ one_third }wincmd _')

        self._variablesView = variables.VariablesView(vars_window,
                                                      watch_window)

        # Output/logging
        vim.current.window = code_window
        vim.command(f'rightbelow { settings.Int( "bottombar_height" ) }new')
        output_window = vim.current.window
        self._outputView = output.DAPOutputView(output_window,
                                                self._api_prefix)

        # TODO: If/when we support multiple sessions, we'll need some way to
        # indicate which tab was created and store all the tabs
        vim.vars['vimspector_session_windows'] = {
            'tabpage': self._uiTab.number,
            'code': utils.WindowID(code_window, self._uiTab),
            'stack_trace': utils.WindowID(stack_trace_window, self._uiTab),
            'variables': utils.WindowID(vars_window, self._uiTab),
            'watches': utils.WindowID(watch_window, self._uiTab),
            'output': utils.WindowID(output_window, self._uiTab),
        }
        with utils.RestoreCursorPosition():
            with utils.RestoreCurrentWindow():
                with utils.RestoreCurrentBuffer(vim.current.window):
                    vim.command('doautocmd User VimspectorUICreated')
예제 #3
0
    def _DrawBalloonEval(self):
        watch = self._variable_eval
        view = self._variable_eval_view

        with utils.RestoreCursorPosition():
            with utils.ModifiableScratchBuffer(view.buf):
                utils.ClearBuffer(view.buf)
                view.syntax = utils.SetSyntax(view.syntax,
                                              self._current_syntax, view.buf)

                self._DrawWatchResult(view, 0, watch, is_short=True)

                vim.eval("vimspector#internal#balloon#ResizeTooltip()")
예제 #4
0
 def _DrawWatches(self):
     # FIXME: The drawing is dumb and draws from scratch every time. This is
     # simple and works and makes sure the line-map is always correct.
     # However it is pretty inefficient.
     self._watch.lines.clear()
     with utils.RestoreCursorPosition():
         with utils.ModifiableScratchBuffer(self._watch.buf):
             utils.ClearBuffer(self._watch.buf)
             utils.AppendToBuffer(self._watch.buf, 'Watches: ----')
             for watch in self._watches:
                 line = utils.AppendToBuffer(
                     self._watch.buf,
                     'Expression: ' + watch.expression['expression'])
                 watch.line = line
                 self._DrawWatchResult(2, watch)
예제 #5
0
 def _DrawWatches( self ):
   # FIXME: The drawing is dumb and draws from scratch every time. This is
   # simple and works and makes sure the line-map is always correct.
   # However it is really inefficient, and makes it so that expanded results
   # are collapsed on every step.
   self._watch.lines.clear()
   with utils.RestoreCursorPosition():
     with utils.ModifiableScratchBuffer( self._watch.win.buffer ):
       utils.ClearBuffer( self._watch.win.buffer )
       utils.AppendToBuffer( self._watch.win.buffer, 'Watches: ----' )
       for watch in self._watches:
         line = utils.AppendToBuffer( self._watch.win.buffer,
                                      'Expression: ' + watch[ 'expression' ] )
         watch[ '_line' ] = line
         self._DrawWatchResult( 2, watch )
예제 #6
0
    def ExpandFrameOrThread(self):
        if vim.current.buffer != self._buf:
            return

        current_line = vim.current.window.cursor[0]

        if current_line in self._line_to_frame:
            self._JumpToFrame(self._line_to_frame[current_line])
        elif current_line in self._line_to_thread:
            thread = self._line_to_thread[current_line]
            if '_frames' in thread:
                del thread['_frames']
                with utils.RestoreCursorPosition():
                    self._DrawThreads()
            else:
                self._LoadStackTrace(thread, False)
예제 #7
0
  def _UpdateView( self, breakpoint_list, show=True ):
    if show and not self._HasWindow():
      vim.command( f'botright { settings.Int( "bottombar_height" ) }new' )
      self._win = vim.current.window
      if self._HasBuffer():
        with utils.NoAutocommands():
          vim.current.buffer = self._buffer
      else:
        self._buffer = vim.current.buffer
        mappings = settings.Dict( 'mappings' )[ 'breakpoints' ]
        groups = {
          'toggle': 'ToggleBreakpointViewBreakpoint',
          'toggle_all': 'ToggleAllBreakpointsViewBreakpoint',
          'delete': 'DeleteBreakpointViewBreakpoint',
          'jump_to': 'JumpToBreakpointViewBreakpoint',
          'add_line': 'SetAdvancedLineBreakpoint',
          'add_func': 'AddAdvancedFunctionBreakpoint'
        }
        for key, func in groups.items():
          for mapping in utils.GetVimList( mappings, key ):
            vim.command( f'nnoremap <silent> <buffer> { mapping } '
                         ':<C-u>call '
                         f'vimspector#{ func }()<CR>' )
        utils.SetUpHiddenBuffer( self._buffer,
                                 "vimspector.Breakpoints" )

      utils.UpdateSessionWindows( {
        'breakpoints': utils.WindowID( self._win )
      } )

      # set highlighting
      vim.eval( "matchadd( 'WarningMsg', 'ENABLED', 100 )" )
      vim.eval( "matchadd( 'WarningMsg', 'VERIFIED', 100 )" )
      vim.eval( "matchadd( 'LineNr', 'DISABLED', 100 )" )
      vim.eval( "matchadd( 'LineNr', 'PENDING', 100 )" )
      vim.eval( "matchadd( 'Title', '\\v^\\S+:{0,}', 100 )" )

      if utils.UseWinBar():
        vim.command( 'nnoremenu <silent> 1.1 WinBar.Delete '
                     ':call vimspector#DeleteBreakpointViewBreakpoint()<CR>' )
        vim.command( 'nnoremenu <silent> 1.2 WinBar.Toggle '
                     ':call vimspector#ToggleBreakpointViewBreakpoint()<CR>' )
        vim.command( 'nnoremenu <silent> 1.2 WinBar.*Toggle '
                     ':call'
                       ' vimspector#ToggleAllBreakpointsViewBreakpoint()<CR>' )
        vim.command( 'nnoremenu <silent> 1.3 WinBar.Jump\\ To '
                     ':call vimspector#JumpToBreakpointViewBreakpoint()<CR>' )
        # TODO: Add tests for this function
        vim.command( 'nnoremenu <silent> 1.4 WinBar.+Line '
                     ':call vimspector#SetAdvancedLineBreakpoint()<CR>' )
        vim.command( 'nnoremenu <silent> 1.4 WinBar.+Function '
                     ':call vimspector#AddAdvancedFunctionBreakpoint()<CR>' )
        vim.command( 'nnoremenu <silent> 1.4 WinBar.Clear '
                     ':call vimspector#ClearBreakpoints()<CR>' )
        vim.command( 'nnoremenu <silent> 1.4 WinBar.Save '
                     ':call vimspector#WriteSessionFile()<CR>' )
        vim.command( 'nnoremenu <silent> 1.4 WinBar.Load '
                     ':call vimspector#ReadSessionFile()<CR>' )

      # we want to maintain the height of the window
      self._win.options[ "winfixheight" ] = True

    self._breakpoint_list = breakpoint_list

    def FormatEntry( el ):
      prefix = ''
      if el.get( 'type' ) == 'L':
        prefix = '{}:{} '.format( os.path.basename( el.get( 'filename' ) ),
                                  el.get( 'lnum' ) )

      return '{}{}'.format( prefix, el.get( 'text' ) )

    if self._HasBuffer():
      with utils.ModifiableScratchBuffer( self._buffer ):
        with utils.RestoreCursorPosition():
          utils.SetBufferContents( self._buffer,
                                   list( map( FormatEntry, breakpoint_list ) ) )
예제 #8
0
def LaunchTerminal(api_prefix, params, window_for_start, existing_term):
    if not existing_term:
        term = Terminal()
    else:
        term = existing_term

    cwd = params['cwd']
    args = params['args']
    env = params.get('env', {})

    term_options = {
        'vertical': 1,
        'norestore': 1,
        'cwd': cwd,
        'env': env,
    }

    if not window_for_start or not window_for_start.valid:
        # TOOD: Where? Maybe we should just use botright vertical ...
        window_for_start = vim.current.window

    if term.window is not None and term.window.valid:
        assert term.buffer_number
        window_for_start = term.window
        if (term.window.buffer.number == term.buffer_number and int(
                utils.Call(
                    'vimspector#internal#{}term#IsFinished'.format(api_prefix),
                    term.buffer_number))):
            term_options['curwin'] = 1
        else:
            term_options['vertical'] = 0

    buffer_number = None
    terminal_window = None
    with utils.LetCurrentWindow(window_for_start):
        # If we're making a vertical split from the code window, make it no more
        # than 80 columns and no fewer than 10. Also try and keep the code window
        # at least 82 columns
        if term_options['vertical'] and not term_options.get('curwin', 0):
            term_options['term_cols'] = max(
                min(
                    int(vim.eval('winwidth( 0 )')) -
                    settings.Int('code_minwidth'),
                    settings.Int('terminal_maxwidth')),
                settings.Int('terminal_minwidth'))

        buffer_number = int(
            utils.Call('vimspector#internal#{}term#Start'.format(api_prefix),
                       args, term_options))
        terminal_window = vim.current.window

    if buffer_number is None or buffer_number <= 0:
        # TODO: Do something better like reject the request?
        raise ValueError("Unable to start terminal")

    term.window = terminal_window
    term.buffer_number = buffer_number

    vim.vars['vimspector_session_windows']['terminal'] = utils.WindowID(
        term.window, vim.current.tabpage)
    with utils.RestoreCursorPosition():
        with utils.RestoreCurrentWindow():
            with utils.RestoreCurrentBuffer(vim.current.window):
                vim.command('doautocmd User VimspectorTerminalOpened')

    return term
예제 #9
0
def LaunchTerminal(api_prefix, params, window_for_start, existing_term):
    if not existing_term:
        term = Terminal()
    else:
        term = existing_term

    cwd = params['cwd'] or os.getcwd()
    args = params['args'] or []
    env = params.get('env') or {}

    term_options = {
        'norestore': 1,
        'cwd': cwd,
        'env': env,
    }

    if settings.Get('ui_mode') == 'horizontal':
        # force-horizontal
        term_options['vertical'] = 1
    elif utils.GetVimValue(vim.vars['vimspector_session_windows'],
                           'mode') == 'horizontal':
        # horizontal, which means that we should have enough space for:
        #  - sidebar
        #  - code min
        #  - term min width
        #  - + 2 vertical spaders
        #  - + 3 columns for signs
        term_options['vertical'] = 1

        # if we don't have enough space for terminal_maxwidth, then see if we have
        # enough vertically for terminal_maxheight, in which case,
        # that seems a better fit
        term_horiz_max = (settings.Int('sidebar_width') + 1 + 2 + 3 +
                          settings.Int('code_minwidth') + 1 +
                          settings.Int('terminal_maxwidth'))
        term_vert_max = (settings.Int('bottombar_height') + 1 +
                         settings.Int('code_minheight') + 1 +
                         settings.Int('terminal_minheight'))

        if (vim.options['columns'] < term_horiz_max
                and vim.options['lines'] >= term_vert_max):
            # Looks like it, let's try that layout
            term_options['vertical'] = 0

    else:
        # vertical - we need enough space horizontally for the code+terminal, but we
        # may fit better with code above terminal
        term_options['vertical'] = 0

        term_horiz_max = (settings.Int('code_minwidth') + 3 +
                          settings.Int('terminal_maxwidth') + 1)

        if vim.options['columns'] > term_horiz_max:
            term_options['vertical'] = 1

    if not window_for_start or not window_for_start.valid:
        # TOOD: Where? Maybe we should just use botright vertical ...
        window_for_start = vim.current.window

    if term.window is not None and term.window.valid:
        assert term.buffer_number
        window_for_start = term.window
        if (term.window.buffer.number == term.buffer_number and int(
                utils.Call(
                    'vimspector#internal#{}term#IsFinished'.format(api_prefix),
                    term.buffer_number))):
            term_options['curwin'] = 1
        else:
            term_options['vertical'] = 0

    buffer_number = None
    terminal_window = None
    with utils.LetCurrentWindow(window_for_start):
        # If we're making a vertical split from the code window, make it no more
        # than 80 columns and no fewer than 10. Also try and keep the code window
        # at least 82 columns
        if term_options.get('curwin', 0):
            pass
        elif term_options['vertical']:
            term_options['term_cols'] = max(
                min(
                    int(vim.eval('winwidth( 0 )')) -
                    settings.Int('code_minwidth'),
                    settings.Int('terminal_maxwidth')),
                settings.Int('terminal_minwidth'))
        else:
            term_options['term_rows'] = max(
                min(
                    int(vim.eval('winheight( 0 )')) -
                    settings.Int('code_minheight'),
                    settings.Int('terminal_maxheight')),
                settings.Int('terminal_minheight'))

        buffer_number = int(
            utils.Call('vimspector#internal#{}term#Start'.format(api_prefix),
                       args, term_options))
        terminal_window = vim.current.window

    if buffer_number is None or buffer_number <= 0:
        # TODO: Do something better like reject the request?
        raise ValueError("Unable to start terminal")

    term.window = terminal_window
    term.buffer_number = buffer_number

    utils.UpdateSessionWindows(
        {'terminal': utils.WindowID(term.window, vim.current.tabpage)})
    with utils.RestoreCursorPosition():
        with utils.RestoreCurrentWindow():
            with utils.RestoreCurrentBuffer(vim.current.window):
                vim.command('doautocmd User VimspectorTerminalOpened')

    return term