forked from abo-abo/elf-mode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreadelf-mode.el
73 lines (60 loc) · 2.22 KB
/
readelf-mode.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
;;; readelf-mode.el --- Show readelf output instead of ELF binaries -*- lexical-binding: t -*-
;; Copyright (C) 2020 Ivan Sokolov
;; 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 <https://www.gnu.org/licenses/>.
;; Author: Ivan Sokolov <[email protected]>
;; URL: https://github.com/sirikid/readelf-mode
;; Version: 1.0.0
;; Package-Requires: ((emacs "24.3"))
;; Keywords: data
;;; Commentary:
;;; Code:
(require 'cl-lib)
(defgroup readelf '()
"Major mode for viewing ELF files."
:group 'emacs)
(defcustom readelf-mode-executable "readelf"
"Path to `readelf' binary."
:group 'readelf-mode
:type 'string)
(defcustom readelf-mode-flags '("--syms" "-W" file)
"Arguments for `readelf'."
:group 'readelf-mode
:type '(repeat (choice string
(const :tag "File" file))))
(defun readelf-mode-revert-buffer ()
"Revert buffer function for `readelf-mode'."
(interactive)
(when (derived-mode-p 'readelf-mode)
(let ((inhibit-read-only t))
(erase-buffer)
(apply #'call-process readelf-mode-executable nil t t
(mapcar (lambda (part)
(cl-case part
(file (buffer-file-name))
(t part)))
readelf-mode-flags))
(goto-char (point-min))
(save-excursion
(flush-lines "^[[:space:]]*$"))
(set-buffer-modified-p nil))))
;;;###autoload
(define-derived-mode readelf-mode special-mode "Readelf"
"Major mode for viewing ELF files."
:group 'readelf
(read-only-mode)
(readelf-mode-revert-buffer))
;;;###autoload
(add-to-list 'magic-mode-alist '("\177ELF" . readelf-mode))
(provide 'readelf-mode)
;;; readelf-mode.el ends here