-
Notifications
You must be signed in to change notification settings - Fork 0
/
gtags.el
956 lines (890 loc) · 35.6 KB
/
gtags.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
;;; gtags.el --- gtags facility for Emacs
;(setq debug-on-error t)
;;
;; Copyright (c) 1997, 1998, 1999, 2000, 2006, 2007, 2008, 2009, 2010
;; 2011, 2012, 2013
;; Tama Communications Corporation
;;
;; This file is part of GNU GLOBAL.
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;
;; GLOBAL home page is at: http://www.gnu.org/software/global/
;; Author: Tama Communications Corporation
;; Version: 3.8
;; Keywords: tools
;; Gtags-mode is implemented as a minor mode so that it can work with any
;; other major modes. Gtags-select mode is implemented as a major mode.
;;
;; Please copy this file into emacs lisp library directory or place it in
;; a directory (for example "~/.emacs.d") and write $HOME/.emacs like this.
;;
;; (add-to-list 'load-path "~/.emacs.d")
;; (autoload 'gtags-mode "gtags" "" t)
;;
;; If you hope gtags-mode is on in c-mode then please add c-mode-hook to your
;; $HOME/.emacs like this.
;;
;; (add-hook 'c-mode-hook
;; '(lambda ()
;; (gtags-mode 1)
;; ))
;;
;; There are two hooks, gtags-mode-hook and gtags-select-mode-hook.
;; The usage of the hook is shown as follows.
;;
;; [Setting to use vi style scroll key]
;;
;; (add-hook 'gtags-mode-hook
;; '(lambda ()
;; (define-key gtags-mode-map "\C-f" 'scroll-up)
;; (define-key gtags-mode-map "\C-b" 'scroll-down)
;; ))
;;
;; [Setting to make 'Gtags select mode' easy to see]
;;
;; (add-hook 'gtags-select-mode-hook
;; '(lambda ()
;; (setq hl-line-face 'underline)
;; (hl-line-mode 1)
;; ))
;;
;; (Policy of key mapping)
;; If 'gtags-suggested-key-mapping' is not set, any key mapping is not done.
;; If 'gtags-disable-pushy-mouse-mapping' is set, any mouse mapping is not done.
;;
;; Here is an example of initial file.
;; It assumed that gtags.el is installed into '$HOME/.emacs.d/lisp'.
;;
;; $ cp /usr/local/share/gtags/gtags.el $HOME/.emacs.d/lisp
;; $ vi $HOME/.emacs.d/init.el
;;
;; [$HOME/.emacs.d/init.el]
;; +----------------------------------------------------------------
;; |(add-to-list 'load-path "~/.emacs.d/lisp")
;; |(autoload 'gtags-mode "gtags" "" t)
;; |(add-hook 'gtags-mode-hook
;; | '(lambda ()
;; | ; Local customization (overwrite key mapping)
;; | (define-key gtags-mode-map "\C-f" 'scroll-up)
;; | (define-key gtags-mode-map "\C-b" 'scroll-down)
;; |))
;; |(add-hook 'gtags-select-mode-hook
;; | '(lambda ()
;; | (setq hl-line-face 'underline)
;; | (hl-line-mode 1)
;; |))
;; |(add-hook 'c-mode-hook
;; | '(lambda ()
;; | (gtags-mode 1)))
;; |; Customization
;; |(setq gtags-suggested-key-mapping t)
;; |(setq gtags-auto-update t)
;; +----------------------------------------------------------------
;;; Code
(defvar gtags-mode nil
"Non-nil if Gtags mode is enabled.")
(make-variable-buffer-local 'gtags-mode)
;;;
;;; Customizing gtags-mode
;;;
(defgroup gtags nil
"Minor mode for GLOBAL source code tag system."
:group 'tools
:prefix "gtags-")
(defcustom gtags-path-style 'root
"*Controls the style of path in [GTAGS SELECT MODE]."
:type '(choice (const :tag "Relative from the root of the current project" root)
(const :tag "Relative from the current directory" relative)
(const :tag "Absolute" absolute))
:group 'gtags)
(defcustom gtags-ignore-case 'follow-case-fold-search
"*Controls whether or not ignore case in each search."
:type '(choice (const :tag "Follows case-fold-search variable" follow-case-fold-search)
(const :tag "Ignore case" t)
(const :tag "Distinguish case" nil))
:group 'gtags)
(defcustom gtags-read-only nil
"Gtags read only mode"
:type 'boolean
:group 'gtags)
(defcustom gtags-pop-delete nil
"*If non-nil, gtags-pop will delete the buffer."
:group 'gtags
:type 'boolean)
(defcustom gtags-select-buffer-single nil
"*If non-nil, gtags select buffer is single."
:group 'gtags
:type 'boolean)
(defcustom gtags-disable-pushy-mouse-mapping nil
"*If non-nil, mouse key mapping is disabled."
:group 'gtags
:type 'boolean)
(defcustom gtags-suggested-key-mapping nil
"*If non-nil, suggested key mapping is enabled."
:group 'gtags
:type 'boolean)
(defcustom gtags-use-old-key-map nil
"*If non-nil, old key mapping is enabled."
:group 'gtags
:type 'boolean)
(defcustom gtags-grep-all-text-files nil
"*If non-nil, gtags-find-with-grep command searchs all text files."
:group 'gtags
:type 'boolean)
(defcustom gtags-find-all-text-files t
"*If non-nil, gtags-find-file command finds all text files."
:group 'gtags
:type 'boolean)
(defcustom gtags-prefix-key "\C-c"
"*If non-nil, it is used for the prefix key of gtags-xxx command."
:group 'gtags
:type 'string)
(defcustom gtags-auto-update nil
"*If non-nil, tag files are updated whenever a file is saved."
:type 'boolean
:group 'gtags)
;; Variables
(defvar gtags-current-buffer nil
"Current buffer.")
(defvar gtags-buffer-stack nil
"Stack for tag browsing.")
(defvar gtags-point-stack nil
"Stack for tag browsing.")
(defvar gtags-history-list nil
"Gtags history list.")
(defconst gtags-symbol-regexp "[A-Za-z_][A-Za-z_0-9]*"
"Regexp matching tag name.")
(defconst gtags-definition-regexp "#[ \t]*define[ \t]+\\|ENTRY(\\|ALTENTRY("
"Regexp matching tag definition name.")
(defvar gtags-mode-map (make-sparse-keymap)
"Keymap used in gtags mode.")
(defvar gtags-select-mode-map (make-sparse-keymap)
"Keymap used in gtags select mode.")
(defvar gtags-running-xemacs (string-match "XEmacs\\|Lucid" emacs-version)
"Whether we are running XEmacs/Lucid Emacs")
(defvar gtags-rootdir nil
"Root directory of source tree.")
(defvar gtags-global-command nil
"Command name of global.")
;; Set global's command name
(setq gtags-global-command (getenv "GTAGSGLOBAL"))
(if (or (not gtags-global-command) (equal gtags-global-command ""))
(setq gtags-global-command "global"))
;; Key mapping of gtags-mode.
(if gtags-suggested-key-mapping
(progn
; Current key mapping.
(define-key gtags-mode-map (concat gtags-prefix-key "h") 'gtags-display-browser)
(define-key gtags-mode-map "\C-]" 'gtags-find-tag-from-here)
(define-key gtags-mode-map "\C-t" 'gtags-pop-stack)
(define-key gtags-mode-map (concat gtags-prefix-key "P") 'gtags-find-file)
(define-key gtags-mode-map (concat gtags-prefix-key "f") 'gtags-parse-file)
(define-key gtags-mode-map (concat gtags-prefix-key "g") 'gtags-find-with-grep)
(define-key gtags-mode-map (concat gtags-prefix-key "I") 'gtags-find-with-idutils)
(define-key gtags-mode-map (concat gtags-prefix-key "s") 'gtags-find-symbol)
(define-key gtags-mode-map (concat gtags-prefix-key "r") 'gtags-find-rtag)
(define-key gtags-mode-map (concat gtags-prefix-key "t") 'gtags-find-tag)
(define-key gtags-mode-map (concat gtags-prefix-key "d") 'gtags-find-tag)
(define-key gtags-mode-map (concat gtags-prefix-key "v") 'gtags-visit-rootdir)
; common
(define-key gtags-mode-map "\e*" 'gtags-pop-stack)
(define-key gtags-mode-map "\e." 'gtags-find-tag)
(define-key gtags-mode-map "\C-x4." 'gtags-find-tag-other-window)
(if gtags-disable-pushy-mouse-mapping nil
(if gtags-running-xemacs nil
(define-key gtags-mode-map [mouse-3] 'gtags-pop-stack)
(define-key gtags-mode-map [mouse-2] 'gtags-find-tag-by-event))
(if (not gtags-running-xemacs) nil
(define-key gtags-mode-map 'button3 'gtags-pop-stack)
(define-key gtags-mode-map 'button2 'gtags-find-tag-by-event))))
)
;; Key mapping of old gtags-mode (obsoleted)
(if (and gtags-suggested-key-mapping gtags-use-old-key-map)
(progn
; Old key mapping
(define-key gtags-mode-map "\eh" 'gtags-display-browser)
(define-key gtags-mode-map "\C-]" 'gtags-find-tag-from-here)
(define-key gtags-mode-map "\C-t" 'gtags-pop-stack)
(define-key gtags-mode-map "\eP" 'gtags-find-file)
(define-key gtags-mode-map "\ef" 'gtags-parse-file)
(define-key gtags-mode-map "\eg" 'gtags-find-with-grep)
(define-key gtags-mode-map "\eI" 'gtags-find-with-idutils)
(define-key gtags-mode-map "\es" 'gtags-find-symbol)
(define-key gtags-mode-map "\er" 'gtags-find-rtag)
(define-key gtags-mode-map "\et" 'gtags-find-tag)
(define-key gtags-mode-map "\ev" 'gtags-visit-rootdir)
; common
(define-key gtags-mode-map "\e*" 'gtags-pop-stack)
(define-key gtags-mode-map "\e." 'gtags-find-tag)
(define-key gtags-mode-map "\C-x4." 'gtags-find-tag-other-window)
(if gtags-disable-pushy-mouse-mapping nil
(if gtags-running-xemacs nil
(define-key gtags-mode-map [mouse-3] 'gtags-pop-stack)
(define-key gtags-mode-map [mouse-2] 'gtags-find-tag-by-event))
(if (not gtags-running-xemacs) nil
(define-key gtags-mode-map 'button3 'gtags-pop-stack)
(define-key gtags-mode-map 'button2 'gtags-find-tag-by-event))))
)
;; Key mapping of gtags-select-mode.
; The map of key "\C-t" and "\C-m" is always carried out..
(define-key gtags-select-mode-map "\C-t" 'gtags-pop-stack)
(define-key gtags-select-mode-map "\C-m" 'gtags-select-tag)
(if gtags-suggested-key-mapping
(progn
(define-key gtags-select-mode-map "\e*" 'gtags-pop-stack)
(define-key gtags-select-mode-map "\^?" 'scroll-down)
(define-key gtags-select-mode-map " " 'scroll-up)
(define-key gtags-select-mode-map "\C-b" 'scroll-down)
(define-key gtags-select-mode-map "\C-f" 'scroll-up)
(define-key gtags-select-mode-map "k" 'previous-line)
(define-key gtags-select-mode-map "j" 'next-line)
(define-key gtags-select-mode-map "p" 'previous-line)
(define-key gtags-select-mode-map "n" 'next-line)
(define-key gtags-select-mode-map "q" 'gtags-pop-stack)
(define-key gtags-select-mode-map "u" 'gtags-pop-stack)
(define-key gtags-select-mode-map "\C-o" 'gtags-select-tag-other-window)
(define-key gtags-select-mode-map "\e." 'gtags-select-tag)
(if gtags-disable-pushy-mouse-mapping nil
(if gtags-running-xemacs nil
(define-key gtags-select-mode-map [mouse-3] 'gtags-pop-stack)
(define-key gtags-select-mode-map [mouse-2] 'gtags-select-tag-by-event))
(if (not gtags-running-xemacs) nil
(define-key gtags-select-mode-map 'button3 'gtags-pop-stack)
(define-key gtags-select-mode-map 'button2 'gtags-select-tag-by-event))))
)
;;
;; TRAMP support
;;
;
; TRAMP style default-directory.
; /<method>:[<user id>@]<host name>:<directory>
; Ex: /ssh:remoteuser@remotehost:/usr/src/sys/
;
(defconst gtags-tramp-path-regexp "^/\\([^:]+\\):\\([^:]+\\):\\(.*\\)"
"Regexp matching tramp path name.")
(defconst gtags-tramp-user-host-regexp "^\\([^@]+\\)@\\(.*\\)"
"Regexp matching tramp user@host name.")
(defvar gtags-tramp-active nil
"TRAMP activity.")
(defvar gtags-tramp-saved-global-command nil
"Save area of the command name of global.")
; The substitute of buffer-file-name
(defun gtags-buffer-file-name ()
(if buffer-file-name
(if (string-match gtags-tramp-path-regexp buffer-file-name)
(match-string 3 buffer-file-name)
buffer-file-name)
nil))
(defun gtags-push-tramp-environment ()
(let ((tramp-path default-directory))
(if (string-match gtags-tramp-path-regexp tramp-path)
(let ((shell (match-string 1 tramp-path))
(user-and-host (match-string 2 tramp-path))
(cwd (match-string 3 tramp-path)))
;
; Server side GLOBAL cannot treat other than rsh and ssh.
;
(cond
((equal shell "rsh"))
((equal shell "ssh"))
((equal shell "rcp")
(setq shell "rsh"))
((equal shell "scp")
(setq shell "ssh"))
(t
(setq shell "ssh")))
(let (host user)
(if (string-match gtags-tramp-user-host-regexp user-and-host)
(progn
(setq user (match-string 1 user-and-host))
(setq host (match-string 2 user-and-host)))
(progn
(setq user nil)
(setq host user-and-host)))
;
; Move to tramp mode only when all the items are assembled.
;
(if (and shell host cwd)
(progn
(setq gtags-tramp-active t)
(setq gtags-tramp-saved-global-command gtags-global-command)
; Use 'global-client even if environment variable GTAGSGLOBAL is set.
;(setq gtags-global-command (getenv "GTAGSGLOBAL"))
;(if (or (not gtags-global-command) (equal gtags-global-command ""))
(setq gtags-global-command "global-client")
;)
(push (concat "GTAGSREMOTESHELL=" shell) process-environment)
(push (concat "GTAGSREMOTEHOST=" host) process-environment)
(push (concat "GTAGSREMOTEUSER=" user) process-environment)
(push (concat "GTAGSREMOTECWD=" cwd) process-environment))))))))
(defun gtags-pop-tramp-environment ()
(if gtags-tramp-active
(progn
(setq gtags-tramp-active nil)
(setq gtags-global-command gtags-tramp-saved-global-command)
(pop process-environment)
(pop process-environment)
(pop process-environment)
(pop process-environment))))
;; End of TRAMP support
;;
;; Invoked on saving a file.
;;
(defun gtags-auto-update ()
(if (and gtags-mode gtags-auto-update buffer-file-name)
(progn
(gtags-push-tramp-environment)
(call-process gtags-global-command nil nil nil "-u" (concat "--single-update=" (gtags-buffer-file-name)))
(gtags-pop-tramp-environment))))
;;
;; utility
;;
;; Ignore case or not.
(defun gtags-ignore-casep ()
(if (equal gtags-ignore-case 'follow-case-fold-search)
case-fold-search
gtags-ignore-case))
(eval-and-compile
(if (not (fboundp 'replace-in-string))
(defun replace-in-string (which from-str to-str)
(replace-regexp-in-string from-str to-str which))))
(defun gtags-match-string (n)
(buffer-substring (match-beginning n) (match-end n)))
;; Return a default tag to search for, based on the text at point.
(defun gtags-current-token ()
(cond
((looking-at "[0-9A-Za-z_]")
(while (and (not (bolp)) (looking-at "[0-9A-Za-z_]"))
(forward-char -1))
(if (not (looking-at "[0-9A-Za-z_]")) (forward-char 1)))
(t
(while (looking-at "[ \t]")
(forward-char 1))))
(if (and (bolp) (looking-at gtags-definition-regexp))
(goto-char (match-end 0)))
(if (looking-at gtags-symbol-regexp)
(gtags-match-string 0) nil))
;; push current context to stack
(defun gtags-push-context ()
(setq gtags-buffer-stack (cons (current-buffer) gtags-buffer-stack))
(setq gtags-point-stack (cons (point) gtags-point-stack)))
;; pop context from stack
(defun gtags-pop-context ()
(if (not gtags-buffer-stack) nil
(let (buffer point)
(setq buffer (car gtags-buffer-stack))
(setq gtags-buffer-stack (cdr gtags-buffer-stack))
(setq point (car gtags-point-stack))
(setq gtags-point-stack (cdr gtags-point-stack))
(list buffer point))))
;; if the buffer exist in the stack
(defun gtags-exist-in-stack (buffer)
(memq buffer gtags-buffer-stack))
;; get current line number
(defun gtags-current-lineno ()
(if (= 0 (count-lines (point-min) (point-max)))
0
(save-excursion
(end-of-line)
(if (equal (point-min) (point))
1
(count-lines (point-min) (point))))))
;; completion function for completing-read.
(defun gtags-completing-gtags (string predicate code)
(gtags-completing 'gtags string predicate code))
(defun gtags-completing-grtags (string predicate code)
(gtags-completing 'grtags string predicate code))
(defun gtags-completing-gsyms (string predicate code)
(gtags-completing 'gsyms string predicate code))
(defun gtags-completing-files (string predicate code)
(gtags-completing 'files string predicate code))
(defun gtags-completing-idutils (string predicate code)
(gtags-completing 'idutils string predicate code))
;; common part of completing-XXXX
;; flag: 'gtags or 'gsyms or 'files
(defun gtags-completing (flag string predicate code)
; The purpose of using the -n option for the -P command is to exclude
; dependence on the execution directory.
(let ((option (cond ((eq flag 'files) (if gtags-find-all-text-files "-cPo" "-cP"))
((eq flag 'grtags) "-cr")
((eq flag 'gsyms) "-cs")
((eq flag 'idutils) "-cI")
(t "-c")))
(complete-list (make-vector 63 0))
(prev-buffer (current-buffer)))
(if (gtags-ignore-casep)
(setq option (concat option "i")))
; build completion list
(set-buffer (generate-new-buffer "*Completions*"))
(gtags-push-tramp-environment)
(call-process gtags-global-command nil t nil option string)
(gtags-pop-tramp-environment)
(goto-char (point-min))
;
; The specification of the completion for files is different from that for symbols.
; The completion for symbols matches only to the head of the symbol. But the completion
; for files matches any part of the path.
;
(while (not (eobp))
(looking-at ".*")
(intern (gtags-match-string 0) complete-list)
(forward-line))
(kill-buffer (current-buffer))
; recover current buffer
(set-buffer prev-buffer)
; execute completion
(cond ((eq code nil)
(try-completion string complete-list predicate))
((eq code t)
(all-completions string complete-list predicate))
((eq code 'lambda)
(if (intern-soft string complete-list) t nil)))))
;; get the path of gtags root directory.
(defun gtags-get-rootpath ()
(let (path buffer)
(save-excursion
(setq buffer (generate-new-buffer (generate-new-buffer-name "*rootdir*")))
(set-buffer buffer)
(if (= (call-process gtags-global-command nil t nil "-pr") 0)
(setq path (file-name-as-directory (buffer-substring (point-min)(1- (point-max))))))
(kill-buffer buffer))
path))
;; decode path name
;; The path is encoded by global(1) with the --encode-path="..." option.
;; A blank is encoded to %20.
(defun gtags-decode-pathname (path)
(let (start result)
(while (setq start (string-match "%\\([0-9a-f][0-9a-f]\\)" path))
(setq result (concat result
(substring path 0 start)
(format "%c" (string-to-number (substring path (match-beginning 1) (match-end 1)) 16))))
(setq path (substring path (match-end 1))))
(concat result path)))
;;
;; interactive command
;;
(defun gtags-visit-rootdir ()
"Tell tags commands the root directory of source tree."
(interactive)
(let (path input)
(setq path gtags-rootdir)
(if (not path)
(setq path (gtags-get-rootpath)))
(if (not path)
(setq insert-default-directory (if (string-match gtags-tramp-path-regexp default-directory) nil t)))
(setq input (read-file-name "Visit root directory: " path path t))
(if (equal "" input) nil
(if (not (file-directory-p input))
(message "%s is not directory." input)
(setq gtags-rootdir (expand-file-name input))
(setenv "GTAGSROOT" gtags-rootdir)))))
(defun gtags-find-tag (&optional other-win)
"Input tag name and move to the definition."
(interactive)
(let (tagname prompt input)
(setq tagname (gtags-current-token))
(if tagname
(setq prompt (concat "Find tag: (default " tagname ") "))
(setq prompt "Find tag: "))
(setq input (completing-read prompt 'gtags-completing-gtags
nil nil nil gtags-history-list))
(if (not (equal "" input))
(setq tagname input))
(gtags-push-context)
(gtags-goto-tag tagname "" other-win)))
(defun gtags-find-tag-other-window ()
"Input tag name and move to the definition in other window."
(interactive)
(gtags-find-tag t))
(defun gtags-find-rtag ()
"Input tag name and move to the referenced point."
(interactive)
(let (tagname prompt input)
(setq tagname (gtags-current-token))
(if tagname
(setq prompt (concat "Find tag (reference): (default " tagname ") "))
(setq prompt "Find tag (reference): "))
(setq input (completing-read prompt 'gtags-completing-grtags
nil nil nil gtags-history-list))
(if (not (equal "" input))
(setq tagname input))
(gtags-push-context)
(gtags-goto-tag tagname "r")))
(defun gtags-find-symbol ()
"Input symbol and move to the locations."
(interactive)
(let (tagname prompt input)
(setq tagname (gtags-current-token))
(if tagname
(setq prompt (concat "Find symbol: (default " tagname ") "))
(setq prompt "Find symbol: "))
(setq input (completing-read prompt 'gtags-completing-gsyms
nil nil nil gtags-history-list))
(if (not (equal "" input)) (setq tagname input))
(gtags-push-context)
(gtags-goto-tag tagname "s")))
(defun gtags-find-pattern ()
"Input pattern, search with grep(1) and move to the locations."
(interactive)
(gtags-find-with-grep))
(defun gtags-find-with-grep ()
"Input pattern, search with grep(1) and move to the locations."
(interactive)
(let (tagname prompt input)
(setq tagname (gtags-current-token))
(if tagname
(setq prompt (concat "Find pattern: (default " tagname ") "))
(setq prompt "Find pattern: "))
(setq input (read-from-minibuffer prompt nil nil nil gtags-history-list))
(if (not (equal "" input)) (setq tagname input))
(gtags-push-context)
(gtags-goto-tag tagname (if gtags-grep-all-text-files "go" "g"))))
(defun gtags-find-with-idutils ()
"Input pattern, search with idutils(1) and move to the locations."
(interactive)
(let (tagname prompt input)
(setq tagname (gtags-current-token))
(if tagname
(setq prompt (concat "Find token: (default " tagname ") "))
(setq prompt "Find token: "))
(setq input (completing-read prompt 'gtags-completing-idutils
nil nil nil gtags-history-list))
(if (not (equal "" input)) (setq tagname input))
(gtags-push-context)
(gtags-goto-tag tagname "I")))
(defun gtags-find-file ()
"Input pattern and move to the top of the file."
(interactive)
(let (tagname prompt input)
(setq prompt "Find files: ")
(setq input (completing-read prompt 'gtags-completing-files
nil nil nil gtags-history-list))
(if (not (equal "" input)) (setq tagname input))
(gtags-push-context)
(gtags-goto-tag tagname (if gtags-find-all-text-files "Po" "P"))))
(defun gtags-parse-file ()
"Input file name and show the list of tags in it."
(interactive)
(let (tagname prompt input)
(setq prompt "Parse file: ")
(setq input (read-file-name prompt (gtags-buffer-file-name) (gtags-buffer-file-name) t))
(if (or (equal "" input) (not (file-regular-p input)))
(message "Please specify an existing source file.")
(setq tagname input)
(gtags-push-context)
; expand the file name (~->$HOME))
(setq tagname (expand-file-name tagname))
(gtags-goto-tag tagname "f"))))
(defun gtags-find-tag-from-here ()
"Get the expression as a tagname around here and move there."
(interactive)
(let (tagname)
(setq tagname (gtags-current-token))
(if (not tagname)
nil
(gtags-push-context)
(gtags-goto-tag tagname "C"))))
; This function doesn't work with mozilla.
; But I will support it in the near future.
(defun gtags-display-browser ()
"Display current screen on hypertext browser."
(interactive)
(if (= (gtags-current-lineno) 0)
(message "This is a null file.")
(if (not buffer-file-name)
(message "This buffer doesn't have the file name.")
(call-process "gozilla" nil nil nil (concat "+" (number-to-string (gtags-current-lineno))) (gtags-buffer-file-name)))))
; Private event-point
; (If there is no event-point then we use this version.
(eval-and-compile
(if (not (fboundp 'event-point))
(defun event-point (event)
(posn-point (event-start event)))))
(defun gtags-find-tag-by-event (event)
"Get the expression as a tagname around here and move there."
(interactive "e")
(let (tagname flag)
(if (= 0 (count-lines (point-min) (point-max)))
(progn (setq tagname "main")
(setq flag ""))
(if gtags-running-xemacs
(goto-char (event-point event))
(select-window (posn-window (event-end event)))
(set-buffer (window-buffer (posn-window (event-end event))))
(goto-char (posn-point (event-end event))))
(setq tagname (gtags-current-token))
(setq flag "C"))
(if (not tagname)
nil
(gtags-push-context)
(gtags-goto-tag tagname flag))))
(defun gtags-select-tag (&optional other-win)
"Select a tag in [GTAGS SELECT MODE] and move there."
(interactive)
(gtags-push-context)
(gtags-select-it nil other-win))
(defun gtags-select-tag-other-window ()
"Select a tag in [GTAGS SELECT MODE] and move there in other window."
(interactive)
(gtags-select-tag t))
(defun gtags-select-tag-by-event (event)
"Select a tag in [GTAGS SELECT MODE] and move there."
(interactive "e")
(if gtags-running-xemacs (goto-char (event-point event))
(select-window (posn-window (event-end event)))
(set-buffer (window-buffer (posn-window (event-end event))))
(goto-char (posn-point (event-end event))))
(gtags-push-context)
(gtags-select-it nil))
(defun gtags-pop-stack ()
"Move to previous point on the stack."
(interactive)
(let (delete context)
(if (and (not (equal gtags-current-buffer nil))
(not (equal gtags-current-buffer (current-buffer))))
(switch-to-buffer gtags-current-buffer)
; By default, the buffer of the referred file is left.
; If gtags-pop-delete is set to t, the file is deleted.
; Gtags select mode buffer is always deleted.
(if (and (or gtags-pop-delete (equal mode-name "Gtags-Select"))
(not (gtags-exist-in-stack (current-buffer))))
(setq delete t))
(setq context (gtags-pop-context))
(if (not context)
(message "The tags stack is empty.")
(if delete
(kill-buffer (current-buffer)))
(switch-to-buffer (nth 0 context))
(setq gtags-current-buffer (current-buffer))
(goto-char (nth 1 context))))))
;;
;; common function
;;
;; goto tag's point
(defun gtags-goto-tag (tagname flag &optional other-win)
(let (option context save prefix buffer lines flag-char)
(setq save (current-buffer))
(setq flag-char (string-to-char flag))
(if (equal flag-char nil)
(setq flag-char (string-to-char " ")))
; Use always ctags-x format.
(setq option "-x")
(if (gtags-ignore-casep)
(setq option (concat option "i")))
(if (char-equal flag-char ?C)
; replaces the Windows path delimiter (\\) by / which is understood by global.
(setq context (concat "--from-here=" (number-to-string (gtags-current-lineno)) ":" (replace-in-string (gtags-buffer-file-name) "\\\\" "/")))
(setq option (concat option flag)))
(cond
((char-equal flag-char ?C)
(setq prefix "(CONTEXT)"))
((char-equal flag-char ?P)
(setq prefix "(P)"))
((char-equal flag-char ?f)
(setq prefix "(F)"))
((char-equal flag-char ?g)
(setq prefix "(GREP)"))
((char-equal flag-char ?I)
(setq prefix "(IDUTILS)"))
((char-equal flag-char ?s)
(setq prefix "(S)"))
((char-equal flag-char ?r)
(setq prefix "(R)"))
(t (setq prefix "(D)")))
;; load tag
(if gtags-select-buffer-single
(progn
; delete "*GTAGS SELECT*" buffer info from gtags-buffer-stack and gtags-point-stack
(let (now-gtags-buffer-stack now-buffer now-gtags-point-stack now-point)
(setq now-gtags-buffer-stack (reverse gtags-buffer-stack))
(setq now-gtags-point-stack (reverse gtags-point-stack))
(setq gtags-buffer-stack nil)
(setq gtags-point-stack nil)
(while now-gtags-buffer-stack
(setq now-buffer (car now-gtags-buffer-stack))
(setq now-point (car now-gtags-point-stack))
(if (and (buffer-name now-buffer) (not (string-match "*GTAGS SELECT*" (buffer-name now-buffer))))
(progn
(setq gtags-buffer-stack (cons now-buffer gtags-buffer-stack))
(setq gtags-point-stack (cons now-point gtags-point-stack))))
(setq now-gtags-buffer-stack (cdr now-gtags-buffer-stack))
(setq now-gtags-point-stack (cdr now-gtags-point-stack))))
; kill "*GTAGS SELECT*" buffer
(let (now-buffer-list now-buffer)
(setq now-buffer-list (buffer-list))
(while now-buffer-list
(setq now-buffer (car now-buffer-list))
(if (string-match "*GTAGS SELECT*" (buffer-name now-buffer))
(kill-buffer now-buffer))
(setq now-buffer-list (cdr now-buffer-list))))))
(setq buffer (generate-new-buffer (generate-new-buffer-name (concat "*GTAGS SELECT* " prefix tagname))))
(set-buffer buffer)
(message "Searching %s ..." tagname)
(let (status)
(gtags-push-tramp-environment)
;
; Path style is defined in gtags-path-style:
; root: relative from the root of the project (Default)
; relative: relative from the current directory
; absolute: absolute (relative from the system root directory)
; In TRAMP mode, 'root' is automatically converted to 'relative'.
;
(cond
((equal gtags-path-style 'absolute)
(setq option (concat option "a")))
((and (not gtags-tramp-active) (equal gtags-path-style 'root))
(let (rootdir)
(if gtags-rootdir
(setq rootdir gtags-rootdir)
(setq rootdir (gtags-get-rootpath)))
(if rootdir (cd rootdir)))))
(setq status (if (equal flag "C")
(call-process gtags-global-command nil t nil option "--encode-path=\" \t\"" context tagname)
(call-process gtags-global-command nil t nil option "--encode-path=\" \t\"" tagname)))
(gtags-pop-tramp-environment)
(if (not (= 0 status))
(progn (message (buffer-substring (point-min)(1- (point-max))))
(gtags-pop-context))
(goto-char (point-min))
(setq lines (count-lines (point-min) (point-max)))
(cond
((= 0 lines)
(cond
((char-equal flag-char ?P)
(message "%s: path not found" tagname))
((char-equal flag-char ?g)
(message "%s: pattern not found" tagname))
((char-equal flag-char ?I)
(message "%s: token not found" tagname))
((char-equal flag-char ?s)
(message "%s: symbol not found" tagname))
(t
(message "%s: tag not found" tagname)))
(gtags-pop-context)
(kill-buffer buffer)
(set-buffer save))
((= 1 lines)
(message "Searching %s ... Done" tagname)
(gtags-select-it t other-win))
(t
(if (null other-win)
(switch-to-buffer buffer)
(switch-to-buffer-other-window buffer))
(gtags-select-mode)))))))
;; select a tag line from lines
(defun gtags-select-it (delete &optional other-win)
(let (line file)
;; get context from current tag line
(beginning-of-line)
(if (not (looking-at "[^ \t]+[ \t]+\\([0-9]+\\)[ \t]\\([^ \t]+\\)[ \t]"))
(gtags-pop-context)
(setq line (string-to-number (gtags-match-string 1)))
(setq file (gtags-decode-pathname (gtags-match-string 2)))
;;
;; Why should we load new file before killing current-buffer?
;;
;; If you kill current-buffer before loading new file, current directory
;; will be changed. This might cause loading error, if you use relative
;; path in [GTAGS SELECT MODE], because emacs's buffer has its own
;; current directory.
;;
(let ((prev-buffer (current-buffer)))
;; move to the context
(if gtags-read-only
(if (null other-win) (find-file-read-only file)
(find-file-read-only-other-window file))
(if (null other-win) (find-file file)
(find-file-other-window file)))
(if delete (kill-buffer prev-buffer)))
(setq gtags-current-buffer (current-buffer))
(goto-line line)
(gtags-mode 1))))
;; make complete list (do nothing)
(defun gtags-make-complete-list ()
"Make tag name list for completion."
(interactive)
(message "gtags-make-complete-list: Deprecated. You need not call this command any longer."))
;;;###autoload
(defun gtags-mode (&optional forces)
"Toggle Gtags mode, a minor mode for browsing source code using GLOBAL.
Specify the root directory of project.
\\[gtags-visit-rootdir]
Input tag name and move to the definition.
\\[gtags-find-tag]
Input tag name and move to the definition in other window.
\\[gtags-find-tag-other-window]
Input tag name and move to the referenced point.
\\[gtags-find-rtag]
Input symbol and move to the locations.
\\[gtags-find-symbol]
Input pattern, search with grep(1) and move to the locations.
\\[gtags-find-with-grep]
Input pattern, search with idutils(1) and move to the locations.
\\[gtags-find-with-idutils]
Input pattern and move to the top of the file.
\\[gtags-find-file]
Input pattern and show the list of definitions of the file.
\\[gtags-parse-file]
Get the expression as a tagname around here and move there.
\\[gtags-find-tag-from-here]
Display current screen on hypertext browser.
\\[gtags-display-browser]
Get the expression as a tagname around here and move there.
\\[gtags-find-tag-by-event]
Move to previous point on the stack.
\\[gtags-pop-stack]
Key definitions:
\\{gtags-mode-map}
Turning on Gtags mode calls the value of the variable `gtags-mode-hook'
with no args, if that value is non-nil."
(interactive)
(or (assq 'gtags-mode minor-mode-alist)
(setq minor-mode-alist (cons '(gtags-mode " Gtags") minor-mode-alist)))
(or (assq 'gtags-mode minor-mode-map-alist)
(setq minor-mode-map-alist
(cons (cons 'gtags-mode gtags-mode-map) minor-mode-map-alist)))
(setq gtags-mode
(if (null forces) (not gtags-mode)
(> (prefix-numeric-value forces) 0)))
(if gtags-mode
(add-hook 'after-save-hook 'gtags-auto-update)
(remove-hook 'after-save-hook 'gtags-auto-update))
(run-hooks 'gtags-mode-hook)
)
;; make gtags select-mode
(defun gtags-select-mode ()
"Major mode for choosing a tag from tags list.
Select a tag in tags list and move there.
\\[gtags-select-tag]
Move to previous point on the stack.
\\[gtags-pop-stack]
Key definitions:
\\{gtags-select-mode-map}
Turning on Gtags-Select mode calls the value of the variable
`gtags-select-mode-hook' with no args, if that value is non-nil."
(interactive)
(kill-all-local-variables)
(use-local-map gtags-select-mode-map)
(setq buffer-read-only t
truncate-lines t
major-mode 'gtags-select-mode
mode-name "Gtags-Select")
(setq gtags-current-buffer (current-buffer))
(goto-char (point-min))
(message "[GTAGS SELECT MODE] %d lines" (count-lines (point-min) (point-max)))
(run-hooks 'gtags-select-mode-hook)
)
(provide 'gtags)
;;; gtags.el ends here