-
Notifications
You must be signed in to change notification settings - Fork 27
/
ccls-call-hierarchy.el
140 lines (120 loc) · 5.45 KB
/
ccls-call-hierarchy.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
;;; -*- lexical-binding: t; -*-
;; Copyright (C) 2017 Tobias Pisani
;; Copyright (C) 2018-2020 Fangrui Song
;; Permission is hereby granted, free of charge, to any person obtaining a copy
;; of this software and associated documentation files (the "Software"), to deal
;; in the Software without restriction, including without limitation the rights
;; to use, copy, modify, merge, publish, distribute, sublicense, and-or sell
;; copies of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;; The above copyright notice and this permission notice shall be included in
;; all copies or substantial portions of the Software.
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
;;; Code:
(require 'ccls-common)
(require 'ccls-tree)
;; ---------------------------------------------------------------------
;; Customization
;; ---------------------------------------------------------------------
(defface ccls-call-hierarchy-node-normal-face
nil
"."
:group 'ccls)
(defface ccls-call-hierarchy-node-base-face
'((t (:foreground "orange red")))
"."
:group 'ccls)
(defface ccls-call-hierarchy-node-derived-face
'((t (:foreground "orange")))
"."
:group 'ccls)
(defcustom ccls-call-hierarchy-qualified t
"Use qualified name for call hierarchy."
:group 'ccls
:type 'boolean)
;; ---------------------------------------------------------------------
;; Tree node
;; ---------------------------------------------------------------------
(cl-defstruct ccls-call-hierarchy-node
id
name
call-type)
(eval-and-compile
(lsp-interface
(CclsCall (:id :name :location :callType :numChildren :children) nil)))
(defun ccls-call-hierarchy--read-node (data &optional parent)
"Construct a call tree node from hashmap DATA and give it the parent PARENT."
(-let* (((&CclsCall :id :name :location :call-type :num-children) data)
(filename (lsp--uri-to-path (lsp:location-uri location))))
(make-ccls-tree-node
:location (cons filename (lsp:range-start (lsp:location-range location)))
:has-children (< 0 num-children)
:parent parent
:expanded nil
:children nil
:data (make-ccls-call-hierarchy-node
:id id
:name name
:call-type call-type))))
(defun ccls-call-hierarchy--request-children (callee node)
"."
(let ((id (ccls-call-hierarchy-node-id (ccls-tree-node-data node))))
(--map (ccls-call-hierarchy--read-node it node)
(lsp:ccls-call-children
(lsp-request
"$ccls/call"
`(:id ,id
:callee ,callee
:callType 3
:levels ,ccls-tree-initial-levels
:qualified ,(if ccls-call-hierarchy-qualified t :json-false)
:hierarchy t))))))
(defun ccls-call-hierarchy--request-init (callee)
"."
(lsp-request
"$ccls/call"
`(:textDocument (:uri ,(concat lsp--uri-file-prefix buffer-file-name))
:position ,(lsp--cur-position)
:callee ,callee
:callType 3
:qualified ,(if ccls-call-hierarchy-qualified t :json-false)
:hierarchy t)))
(defun ccls-call-hierarchy--make-string (node depth)
"Propertize the name of NODE with the correct properties"
(let ((data (ccls-tree-node-data node)))
(if (= depth 0)
(ccls-call-hierarchy-node-name data)
(concat
(propertize (ccls-call-hierarchy-node-name data)
'face (pcase (ccls-call-hierarchy-node-call-type data)
('0 'ccls-call-hierarchy-node-normal-face)
('1 'ccls-call-hierarchy-node-base-face)
('2 'ccls-call-hierarchy-node-derived-face)))
(propertize (format " (%s:%s)"
(file-name-nondirectory (car (ccls-tree-node-location node)))
(lsp:position-line (cdr (ccls-tree-node-location node))))
'face 'ccls-tree-mode-line-face)))))
(defun ccls-call-hierarchy (callee)
(interactive "P")
(setq callee (if callee t :json-false))
(ccls-tree--open
(make-ccls-tree-client
:name "call hierarchy"
:mode-line-format (format " %s %s %s %s"
(propertize (if (eq callee t) "Callee types:" "Caller types:") 'face 'ccls-tree-mode-line-face)
(propertize "Normal" 'face 'ccls-call-hierarchy-node-normal-face)
(propertize "Base" 'face 'ccls-call-hierarchy-node-base-face)
(propertize "Derived" 'face 'ccls-call-hierarchy-node-derived-face))
:top-line-f (lambda () (propertize (if (eq callee t) "Callees of " "Callers of") 'face 'ccls-tree-mode-line-face))
:make-string-f 'ccls-call-hierarchy--make-string
:read-node-f 'ccls-call-hierarchy--read-node
:request-children-f (apply-partially #'ccls-call-hierarchy--request-children callee)
:request-init-f (lambda () (ccls-call-hierarchy--request-init callee)))))
(provide 'ccls-call-hierarchy)
;;; ccls-call-hierarchy.el ends here