Source file customization.ml
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
open! Core
open! Import
include Customization_intf
module Q = struct
include Q
let alist = "alist" |> Symbol.intern
let boolean = "boolean" |> Symbol.intern
let character = "character" |> Symbol.intern
let choice = "choice" |> Symbol.intern
let coding_system = "coding-system" |> Symbol.intern
let color = "color" |> Symbol.intern
let cons = "cons" |> Symbol.intern
let const = "const" |> Symbol.intern
let defcustom = "defcustom" |> Symbol.intern
let defgroup = "defgroup" |> Symbol.intern
let directory = "directory" |> Symbol.intern
let file = "file" |> Symbol.intern
let float = "float" |> Symbol.intern
let function_ = "function" |> Symbol.intern
let group = "group" |> Symbol.intern
let hook = "hook" |> Symbol.intern
let integer = "integer" |> Symbol.intern
let key_sequence = "key-sequence" |> Symbol.intern
let plist = "plist" |> Symbol.intern
let radio = "radio" |> Symbol.intern
let repeat = "repeat" |> Symbol.intern
let set = "set" |> Symbol.intern
let string = "string" |> Symbol.intern
let variable = "variable" |> Symbol.intern
end
let customize_group = Funcall.Wrap.("customize-group" <: Symbol.t @-> return nil)
let customize_variable = Funcall.Wrap.("customize-variable" <: Symbol.t @-> return nil)
let q value = Value.list [ Symbol.to_value Q.quote; value ]
module Group = struct
include (
Symbol :
sig
type t = Symbol.t [@@deriving sexp_of]
include Valueable.S with type t := t
end)
let all_defgroups = ref []
let defgroup group_name here ~docstring ~parents =
let docstring = docstring |> String.strip in
require_nonempty_docstring here ~docstring;
let group_name = group_name |> Symbol.intern in
let form_of_parent parent =
Form.[ Q.K.group |> symbol; parent |> Symbol.to_value |> quote ]
in
let docstring =
let here = here |> Source_code_position.to_string in
[%string {|
%{docstring}
Defined at %{here}
|}] |> String.strip
in
Form.(
Blocking.eval_i
(list
(List.concat
[ [ Q.defgroup |> symbol; group_name |> symbol; nil; docstring |> string ]
; List.concat_map parents ~f:form_of_parent
])));
all_defgroups := group_name :: !all_defgroups;
group_name
;;
let of_string = Symbol.intern
let to_string = Symbol.name
let to_symbol t = t
let emacs = of_string "emacs"
let ecaml =
defgroup "ecaml" [%here] ~docstring:{| Customization of Ecaml |} ~parents:[ emacs ]
;;
end
module Type = struct
type t =
| Alist of t * t
| Boolean
| Character
| Choice of t list
| Coding_system
| Color
| Cons of t * t
| Const of Value.t
| Directory
| Existing_file
| Face
| File
| Float
| Function
| Group of t
| Hook
| Integer
| Key_sequence
| List of t list
| Number
| Option of string * t
| Plist
| Radio of t list
| Regexp
| Repeat of t
| Set of t list
| Sexp
| String
| Symbol
| Tagged_string of string
| Variable
| Vector of t list
[@@deriving sexp_of]
let s = Symbol.to_value
let rec vs ts = List.map ts ~f:v
and composite s ts = Value.list (Symbol.to_value s :: vs ts)
and v = function
| Alist (t1, t2) ->
Value.list [ s Q.alist; s Q.K.key_type; v t1; s Q.K.value_type; v t2 ]
| Boolean -> s Q.boolean
| Character -> s Q.character
| Choice ts -> composite Q.choice ts
| Coding_system -> s Q.coding_system
| Color -> s Q.color
| Cons (t1, t2) -> composite Q.cons [ t1; t2 ]
| Const v -> Value.list [ s Q.const; v ]
| Directory -> s Q.directory
| Existing_file -> Value.list [ s Q.file; s Q.K.must_match; Value.t ]
| Face -> s Q.face
| File -> s Q.file
| Float -> s Q.float
| Function -> s Q.function_
| Group t -> composite Q.group [ t ]
| Hook -> s Q.hook
| Integer -> s Q.integer
| Key_sequence -> s Q.key_sequence
| List ts -> composite Q.list ts
| Number -> s Q.number
| Option (none, t) ->
Value.list
[ s Q.choice
; Value.list [ s Q.const; s Q.K.tag; Value.of_utf8_bytes none; s Q.nil ]
; v t
]
| Plist -> s Q.plist
| Radio ts -> composite Q.radio ts
| Regexp -> s Q.regexp
| Repeat t -> composite Q.repeat [ t ]
| Set ts -> composite Q.set ts
| Sexp -> s Q.sexp
| String -> s Q.string
| Symbol -> s Q.symbol
| Tagged_string tag -> Value.list [ v String; s Q.K.tag; Value.of_utf8_bytes tag ]
| Variable -> s Q.variable
| Vector ts -> composite Q.vector ts
;;
let to_value = v
let enum all value_of_a = Choice (List.map all ~f:(fun a -> Const (value_of_a a)))
end
let all_defcustom_symbols = ref []
module Private = struct
let all_defcustom_symbols () =
!all_defcustom_symbols |> List.sort ~compare:Symbol.compare_name
;;
let all_defgroups () = !Group.all_defgroups |> List.sort ~compare:Symbol.compare_name
end
type 'a t = 'a Var.t [@@deriving sexp_of]
let var t = t
let symbol = Var.symbol
let name t = Symbol.name (symbol t)
let value = Current_buffer0.value_exn
let custom_set_variables = Funcall.Wrap.("custom-set-variables" <: value @-> return nil)
let set_value t a =
custom_set_variables
(Value.list [ Var.symbol t |> Symbol.to_value; a |> Value.Type.to_value t.type_ ])
;;
let set_value_temporarily t a ~f =
let old = value t in
set_value t a;
protect ~f ~finally:(fun () -> set_value t old)
;;
let standard_value = Var.default_value_exn
module Wrap = Var.Wrap
let add_to_load_history symbol here =
all_defcustom_symbols := symbol :: !all_defcustom_symbols;
Load_history.add_entry here (Var symbol)
;;
let defvaralias =
Funcall.Wrap.("defvaralias" <: Symbol.t @-> Symbol.t @-> nil_or string @-> return nil)
;;
let defvaralias symbol here ?docstring ~alias_of () =
defvaralias symbol alias_of docstring;
add_to_load_history symbol here
;;
let define_obsolete_alias obsolete here ?docstring ~alias_of ~since () =
defvaralias obsolete here ?docstring ~alias_of ();
Obsolete.make_variable_obsolete obsolete ~current:(Some alias_of) ~since
;;
let defcustom
?(show_form = false)
symbol
here
~docstring
~group
~type_
~customization_type
~standard_value
?on_set
()
=
let symbol =
match Symbol.Automatic_migration.migrate ~old:symbol with
| None -> symbol
| Some { new_; since } ->
define_obsolete_alias symbol here ~alias_of:new_ ~since ();
new_
in
let standard_value = standard_value |> Value.Type.to_value type_ in
(try
let docstring = docstring |> String.strip in
require_nonempty_docstring here ~docstring;
let docstring =
concat
[ docstring
; "\n\n"
; concat [ "Customization group: "; group |> Group.to_string; "\n" ]
; concat [ "Standard value: "; standard_value |> Value.prin1_to_string; "\n" ]
; concat
[ "Customization type:"
; (let string =
customization_type |> Type.to_value |> Value.prin1_to_string
in
if String.contains string '\n'
then concat [ "\n"; string ]
else concat [ " "; string ])
]
]
in
add_to_load_history symbol here;
let form =
List.concat
[ [ Q.defcustom |> Symbol.to_value ]
; [ symbol |> Symbol.to_value ]
; [ standard_value |> q ]
; [ docstring |> Value.of_utf8_bytes ]
; [ Q.K.group |> Symbol.to_value; group |> Symbol.to_value |> q ]
; [ Q.K.type_ |> Symbol.to_value; customization_type |> Type.to_value |> q ]
; (match on_set with
| None -> []
| Some on_set ->
[ Q.K.set |> Symbol.to_value
; Function.to_value
(Defun.lambda
[%here]
(Returns Value.Type.unit)
(let var = Var.create symbol type_ in
let%map_open.Defun () = return ()
and _ = required "symbol" Symbol.t
and a = required "value" type_ in
on_set a;
Var.set_default_value var a))
])
]
|> Value.list
|> Form.of_value_exn
in
if show_form then message_s [%sexp (form : Form.t)];
ignore (Form.Blocking.eval form : Value.t)
with
| exn ->
raise_s
[%message
"[defcustom] failed"
(exn : exn)
(symbol : Symbol.t)
(customization_type : Type.t)
(group : Symbol.t)
(standard_value : Value.t)
(docstring : string)
~_:(here : Source_code_position.t)]);
Var.create symbol type_
;;
let defcustom_enum
(type t)
symbol
here
(module T : Enum_arg with type t = t)
~docstring
~group
~standard_value
?on_set
()
=
let docstring = docstring |> String.strip in
require_nonempty_docstring here ~docstring;
let type_ =
Value.Type.enum
[%sexp (Symbol.name symbol : string)]
(module T)
(T.to_symbol >> Symbol.to_value)
in
let docstring =
concat
~sep:"\n"
(docstring
:: ""
:: List.map T.all ~f:(fun t ->
let docstring =
match T.docstring t with
| "" -> []
| docstring -> [ ": "; docstring ]
in
concat (" - " :: (t |> T.to_symbol |> Symbol.name) :: docstring)))
in
defcustom
symbol
here
~docstring
~group
~type_
~customization_type:(Type.enum T.all (Value.Type.to_value type_))
~standard_value
?on_set
()
;;