-
Notifications
You must be signed in to change notification settings - Fork 66
/
solidity-mode.el
621 lines (540 loc) · 18.4 KB
/
solidity-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
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
;;; solidity-mode.el --- Major mode for ethereum's solidity language
;; Copyright (C) 2015-2020 Lefteris Karapetsas
;; Author: Lefteris Karapetsas <[email protected]>
;; Keywords: languages, solidity
;; Version: 0.1.11
;; 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/>.
;;; Commentary:
;; Solidity is a high-level language whose syntax is similar to that
;; of Javascript and it is designed to compile to code for the
;; Ethereum Virtual Machine.
;; This package provides a major mode for writing Solidity code.
;;; Code:
(require 'cc-mode)
(require 'solidity-common)
;;; --- Customizable variables ---
(defgroup solidity nil
"Major mode for ethereum's solidity language"
:group 'languages ;; Emacs -> Programming -> Languages
:prefix "solidity-"
:link '(url-link :tag "Github" "https://github.com/ethereum/emacs-solidity"))
(defcustom solidity-mode-hook nil
"Callback hook to execute whenever a solidity file is loaded."
:type 'hook
:group 'solidity)
(defcustom solidity-comment-style 'star
"Denotes the style of comments to use for solidity when commenting.
This option will define what kind of comments will be input into the buffer by
commands like `comment-region'. The default value is 'star.
Possible values are:
`star'
Follow the same styling as C mode does by default having all comments
obey the /* .. */ style.
`slash'
All comments will start with //."
:group 'solidity
:type '(choice (const :tag "Commenting starts with /* and ends with */" star)
(const :tag "Commenting starts with //" slash))
:package-version '(solidity . "0.1.7")
:safe #'symbolp)
(defcustom solidity-mode-disable-c-mode-hook t
"If non-nil, do not run `c-mode-hook'."
:group 'solidity
:type 'boolean)
(defvar solidity-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "\C-j" 'newline-and-indent)
(define-key map (kbd "C-c C-g") 'solidity-estimate-gas-at-point)
map)
"Keymap for solidity major mode.")
(defvar solidity-checker t "The solidity flycheck syntax checker.")
(defvar solidity-mode t "The solidity major mode.")
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.sol\\'" . solidity-mode))
(defun solidity-filter (condp lst)
"A simple version of a list filter. Depending on CONDP filter LST."
(delq nil
(mapcar (lambda (x) (and (funcall condp x) x)) lst)))
(defconst solidity-keywords
'("abstract"
"after"
"anonymous"
"as"
"assembly"
"assert"
"break"
"calldata"
"catch"
"constant"
"constructor"
"continue"
"contract"
"default"
"delete"
"do"
"else"
"emit"
"enum"
"event"
"error"
"external"
"fallback"
"for"
"function"
"if"
"immutable"
"import"
"in"
"indexed"
"interface"
"internal"
"is"
"library"
"mapping"
"memory"
"modifier"
"new"
"override"
"payable"
"pragma"
"private"
"public"
"pure"
"receive"
"require"
"return"
"returns"
"revert"
"storage"
"struct"
"switch"
"this"
"throw"
"try"
"unchecked"
"using"
"var"
"view"
"virtual"
"while"
)
"Keywords of the solidity language.")
(defconst solidity-tofontify-keywords
(solidity-filter
(lambda (x) (not (member x '("contract"
"library"))))
solidity-keywords)
"Keywords that will be fontified as they are and don't have special rules."
)
(defconst solidity-constants
'("true" "false"
"wei"
"szabo"
"finney"
"ether"
"seconds"
"minutes"
"hours"
"days"
"weeks"
"years"
)
"Constants in the solidity language.")
(defconst solidity-variable-modifier
'("constant"
"public"
"immutable"
"indexed"
"storage"
"memory"
"calldata"
)
"Modifiers of variables in solidity.")
(defconst solidity-builtin-types
'("address"
"bool"
"bytes"
"bytes0"
"bytes1"
"bytes2"
"bytes3"
"bytes4"
"bytes5"
"bytes6"
"bytes7"
"bytes8"
"bytes9"
"bytes10"
"bytes11"
"bytes12"
"bytes13"
"bytes14"
"bytes15"
"bytes16"
"bytes17"
"bytes18"
"bytes19"
"bytes20"
"bytes21"
"bytes22"
"bytes23"
"bytes24"
"bytes25"
"bytes26"
"bytes27"
"bytes28"
"bytes29"
"bytes30"
"bytes31"
"bytes32"
"int"
"int8"
"int16"
"int24"
"int32"
"int40"
"int48"
"int56"
"int64"
"int72"
"int80"
"int88"
"int96"
"int104"
"int112"
"int120"
"int128"
"int136"
"int144"
"int152"
"int160"
"int168"
"int176"
"int184"
"int192"
"int200"
"int208"
"int216"
"int224"
"int232"
"int240"
"int248"
"int256"
"let"
"mapping"
"real"
"string"
"text"
"uint"
"uint8"
"uint16"
"uint24"
"uint32"
"uint40"
"uint48"
"uint56"
"uint64"
"uint72"
"uint80"
"uint88"
"uint96"
"uint104"
"uint112"
"uint120"
"uint128"
"uint136"
"uint144"
"uint152"
"uint160"
"uint168"
"uint176"
"uint184"
"uint192"
"uint200"
"uint208"
"uint216"
"uint224"
"uint232"
"uint240"
"uint248"
"uint256"
"ureal")
"Built in data types of the solidity language.")
(defconst solidity-builtin-constructs
'("msg"
"block"
"tx")
"Built in constructs of the solidity language.")
(defvar solidity-identifier-regexp
"\\([a-zA-Z0-9]\\|_\\)+")
(defvar solidity-variable-attributes
"\\(&\\|*\\|~\\)"
"Variable attributes like references '&' e.t.c.")
;; Set font lock options.
;; For information on the various faces check here:
;; http://www.gnu.org/software/emacs/manual/html_node/ccmode/Faces.html
;; For examples on how to make advanced fontification based on the
;; language rules check C mode here:
;; http://cc-mode.sourceforge.net/src/cc-fonts.el
;;
;; Guide for Searh based fontification:
;; http://ergoemacs.org/emacs_manual/elisp/Search_002dbased-Fontification.html
;; General colouring guide:
;; http://ergoemacs.org/emacs/elisp_syntax_coloring.html
(defconst solidity-font-lock-keywords
(list
`(,(regexp-opt solidity-tofontify-keywords 'words) . font-lock-keyword-face)
`(,(regexp-opt solidity-builtin-types 'words) . font-lock-type-face)
`(,(regexp-opt solidity-builtin-constructs 'words) . font-lock-builtin-face)
'(solidity-match-functions (1 font-lock-type-face)
(2 font-lock-function-name-face))
'(solidity-match-mappings (1 font-lock-type-face)
(3 font-lock-function-name-face))
'(solidity-match-pragma-stmt (1 font-lock-preprocessor-face)
(2 font-lock-string-face))
'(solidity-match-library-decl (1 font-lock-keyword-face)
(2 font-lock-variable-name-face))
'(solidity-match-contract-decl (1 font-lock-keyword-face)
(2 font-lock-variable-name-face))
'(solidity-match-interface-decl (1 font-lock-keyword-face)
(2 font-lock-variable-name-face))
'(solidity-match-modifier-decl (1 font-lock-keyword-face)
(2 font-lock-variable-name-face))
'(solidity-match-struct-decl (1 font-lock-keyword-face)
(2 font-lock-variable-name-face))
'(solidity-match-event-decl (1 font-lock-keyword-face)
(2 font-lock-variable-name-face))
'(solidity-match-error-decl (1 font-lock-keyword-face)
(2 font-lock-variable-name-face))
'(solidity-match-user-defined-value-type-decl (1 font-lock-keyword-face)
(2 font-lock-variable-name-face))
'(solidity-match-variable-decls (1 font-lock-keyword-face)
(2 font-lock-variable-name-face))
`(,(regexp-opt solidity-constants 'words) . font-lock-constant-face))
"The font lock options for solidity.")
(defun solidity-match-regexp (re limit)
"Generic regular expression matching wrapper for RE with a given LIMIT."
(re-search-forward re
limit ; search bound
t ; no error, return nil
nil ; do not repeat
))
(defun solidity-match-contract-decl (limit)
"Search the buffer forward until LIMIT matching contract declarations.
First match should be a keyword and second an identifier."
(solidity-match-regexp
(concat
" *\\(\\<contract\\>\\) +\\(" solidity-identifier-regexp "\\)")
limit))
(defun solidity-match-interface-decl (limit)
"Search the buffer forward until LIMIT matching interface declarations.
First match should be a keyword and second an identifier."
(solidity-match-regexp
(concat
" *\\(\\<interface\\>\\) +\\(" solidity-identifier-regexp "\\)")
limit))
(defun solidity-match-library-decl (limit)
"Search the buffer forward until LIMIT matching library declarations.
First match should be a keyword and second an identifier."
(solidity-match-regexp
(concat
" *\\(\\<library\\>\\) +\\(" solidity-identifier-regexp "\\)")
limit))
(defun solidity-match-pragma-stmt (limit)
"Search the buffer forward until LIMIT matching pragma statements.
First match should be a keyword and second an identifier."
(solidity-match-regexp
(concat
" *\\(\\<pragma\\>\\) +\\(.*\\);")
limit))
(defun solidity-match-struct-decl (limit)
"Search the buffer forward until LIMIT matching struct declarations.
First match should be a keyword and second an identifier."
(solidity-match-regexp
(concat
" *\\(\\<struct\\>\\) +\\(" solidity-identifier-regexp "\\)")
limit))
(defun solidity-match-functions (limit)
"Search the buffer forward until LIMIT matching function names.
Highlight the 1st result."
(solidity-match-regexp
(concat
" *\\(\\<function\\>\\) +\\(" solidity-identifier-regexp "\\)")
limit))
(defun solidity-match-event-decl (limit)
"Search the buffer forward until LIMIT matching function names.
Highlight the 1st result."
(solidity-match-regexp
(concat
" *\\(\\<event\\>\\) +\\(" solidity-identifier-regexp "\\)")
limit))
(defun solidity-match-error-decl (limit)
"Search the buffer forward until LIMIT matching error names.
Highlight the 1st result."
(solidity-match-regexp
(concat
" *\\(\\<error\\>\\) +\\(" solidity-identifier-regexp "\\)")
limit))
(defun solidity-match-user-defined-value-type-decl (limit)
"Search the buffer forward until LIMIT matching user defined value type names.
Highlight the 1st result."
(solidity-match-regexp
(concat
" *\\(\\<type\\>\\) +\\(" solidity-identifier-regexp "\\)")
limit))
(defun solidity-match-modifier-decl (limit)
"Search the buffer forward until LIMIT matching function names.
Highlight the 1st result."
(solidity-match-regexp
(concat
" *\\(\\<modifier\\>\\) +\\(" solidity-identifier-regexp "\\)")
limit))
(defun solidity-match-mappings (limit)
"Search the buffer forward until LIMIT matching solidity mappings.
Highlight the 1st result."
(solidity-match-regexp
(concat
" *\\(\\<mapping\\>\\) *(.*) *\\("(regexp-opt solidity-variable-modifier) " \\)*\\(" solidity-identifier-regexp "\\)")
limit))
(defun solidity-match-variable-decls (limit)
"Search the buffer forward until LIMIT matching variable declarations.
Highlight the 1st result."
(solidity-match-regexp
(concat
" *\\(" (regexp-opt solidity-builtin-types 'words) " *\\(?:\\[ *[0-9]*\\]\\)* *\\) " "\\(?:"(regexp-opt solidity-variable-modifier 'words) " \\)* *\\(" solidity-identifier-regexp "\\)")
limit))
;; solidity syntax table
(defvar solidity-mode-syntax-table
(let ((st (make-syntax-table)))
;; Underscore ('_') and dollar sign ('$') are valid parts of a word.
(modify-syntax-entry ?_ "w" st)
(modify-syntax-entry ?$ "w" st)
;; c++ style comments in the syntax table
;; more info on the syntax flags here:
;; http://www.gnu.org/software/emacs/manual/html_node/elisp/Syntax-Flags.html
(modify-syntax-entry ?/ ". 124b" st)
(modify-syntax-entry ?* ". 23" st)
(modify-syntax-entry ?\n "> b" st)
st)
"Syntax table for the solidity language.")
(defun solidity--re-matches (regexp string count)
"Get a list of all REGEXP match results in a STRING.
COUNT is the parenthentical subexpression for which to return matches.
If your provide 0 for COUNT then the entire regex match is returned."
(save-match-data
(let ((pos 0)
matches)
(while (string-match regexp string pos)
(push (match-string-no-properties count string) matches)
(setq pos (match-end 0)))
matches)))
(defun solidity--handle-gasestimate-finish (process event)
"Handle all events from the solc gas estimation PROCESS.
EVENT is isgnored."
(when (memq (process-status process) '(signal exit))
(let* ((buffer (process-buffer process))
(funcname (process-get process 'solidity-gasestimate-for-function))
(filename (process-get process 'solidity-gasestimate-for-filename))
(output (with-current-buffer buffer (buffer-string)))
(matches (solidity--re-matches (format "%s(.*?):.*?\\([0-9]+\\|infinite\\)" funcname) output 1))
(result (car matches)))
(kill-buffer buffer)
(if (not result)
(let* ((clearfilename (file-name-nondirectory filename))
(ctor-matches (solidity--re-matches (format "=.*?%s:%s.*?=" clearfilename funcname) output 0)))
(if ctor-matches
(message "Gas estimate for '%s' constructor is %s" funcname (car (solidity--re-matches "construction:
.*?=.*?\\([0-9]+\\|infinite\\)" output 1)))
;;innermost else
(message "No gas estimate found for '%s'" funcname)))
;; outermost else
(message "Gas estimate for '%s' is %s" funcname result)))))
(defun solidity--start-gasestimate (func)
"Start a gas estimation subprocess for FUNC.
Does not currently work for constructors."
(let* ((filename (buffer-file-name))
(command (format "%s --gas %s" solidity-solc-path filename))
(process-name (format "solidity-command-%s" command))
(process (start-process-shell-command
process-name
(format "*%s*" process-name)
command)))
(set-process-query-on-exit-flag process nil)
(set-process-sentinel process 'solidity--handle-gasestimate-finish)
(process-put process 'solidity-gasestimate-for-function func)
(process-put process 'solidity-gasestimate-for-filename filename)))
(defun solidity-estimate-gas-at-point ()
"Estimate gas of the function at point.
Cursor must be at the function's name. Does not currently work for constructors."
(interactive)
(solidity--start-gasestimate (thing-at-point 'symbol 'no-properties)))
;;; Support for imenu
(defun solidity-mode-imenu-generic-expression ()
"Generic expressions for solidity mode imenu."
(let* ((spacetabs "[\t\n ]+")
(optional-spacetabs "[\t\n ]*")
(ident-group "\\([A-Za-z_][A-Za-z0-9_]*\\)")
(constructor-ident-group "\\(constructor\\)")
(fallback-ident-group "\\(fallback\\)")
(modifier (mapconcat 'identity
'("payable" "public" "private" "external" "internal" "view" "pure")
"\\|"))
(modifiers (concat "\\(?:\\(?:" modifier "\\)" spacetabs "\\)*")))
`(("function", (concat "^" optional-spacetabs "function" spacetabs ident-group) 1)
("modifier", (concat "^" optional-spacetabs "modifier" spacetabs ident-group) 1)
("constructor", (concat "^" optional-spacetabs constructor-ident-group) 1)
("function", (concat "^" optional-spacetabs fallback-ident-group) 1)
("contract", (concat "^" optional-spacetabs "contract" spacetabs ident-group) 1)
("library", (concat "^" optional-spacetabs "library" spacetabs ident-group) 1)
("interface", (concat "^" optional-spacetabs "interface" spacetabs ident-group) 1)
)))
;;;###autoload
(define-derived-mode solidity-mode c-mode "solidity"
"Major mode for editing solidity language buffers."
(set-syntax-table solidity-mode-syntax-table)
;; specify syntax highlighting
(setq font-lock-defaults '(solidity-font-lock-keywords))
;; register indentation and other langue mode functions, basically the c-mode ones with some modifications
(let ((start-value (if (eq solidity-comment-style 'star) "/* " "// "))
(end-value (if (eq solidity-comment-style 'star) " */" "")))
(set (make-local-variable 'comment-start) start-value)
(set (make-local-variable 'comment-end) end-value))
(make-local-variable 'comment-start-skip)
(make-local-variable 'paragraph-start)
(make-local-variable 'paragraph-separate)
(make-local-variable 'paragraph-ignore-fill-prefix)
(make-local-variable 'adaptive-fill-mode)
(make-local-variable 'adaptive-fill-regexp)
(make-local-variable 'fill-paragraph-handle-comment)
;; set values for some other variables
(set (make-local-variable 'parse-sexp-ignore-comments) t)
(set (make-local-variable 'indent-line-function) 'c-indent-line)
(set (make-local-variable 'indent-region-function) 'c-indent-region)
(set (make-local-variable 'normal-auto-fill-function) 'c-do-auto-fill)
(set (make-local-variable 'comment-multi-line) t)
(set (make-local-variable 'comment-line-break-function)
'c-indent-new-comment-line)
(set (make-local-variable 'c-basic-offset) 4)
;; customize indentation more specific to Solidity
(make-local-variable 'c-offsets-alist)
(add-to-list 'c-offsets-alist '(arglist-close . c-lineup-close-paren))
(when solidity-mode-disable-c-mode-hook
(set (make-local-variable 'c-mode-hook) nil))
;; set imenu
(setq imenu-generic-expression
(solidity-mode-imenu-generic-expression))
;; set keymap
(use-local-map solidity-mode-map)
;; set hooks
(run-hooks 'solidity-mode-hook))
(provide 'solidity-mode)
;;; solidity-mode.el ends here