Skip to content
Snippets Groups Projects
Commit 53d7d13e authored by Cesar Roux Dit Buisson's avatar Cesar Roux Dit Buisson
Browse files

Add anonymous lift for log on function call

Still needs a polish in order to detect:
-Not an actual return line
-return line does not call function
-Proper padding and indentation (I gave up after trying 3 hours)
parent 986448c6
No related branches found
No related tags found
No related merge requests found
...@@ -116,7 +116,18 @@ struct ...@@ -116,7 +116,18 @@ struct
in build 0 in in build 0 in
let lines_list = snd @@ List.fold_left (fun (st, acc) ed -> (ed, String.sub s st (ed - st) :: acc)) (0, []) (end_line_markers s) let lines_list = snd @@ List.fold_left (fun (st, acc) ed -> (ed, String.sub s st (ed - st) :: acc)) (0, []) (end_line_markers s)
in append_token lines_list in append_token lines_list
(* Take a String in form of "\n return somefunctions(sas, ad);" and wrap it in order to allow log of function enter and exit *)
(* TODO: Handle skipping of case where return does not contain function evaluation. (By regexp? No Brackets?) *)
let ppf_return_wrap l s =
let funccall = List.hd @@ Str.split (Str.regexp "\n?.*return ") s in
Format.sprintf "return (function () {@;<1 2>@[<v 1>\
log_custom({line: %d, type: \"enter\"});\
@,var res = %s\
@,log_custom({line: %d, type: \"exit\"});\
@,return res;
@]@,}());@,@," l funccall l
let add_log_info s = let add_log_info s =
let buf = Buffer.create 16 in let buf = Buffer.create 16 in
let ls = lines s in let ls = lines s in
...@@ -147,8 +158,9 @@ struct ...@@ -147,8 +158,9 @@ struct
in ctx_processing id ^ "\n" ^ pad ^ "log("^ string_of_int i ^" , ctx, " ^ typ ^ ");\n" in ctx_processing id ^ "\n" ^ pad ^ "log("^ string_of_int i ^" , ctx, " ^ typ ^ ");\n"
| Redef _ -> "" (* Actually not used *) | Redef _ -> "" (* Actually not used *)
| Del _ -> "" (* Actually not used *) | Del _ -> "" (* Actually not used *)
in Buffer.add_string buf log_info; Buffer.add_string buf str; in Buffer.add_string buf log_info;
aux (i + 1) xs Buffer.add_string buf (ppf_return_wrap (i+1) str); (* i is line number of line preceding return *)
aux (i + 1) xs
in aux 0 ls; Buffer.contents buf in aux 0 ls; Buffer.contents buf
let logged_output s = let logged_output s =
......
...@@ -44,7 +44,12 @@ var eval_ = function (expr) { ...@@ -44,7 +44,12 @@ var eval_ = function (expr) {
ctx_push(ctx, "ls", ls, "value"); ctx_push(ctx, "ls", ls, "value");
ctx_push(ctx, "rs", rs, "value"); ctx_push(ctx, "rs", rs, "value");
log(30 , ctx, "Sub"); log(30 , ctx, "Sub");
return call_wrap(31, ls, eval_) - call_wrap(31, rs, eval_); return (function() {
log_custom({line: 31, type: "enter"});
var res = eval_(ls) - eval_(rs);
log_custom({line: 31, type: "exit"});
return res;
}());
case "Mul": var ls = expr.left, rs = expr.right; case "Mul": var ls = expr.left, rs = expr.right;
ctx_push(ctx, "ls", ls, "value"); ctx_push(ctx, "ls", ls, "value");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment