-
Notifications
You must be signed in to change notification settings - Fork 29
/
ccls-inheritance-hierarchy.el
121 lines (103 loc) · 4.75 KB
/
ccls-inheritance-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
;;; -*- 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)
(defface ccls-inheritance-hierarchy-base-face
'((t (:foreground "orange red")))
"."
:group 'ccls)
(defcustom ccls-inheritance-hierarchy-qualified t
"Use qualified name for types in inheritance hierarchy."
:group 'ccls
:type 'boolean)
(cl-defstruct ccls-inheritance-hierarchy-node
id
kind
name)
(eval-and-compile
(lsp-interface
(CclsInheritance (:id :kind :name :location :numChildren :children) nil)))
(defun ccls-inheritance-hierarchy--read-node (data &optional parent)
"Construct a call tree node from hashmap DATA and give it the parent PARENT"
(-let* (((&CclsInheritance :id :kind :name :location :num-children :children) data)
(filename (lsp--uri-to-path (lsp:location-uri location)))
(node
(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-inheritance-hierarchy-node
:id id
:kind kind
:name name))))
(setf (ccls-tree-node-children node)
(--map (ccls-inheritance-hierarchy--read-node it node)
(lsp:ccls-inheritance-children data)))
node))
(defun ccls-inheritance-hierarchy--request-children (derived node)
"."
(let ((id (ccls-inheritance-hierarchy-node-id (ccls-tree-node-data node)))
(kind (ccls-inheritance-hierarchy-node-kind (ccls-tree-node-data node))))
(--map (ccls-inheritance-hierarchy--read-node it node)
(lsp:ccls-inheritance-children
(lsp-request
"$ccls/inheritance"
`(:id ,id :kind ,kind
:derived ,derived
:qualified ,(if ccls-inheritance-hierarchy-qualified t :json-false)
:levels ,ccls-tree-initial-levels
:hierarchy t
))))))
(defun ccls-inheritance-hierarchy--request-init (derived)
"."
(lsp-request
"$ccls/inheritance"
`(:textDocument (:uri ,(concat lsp--uri-file-prefix buffer-file-name))
:position ,(lsp--cur-position)
:derived ,derived
:qualified ,(if ccls-inheritance-hierarchy-qualified t :json-false)
:levels 1
:hierarchy t)))
(defun ccls-inheritance-hierarchy--make-string (node _depth)
"Propertize the name of NODE with the correct properties"
(let* ((data (ccls-tree-node-data node))
(name (ccls-inheritance-hierarchy-node-name data)))
(if (string-equal name "[[Base]]")
(propertize "Bases" 'face 'ccls-inheritance-hierarchy-base-face)
name)))
(defun ccls-inheritance-hierarchy (derived)
(interactive "P")
(let ((json-derived (if derived t :json-false)))
(ccls-tree--open
(make-ccls-tree-client
:name "inheritance hierarchy"
:mode-line-format (propertize (if derived
"Inheritance Hierarchy: Subclasses"
"Inheritance Hierarchy: Bases")
'face 'ccls-tree-mode-line-face)
:top-line-f (lambda () (propertize (if derived "Derive from" "Bases of") 'face 'ccls-tree-mode-line-face))
:make-string-f 'ccls-inheritance-hierarchy--make-string
:read-node-f 'ccls-inheritance-hierarchy--read-node
:request-children-f (apply-partially #'ccls-inheritance-hierarchy--request-children json-derived)
:request-init-f (lambda () (ccls-inheritance-hierarchy--request-init json-derived))))))
(provide 'ccls-inheritance-hierarchy)
;;; ccls-inheritance-hierarchy.el ends here