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
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2016 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
open Preferences
let warn_image () =
let img = GMisc.image () in
img#set_stock `DIALOG_WARNING;
img#set_icon_size `DIALOG;
img
let warning msg =
GToolbox.message_box ~title:"Warning" ~icon:(warn_image ())#coerce msg
let cb = GData.clipboard Gdk.Atom.primary
(* status bar and locations *)
let status = GMisc.statusbar ()
let push_info,pop_info,clear_info =
let status_context = status#new_context ~name:"Messages" in
let size = ref 0 in
(fun s -> incr size; ignore (status_context#push s)),
(fun () -> decr size; status_context#pop ()),
(fun () -> for _i = 1 to !size do status_context#pop () done; size := 0)
let flash_info =
let flash_context = status#new_context ~name:"Flash" in
(fun ?(delay=5000) s -> flash_context#flash ~delay s)
let xml_to_string xml =
let open Xml_datatype in
let buf = Buffer.create 1024 in
let rec iter = function
| PCData s -> Buffer.add_string buf s
| Element (_, _, children) ->
List.iter iter children
in
let () = iter (Richpp.repr xml) in
Buffer.contents buf
let translate s = s
let insert_xml ?(tags = []) (buf : #GText.buffer_skel) msg =
let open Xml_datatype in
let tag name =
let name = translate name in
match GtkText.TagTable.lookup buf#tag_table name with
| None -> raise Not_found
| Some tag -> new GText.tag tag
in
let rec insert tags = function
| PCData s -> buf#insert ~tags:(List.rev tags) s
| Element (t, _, children) ->
let tags = try tag t :: tags with Not_found -> tags in
List.iter (fun xml -> insert tags xml) children
in
insert tags (Richpp.repr msg)
let set_location = ref (function s -> failwith "not ready")
(** A utf8 char is either a single byte (ascii char, 0xxxxxxx)
or multi-byte (with a leading byte 11xxxxxx and extra bytes 10xxxxxx) *)
let is_extra_byte c = ((Char.code c) lsr 6 = 2)
(** For a string buffer that may contain utf8 chars,
we convert a byte offset into a char offset
by only counting char-starting bytes.
Normally the string buffer starts with a char-starting byte
(buffer produced by a [#get_text]) *)
let byte_offset_to_char_offset s byte_offset =
let extra_bytes = ref 0 in
for i = 0 to min byte_offset (String.length s - 1) do
if is_extra_byte s.[i] then incr extra_bytes
done;
byte_offset - !extra_bytes
let glib_utf8_pos_to_offset s ~off = byte_offset_to_char_offset s off
let do_convert s =
let from_loc () =
let _,char_set = Glib.Convert.get_charset () in
flash_info ("Converting from locale ("^char_set^")");
Glib.Convert.convert_with_fallback
~to_codeset:"UTF-8" ~from_codeset:char_set s
in
let from_manual enc =
flash_info ("Converting from "^ enc);
Glib.Convert.convert s ~to_codeset:"UTF-8" ~from_codeset:enc
in
let s =
if Glib.Utf8.validate s then (Minilib.log "Input is UTF-8"; s)
else match encoding#get with
|Preferences.Eutf8 | Preferences.Elocale -> from_loc ()
|Emanual enc -> try from_manual enc with _ -> from_loc ()
in
Utf8_convert.f s
let try_convert s =
try
do_convert s
with _ ->
"(* Fatal error: wrong encoding in input. \
Please choose a correct encoding in the preference panel.*)";;
let try_export file_name s =
let s =
try match encoding#get with
|Eutf8 -> Minilib.log "UTF-8 is enforced" ; s
|Elocale ->
let is_unicode,char_set = Glib.Convert.get_charset () in
if is_unicode then
(Minilib.log "Locale is UTF-8" ; s)
else
(Minilib.log ("Locale is "^char_set);
Glib.Convert.convert_with_fallback
~from_codeset:"UTF-8" ~to_codeset:char_set s)
|Emanual enc ->
(Minilib.log ("Manual charset is "^ enc);
Glib.Convert.convert_with_fallback
~from_codeset:"UTF-8" ~to_codeset:enc s)
with e ->
let str = Printexc.to_string e in
Minilib.log ("Error ("^str^") in transcoding: falling back to UTF-8");
s
in
try
let oc = open_out file_name in
output_string oc s;
close_out oc;
true
with e -> Minilib.log (Printexc.to_string e);false
type timer = { run : ms:int -> callback:(unit->bool) -> unit;
kill : unit -> unit }
let mktimer () =
let timer = ref None in
{ run =
(fun ~ms ~callback ->
timer := Some (GMain.Timeout.add ~ms ~callback));
kill =
(fun () -> match !timer with
| None -> ()
| Some id ->
(try GMain.Timeout.remove id
with Glib.GError _ -> ());
timer := None) }
let filter_all_files () = GFile.filter
~name:"All"
~patterns:["*"] ()
let filter_coq_files () = GFile.filter
~name:"Coq source code"
~patterns:[ "*.v"] ()
let current_dir () = match project_path#get with
| None -> ""
| Some dir -> dir
let select_file_for_open ~title ?filename () =
let file_chooser =
GWindow.file_chooser_dialog ~action:`OPEN ~modal:true ~title ()
in
file_chooser#add_button_stock `CANCEL `CANCEL ;
file_chooser#add_select_button_stock `OPEN `OPEN ;
file_chooser#add_filter (filter_coq_files ());
file_chooser#add_filter (filter_all_files ());
file_chooser#set_default_response `OPEN;
let dir = match filename with
| None -> current_dir ()
| Some f -> Filename.dirname f in
ignore (file_chooser#set_current_folder dir);
let file =
match file_chooser#run () with
| `OPEN ->
begin
match file_chooser#filename with
| None -> None
| Some _ as f ->
project_path#set file_chooser#current_folder; f
end
| `DELETE_EVENT | `CANCEL -> None in
file_chooser#destroy ();
file
let select_file_for_save ~title ?filename () =
let file = ref None in
let file_chooser =
GWindow.file_chooser_dialog ~action:`SAVE ~modal:true ~title ()
in
file_chooser#add_button_stock `CANCEL `CANCEL ;
file_chooser#add_select_button_stock `SAVE `SAVE ;
file_chooser#add_filter (filter_coq_files ());
file_chooser#add_filter (filter_all_files ());
file_chooser#set_do_overwrite_confirmation true;
file_chooser#set_default_response `SAVE;
let dir,filename = match filename with
|None -> current_dir (), ""
|Some f -> Filename.dirname f, Filename.basename f
in
ignore (file_chooser#set_current_folder dir);
ignore (file_chooser#set_current_name filename);
begin match file_chooser#run () with
| `SAVE ->
begin
file := file_chooser#filename;
match !file with
None -> ()
| Some s -> project_path#set file_chooser#current_folder
end
| `DELETE_EVENT | `CANCEL -> ()
end ;
file_chooser#destroy ();
!file
let find_tag_start (tag :GText.tag) (it:GText.iter) =
let it = it#copy in
let tag = Some tag in
while not (it#begins_tag tag) && it#nocopy#backward_char do
()
done;
it
let find_tag_stop (tag :GText.tag) (it:GText.iter) =
let it = it#copy in
let tag = Some tag in
while not (it#ends_tag tag) && it#nocopy#forward_char do
()
done;
it
let find_tag_limits (tag :GText.tag) (it:GText.iter) =
(find_tag_start tag it , find_tag_stop tag it)
let stock_to_widget ?(size=`BUTTON) s =
let img = GMisc.image () in
(match size with
| `CUSTOM(width,height) ->
let opb = img#misc#render_icon ~size:`BUTTON s in
let pb = GdkPixbuf.create ~width ~height
~bits:(GdkPixbuf.get_bits_per_sample opb)
~has_alpha:(GdkPixbuf.get_has_alpha opb) () in
GdkPixbuf.scale ~width ~height ~dest:pb opb;
img#set_pixbuf pb
| #Gtk.Tags.icon_size as icon_size ->
img#set_stock s;
img#set_icon_size icon_size);
img#coerce
let custom_coqtop = ref None
let coqtop_path () =
let file = match !custom_coqtop with
| Some s -> s
| None ->
match cmd_coqtop#get with
| Some s -> s
| None ->
let prog = String.copy Sys.executable_name in
try
let pos = String.length prog - 6 in
let i = Str.search_backward (Str.regexp_string "coqide") prog pos
in
String.blit "coqtop" 0 prog i 6;
if Sys.file_exists prog then prog
else
let in_macos_bundle =
Filename.concat
(Filename.dirname prog)
(Filename.concat "../Resources/bin" (Filename.basename prog))
in if Sys.file_exists in_macos_bundle then in_macos_bundle
else "coqtop"
with Not_found -> "coqtop"
in file
(* In win32, when a command-line is to be executed via cmd.exe
(i.e. Sys.command, Unix.open_process, ...), it cannot contain several
quoted "..." zones otherwise some quotes are lost. Solution: we re-quote
everything. Reference: http://ss64.com/nt/cmd.html *)
let requote cmd = if Sys.os_type = "Win32" then "\""^cmd^"\"" else cmd
let textview_width (view : #GText.view_skel) =
let rect = view#visible_rect in
let pixel_width = Gdk.Rectangle.width rect in
let metrics = view#misc#pango_context#get_metrics () in
let char_width = GPango.to_pixels metrics#approx_char_width in
pixel_width / char_width
type logger = Pp.message_level -> Richpp.richpp -> unit
let default_logger level message =
let level = match level with
| Pp.Debug _ -> `DEBUG
| Pp.Info -> `INFO
| Pp.Notice -> `NOTICE
| Pp.Warning -> `WARNING
| Pp.Error -> `ERROR
in
Minilib.log ~level (xml_to_string message)
(** {6 File operations} *)
(** A customized [stat] function. Exceptions are caught. *)
type stats = MTime of float | NoSuchFile | OtherError
let stat f =
try MTime (Unix.stat f).Unix.st_mtime
with
| Unix.Unix_error (Unix.ENOENT,_,_) -> NoSuchFile
| _ -> OtherError
(** I/O utilities
Note: In a mono-thread coqide, we use the same buffer for
different read operations *)
let maxread = 4096
let read_string = String.create maxread
let read_buffer = Buffer.create maxread
(** Read the content of file [f] and add it to buffer [b].
I/O Exceptions are propagated. *)
let read_file name buf =
let ic = Util.open_utf8_file_in name in
let len = ref 0 in
try
while len := input ic read_string 0 maxread; !len > 0 do
Buffer.add_substring buf read_string 0 !len
done;
close_in ic
with e -> close_in ic; raise e
(** Read what is available on a gtk channel. This channel should have been
set as non-blocking. When there's nothing more to read, the inner loop
will be exited via a GError exception concerning a EAGAIN unix error.
Anyway, any other exception also stops the read. *)
let io_read_all chan =
Buffer.clear read_buffer;
let read_once () =
let len = Glib.Io.read_chars ~buf:read_string ~pos:0 ~len:maxread chan in
Buffer.add_substring read_buffer read_string 0 len
in
begin
try while true do read_once () done
with Glib.GError _ -> ()
end;
Buffer.contents read_buffer
(** Run an external command asynchronously *)
let run_command display finally cmd =
let cin = Unix.open_process_in cmd in
let fd = Unix.descr_of_in_channel cin in
let () = Unix.set_nonblock fd in
let io_chan = Glib.Io.channel_of_descr fd in
let all_conds = [`ERR; `HUP; `IN; `NVAL; `PRI] in (* all except `OUT *)
let rec has_errors = function
| [] -> false
| (`IN | `PRI) :: conds -> has_errors conds
| e :: _ -> true
in
let handle_end () = finally (Unix.close_process_in cin); false
in
let handle_input conds =
if has_errors conds then handle_end ()
else
let s = io_read_all io_chan in
if s = "" then handle_end ()
else (display (try_convert s); true)
in
ignore (Glib.Io.add_watch ~cond:all_conds ~callback:handle_input io_chan)
(** Web browsing *)
let browse prerr url =
let com = Util.subst_command_placeholder cmd_browse#get url in
let finally = function
| Unix.WEXITED 127 ->
prerr
("Could not execute:\n"^com^"\n"^
"check your preferences for setting a valid browser command\n")
| _ -> ()
in
run_command (fun _ -> ()) finally com
let doc_url () =
if doc_url#get = use_default_doc_url || doc_url#get = ""
then
let addr = List.fold_left Filename.concat (Coq_config.docdir)
["html";"refman";"index.html"]
in
if Sys.file_exists addr then "file://"^addr else Coq_config.wwwrefman
else doc_url#get
let url_for_keyword =
let ht = Hashtbl.create 97 in
lazy (
begin try
let cin =
try let index_urls = Filename.concat (List.find
(fun x -> Sys.file_exists (Filename.concat x "index_urls.txt"))
(Minilib.coqide_data_dirs ())) "index_urls.txt" in
open_in index_urls
with Not_found ->
let doc_url = doc_url () in
let n = String.length doc_url in
if n > 8 && String.sub doc_url 0 7 = "file://" then
open_in (String.sub doc_url 7 (n-7) ^ "index_urls.txt")
else
raise Exit
in
try while true do
let s = input_line cin in
try
let i = String.index s ',' in
let k = String.sub s 0 i in
let u = String.sub s (i + 1) (String.length s - i - 1) in
Hashtbl.add ht k u
with _ ->
Minilib.log "Warning: Cannot parse documentation index file."
done with End_of_file ->
close_in cin
with _ ->
Minilib.log "Warning: Cannot find documentation index file."
end;
Hashtbl.find ht : string -> string)
let browse_keyword prerr text =
try
let u = Lazy.force url_for_keyword text in
browse prerr (doc_url() ^ u)
with Not_found -> prerr ("No documentation found for \""^text^"\".\n")
|