Soilihi BEN SOILIHI BOINA pushed to branch soilih at Stefan / Typer
Commits: 1d141dbd by Soilih BEN SOILIH at 2021-08-13T10:57:54-06:00 fixing context
- - - - -
2 changed files:
- src/elab.ml - src/typer_lsp_server.ml
Changes:
===================================== src/elab.ml ===================================== @@ -1146,8 +1146,8 @@ and lexp_decls_macro (loc, mname) sargs ctx: sexp = | _ -> fatal ~loc ("Macro `" ^ mname ^ "` should return a IO sexp")) | _ -> fatal ~loc ("Macro `" ^ mname ^ "` should return an IO")
- with _e -> - fatal ~loc ("Macro `" ^ mname ^ "` not found") + with _e -> Sexp.dummy_epsilon + (*fatal ~loc ("Macro `" ^ mname ^ "` not found")*)
(* Elaborate a bunch of mutually-recursive definitions. * FIXME: Currently, we never apply generalization to recursive definitions,
===================================== src/typer_lsp_server.ml ===================================== @@ -240,7 +240,28 @@ module Compl = struct ) liste in - word + word + + let dist_compl (loc1:string * int * int) (loc2:int * int) = + let (_,loc1_sl,loc1_sc) = loc1 in + let (loc2_sl,loc2_sc) = loc2 in + int_of_float ( + sqrt ( + (((float_of_int (loc1_sl)) -. (float_of_int (loc2_sl))) ** 2.0 ) + +. (((float_of_int (loc1_sc)) -. (float_of_int (loc2_sc))) ** 2.0 ) + ) + ) + + let rec find_the_nearest_compl (liste:(string * int * int) list) (pos:int * int) : string = + + match liste with + | [] -> failwith "No Completion found!!!" + | [n] -> let (w,_,_) = n in w + | [hd;tl] -> if ((dist_compl hd pos) < (dist_compl tl pos)) then let (w,_,_) = hd in w + else let (w,_,_) = tl in w + |hd::ml::tl -> if ((dist_compl hd pos) < (dist_compl ml pos)) then (find_the_nearest_compl (hd::tl) pos) + else find_the_nearest_compl (ml::tl) pos +
let match_str (str:string) : Str.regexp = str @@ -249,6 +270,7 @@ module Compl = struct
let rec complete (str:string) (liste: t list) = + (* match str with | "List." -> let lst = List.filter (fun x -> Int.equal x.id 1 @@ -262,11 +284,43 @@ module Compl = struct Str.string_match reg x.label 0 ) liste - + *) + let splt = String.split_on_char '.' str in + + match splt with + + | [] -> liste + | [n] -> List.filter (fun x -> + let reg = match_str n in + Str.string_match reg x.label 0 + ) + liste + | [hd;tl] when (hd == "List") -> List.filter (fun x -> + let reg = match_str tl in + Str.string_match reg x.label 0 + ) + liste + | _ -> List.filter (fun x -> + let reg = match_str str in + Str.string_match reg x.label 0 + ) + liste end
(*==============completion============================*)
+let update_the_context (ctx: Debruijn.lexp_context) (liste : (vname * Lexp.lexp * Lexp.ltype) list list ) : (Debruijn.lexp_context * (vname * Lexp.lexp * Lexp.ltype) list) list = + + let rec foo (ctx: Debruijn.lexp_context) (liste : (vname * Lexp.lexp * Lexp.ltype) list list ) (list_ret: (Debruijn.lexp_context * (vname * Lexp.lexp * Lexp.ltype) list) list) = + match liste with + | [] -> failwith "No context to extend !!!" + | hd::tl -> let lctx = Debruijn.lctx_extend_rec ctx hd in + let elt = (lctx,hd) in + foo lctx tl (elt::list_ret) + in + foo (ctx: Debruijn.lexp_context) liste [] + + (*====================================Lexp parcourir===================================*)
(* find the nearest lexp using Euclidean distance @@ -280,18 +334,53 @@ end ) )
- let find_the_nearest_lexp (lst:(vname * Lexp.lexp * Lexp.ltype) list list) (cursor:Source.Location.t) = - let tab = List.map (fun x -> let (a,b,c) = List.nth x 0 in (a,b,c)) lst in - let lexp_list = List.map (fun x -> let (_,b,_) = x in b ) tab in - let rec foo lexp_list cursor = - match lexp_list with - | [] -> failwith "No Lexp found!!!" - | [n] -> n - | [hd;tl] -> if (dist (Lexp.lexp_location hd) cursor < dist (Lexp.lexp_location tl) cursor ) then hd - else tl - |hd::ml::tl -> if (dist (Lexp.lexp_location hd) cursor < dist (Lexp.lexp_location ml) cursor ) then (foo (hd::tl) cursor) - else foo (ml::tl) cursor - in foo lexp_list cursor + let pos_in_lexp_interval (ctx: Debruijn.lexp_context) (lst: (vname * Lexp.lexp * Lexp.ltype) list list) (cursor:Source.Location.t) = + + let lstr = update_the_context ctx lst in + + let rec foo (ls: (Debruijn.lexp_context * (vname * Lexp.lexp * Lexp.ltype) list) list) (cursor:Source.Location.t) : Debruijn.lexp_context * Lexp.lexp = + match ls with + | [] -> failwith "No Lexp found!" + | hd::tl -> let (lctx_hd, hdl) = hd in + let (_,lxp,_) = List.nth hdl 0 in + let location = Lexp.lexp_location lxp in + if ((location.start_line <= cursor.start_line && location.start_column <= cursor.start_column) + && + (location.end_line >= cursor.end_line && location.end_column >= cursor.end_column)) + then (lctx_hd,lxp) + else foo tl cursor + in foo lstr cursor + + let find_the_nearest_lexp (ctx: Debruijn.lexp_context) (lst:(vname * Lexp.lexp * Lexp.ltype) list list) (cursor:Source.Location.t) = + + let lstr = update_the_context ctx lst in + + let rec foo (ls: (Debruijn.lexp_context * (vname * Lexp.lexp * Lexp.ltype) list) list) (cursor:Source.Location.t) : Debruijn.lexp_context * Lexp.lexp = + + match ls with + | [] -> failwith "No Lexp found!" + | [n] -> let (lctx,l) = n in + let (_,lxp,_) = List.nth l 0 in + (lctx,lxp) + | [hd;tl] -> let (lctx_hd,hdl) = hd in + let (lctx_tl,tll) = tl in + let (_,lxp,_) = List.nth hdl 0 in + let (_,lxp',_) = List.nth tll 0 in + if (dist (Lexp.lexp_location lxp) cursor < dist (Lexp.lexp_location lxp') cursor ) + then (lctx_hd,lxp) + else + ( + (lctx_tl,lxp') + ) + | hd::ml::tl -> let (lctx_hd,hdl) = hd in + let (lctx_ml,mll) = ml in + let (_,lxp,_) = List.nth hdl 0 in + let (_,lxp',_) = List.nth mll 0 in + if (dist (Lexp.lexp_location lxp) cursor < dist (Lexp.lexp_location lxp') cursor ) + then (foo (hd::tl) cursor) + else foo (ml::tl) cursor + + in foo lstr cursor
let browse_list_lexp (tab:(Debruijn.lexp_context * (((Source.Location.t * string option) * int) option) * Lexp.lexp * Source.Location.t) list) (cursor:Source.Location.t) = let rec foo tab cursor = @@ -307,33 +396,11 @@ end if (dist loc_hd cursor < dist loc_ml cursor ) then (foo (hd::tl) cursor) else foo (ml::tl) cursor in foo tab cursor - - let pos_in_lexp_interval (lst: (vname * Lexp.lexp * Lexp.ltype) list list) (cursor:Source.Location.t) = - let tab = List.map (fun x -> let (a,b,c) = List.nth x 0 in (a,b,c)) lst in - let lexp_list = List.map (fun x -> let (_,b,_) = x in b ) tab in - let open Source.Location in - let rec foo lexp_list cursor = - match lexp_list with - | [] -> failwith "Liste vide!" - | hd::tl -> let location = Lexp.lexp_location hd in - if ((location.start_line <= cursor.start_line && location.start_column <= cursor.start_column) - && - (location.end_line >= cursor.end_line && location.end_column >= cursor.end_column)) - then hd - else foo tl cursor - in foo lexp_list cursor +
let lexp_search (ctx: Debruijn.lexp_context) (lst:(vname * Lexp.lexp * Lexp.ltype) list list) (cursor:Source.Location.t) = - let lctx = List.fold_left - (fun x y -> - Debruijn.lctx_extend_rec x y - ) - ctx lst - in - let lexp = try pos_in_lexp_interval lst cursor - with exn -> find_the_nearest_lexp lst cursor - in - (lctx,lexp) + try pos_in_lexp_interval ctx lst cursor + with exn -> find_the_nearest_lexp ctx lst cursor
(* search the type of a lexp browsing a lexp*) let rec browse_lexp (ctx:Debruijn.lexp_context) (e:Lexp.lexp) (cursor:Source.Location.t) : Debruijn.lexp_context * (((Source.Location.t * string option) * int) option) * Lexp.lexp * Source.Location.t = @@ -364,17 +431,19 @@ end -> (Debruijn.lctx_extend ctx v ForwardRef t)) ctx defs in
- let tab = List.map - (fun (vn,lxp,ltp) -> - browse_lexp ctx' lxp cursor - ) - defs - in - - let (ctx'',id, ret,loc) = browse_list_lexp ((browse_lexp ctx' e cursor)::tab) cursor in - - (ctx'',id, Lexp.mkSusp ret (Opslexp.lexp_defs_subst l Subst.identity defs),loc) + let tab = List.map + (fun (vn,lxp,ltp) -> + browse_lexp ctx' lxp cursor + ) + defs + in + + let lt = (ctx,None, Lexp.mkSusp (Opslexp.get_type ctx e) (Opslexp.lexp_defs_subst l Subst.identity defs),l) in
+ browse_list_lexp ((browse_lexp ctx' e cursor)::lt::tab) cursor + + + | Arrow (ak, v, t1, l, t2) -> ( let nctx = Debruijn.lexp_ctx_cons ctx v Variable t1 in @@ -387,12 +456,11 @@ end | SortK2NotType -> (nctx, None, Lexp.mkSort (l, StypeOmega), location) ) - | Lambda (ak, ((l,_) as v), t, e) -> let ctx' = Debruijn.lctx_extend ctx v Variable t in - let a = browse_lexp ctx' e cursor in - let b = browse_lexp ctx t cursor in - let c = (ctx,None,t,l) in - let (ctx'',id,ret,loc) = browse_list_lexp ([a;b;c]) cursor in - (ctx'',id, ret, loc) + | Lambda (ak, ((l,_) as v), t, e) -> let ctx' = Debruijn.lctx_extend ctx v Variable t in + let a = browse_lexp ctx' e cursor in + let b = browse_lexp ctx t cursor in + let c = (ctx,None,(Opslexp.get_type ctx e),l) in + browse_list_lexp ([a;b;c]) cursor
| Call (f, args) -> ( @@ -458,7 +526,7 @@ end -> let (level, tab) = SMap.fold (fun _ case (level,tab) -> - let ((level, rctx, _), tab) = + let ((level, _, _), tab) = List.fold_left ( fun ((level, ictx, n), tab) (ak, v, t) -> @@ -496,7 +564,6 @@ end
) | Case (l, e, ret, branches, default) - (* FIXME: Check that the return type isn't TypeLevel. *) -> ( let candidats = ref [] in @@ -644,8 +711,7 @@ let rec find_def_location (ctx:Debruijn.lexp_context) (ret : Debruijn.lexp_conte
match vr with | None -> loc - | Some v -> let ((_,_), idx) = v in - let ((l,_),_,_) = Myers.nth idx ctx in + | Some v -> let ((l,_),_,_) = Debruijn.lctx_lookup ctx v in l
@@ -679,7 +745,21 @@ class lsp_server = let new_state = process_some_input_file contents in Hashtbl.replace buffers uri new_state; let diags = diagnostics new_state in - notify_back#send_diagnostic diags + let diags2 = List.map ( fun (x: Linol_lwt.Diagnostic.t) -> + + let ls = x.range.start in + let le = x.range.end_ in + { + x + with + range = + { + start = { ls with line = ls.line - 1 }; + end_ = { le with line = le.line - 1 } + } + } + ) diags in + notify_back#send_diagnostic diags2
(* We now override the [on_notify_doc_did_open] method that will be called by the server each time a new document is opened. *) @@ -764,16 +844,23 @@ class lsp_server =
| state_after_processing -> let trans_string = Compl.tranform_string doc_state.content in let fbyline = Compl.list_filter_by_line trans_string (pos.line + 1) in - let word = Compl.list_filter_by_character fbyline ((pos.line + 1),pos.character) in + let word = Compl.find_the_nearest_compl fbyline ((pos.line + 1),pos.character) in let typer_loc = typer_pos_of_lsp_pos pos in + let path = "/home/soilih/Bureau/test/compl.txt" in + let oc = open_out_gen [Open_creat; Open_text; Open_append] 0o640 path in + let c = "-----------------\n mot:" ^ word ^ "\n-------------\n" in + + output_string oc (c); + close_out oc;
let range = Compl.lsp_range_of_a_tuple - (typer_loc.start_line,(typer_loc.end_column - 2 - String.length word)) + (typer_loc.start_line,(typer_loc.end_column - String.length word)) (typer_loc.end_line, typer_loc.end_column) in
let tab_compl = Compl.complete word (Compl.t_from_tuple Compl.exemple_liste) in
+ let r = List.map (fun (x:Compl.t) -> let label = x.label in let textEdit = Lsp.Types.TextEdit.create ~range:range ~newText:(x.newText) in @@ -824,7 +911,7 @@ let sep name s = let test () = let ctx = Debruijn.ectx_to_lctx (Elab.default_ectx) in let name = "/home/soilih/Bureau/test/test.txt" in - sep name "INT"; + (*sep name "INT"; hoverTest ctx name "e = 12 ;" (1,1) "##Int"; hoverTest ctx name "e = 12 ;" (1,5) "##Int"; sep name "STRING"; @@ -865,7 +952,7 @@ let test () = hoverTest ctx name "lst = cons 2 ( (cons 1 ) nil ) ;" (1,1) "##Type"; hoverTest ctx name "lst = cons 2 ( (cons 1 ) nil ) ;" (1,8) "(ℓ : TypeLevel) ≡> (a : (##Type_ ℓ)) ≡> (a -> ((List ℓ a) -> (List ℓ a)))"; hoverTest ctx name "lst = cons 2 ( (cons 1 ) nil ) ;" (1,12) "##Int"; - hoverTest ctx name "lst = cons 2 ( (cons 1 ) nil ) ;" (1,27) "(ℓ : TypeLevel) ≡> (a : (##Type_ ℓ)) ≡> (List ℓ a)"; + hoverTest ctx name "lst = cons 2 ( (cons 1 ) nil ) ;" (1,27) "(ℓ : TypeLevel) ≡> (a : (##Type_ ℓ)) ≡> (List ℓ a)";*) sep name "ARROW"; hoverTest ctx name "type Floo = bar Int Int ;" (1,1) ""; hoverTest ctx name "type Floo = bar Int Int ;" (1,7) ""; @@ -878,7 +965,7 @@ let test () = hoverTest ctx name "floo = typecons (floo) (bar Int Int) ;\n\n\nbar = datacons floo bar ;" (4,10) ""; hoverTest ctx name "floo = typecons (floo) (bar Int Int) ;\n\n\nbar = datacons floo bar ;" (4,17) ""; hoverTest ctx name "floo = typecons (floo) (bar Int Int) ;\n\n\nbar = datacons floo bar ;" (4,29) ""; - hoverTest ctx name "v = Int -> Int ;" (1,1) ""; + hoverTest ctx name "v = Int -> Int ;" (1,1) ""(*; sep name "INDUCTIVE"; hoverTest ctx name "Bool = typecons (Bool) (true) (false);" (1,1) ""; hoverTest ctx name "Bool = typecons (Bool) (true) (false);" (1,10) ""; @@ -914,7 +1001,7 @@ let test () = hoverTest ctx name "foo x = case x\n\n| true => "h"\n\n| false => "jj" ;" (3,4) ""; hoverTest ctx name "foo x = case x\n\n| true => "h"\n\n| false => "jj" ;" (3,13) ""; hoverTest ctx name "foo x = case x\n\n| true => "h"\n\n| false => "jj" ;" (5,4) ""; - hoverTest ctx name "foo x = case x\n\n| true => "h"\n\n| false => "jj" ;" (5,14) "" + hoverTest ctx name "foo x = case x\n\n| true => "h"\n\n| false => "jj" ;" (5,14) ""*)
(*=======================================Test======================================*) @@ -926,7 +1013,7 @@ let test () = let run () = ignore (Arg.Set Log.lsp_enabled); Logs.set_level ~all:true (Some Logs.Debug); - test (); + (*test ();*) let s = new lsp_server in let server = Linol_lwt.Jsonrpc2.create_stdio s in let task = Linol_lwt.Jsonrpc2.run server in
View it on GitLab: https://gitlab.com/monnier/typer/-/commit/1d141dbd6bd7cd1d96d47c10744915502d...
Afficher les réponses par date