Skip to content
Snippets Groups Projects
Commit f3e11715 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[Filepath] add 'pwd' function

parent a735c806
No related branches found
No related tags found
No related merge requests found
...@@ -447,19 +447,9 @@ let concat_strs ?(pre="") ?(sep=" ") l = ...@@ -447,19 +447,9 @@ let concat_strs ?(pre="") ?(sep=" ") l =
if l = [] then "" if l = [] then ""
else pre ^ (String.concat sep l) else pre ^ (String.concat sep l)
let cwd () =
(* TODO: we currently use PWD instead of Sys.getcwd () because OCaml has
no function in its stdlib to resolve symbolic links (e.g. realpath)
for a given path. 'getcwd' always resolves them, but if the user
supplies a path with symbolic links, this may cause issues.
Instead of forcing the user to always provide resolved paths, we
currently choose to never resolve them.
We only resort to getcwd() to avoid issues when PWD does not exist. *)
try Unix.getenv "PWD" with Not_found -> Sys.getcwd ()
let adjust_pwd fp cpp_command = let adjust_pwd fp cpp_command =
if Kernel.JsonCompilationDatabase.is_set () then if Kernel.JsonCompilationDatabase.is_set () then
let cwd = cwd () in let cwd = Filepath.pwd () in
let dir = let dir =
match Json_compilation_database.get_dir fp with match Json_compilation_database.get_dir fp with
| None -> cwd | None -> cwd
...@@ -583,7 +573,7 @@ let abort_with_detailed_pp_message f cpp_command = ...@@ -583,7 +573,7 @@ let abort_with_detailed_pp_message f cpp_command =
"failed to run: %s\n(PWD: %s)@\n\ "failed to run: %s\n(PWD: %s)@\n\
%sSee chapter \"Preparing the Sources\" in the Frama-C user manual \ %sSee chapter \"Preparing the Sources\" in the Frama-C user manual \
for more details." for more details."
cpp_command (cwd ()) possible_cause cpp_command (Filepath.pwd ()) possible_cause
let parse_cabs cpp_command = function let parse_cabs cpp_command = function
| NoCPP f -> | NoCPP f ->
......
...@@ -323,6 +323,8 @@ type position = ...@@ -323,6 +323,8 @@ type position =
let pp_pos fmt pos = let pp_pos fmt pos =
Format.fprintf fmt "%a:%d" Normalized.pretty pos.pos_path pos.pos_lnum Format.fprintf fmt "%a:%d" Normalized.pretty pos.pos_path pos.pos_lnum
let pwd () = try Unix.getenv "PWD" with Not_found -> Sys.getcwd ()
(* (*
Local Variables: Local Variables:
compile-command: "make -C ../../.." compile-command: "make -C ../../.."
......
...@@ -207,6 +207,21 @@ type position = ...@@ -207,6 +207,21 @@ type position =
*) *)
val pp_pos : Format.formatter -> position -> unit val pp_pos : Format.formatter -> position -> unit
(** Return the current working directory.
Currently uses the environment's PWD instead of Sys.getcwd () because OCaml
has no function in its stdlib to resolve symbolic links (e.g. realpath)
for a given path. 'getcwd' always resolves them, but if the user
supplies a path with symbolic links, this may cause issues.
Instead of forcing the user to always provide resolved paths, we
currently choose to never resolve them.
We only resort to getcwd() to avoid issues when PWD does not exist.
Note that this function does not validate that PWD has not been tampered
with.
@since Frama-C+dev
*)
val pwd : unit -> string
(* (*
Local Variables: Local Variables:
compile-command: "make -C ../../.." compile-command: "make -C ../../.."
......
...@@ -255,15 +255,7 @@ let gen_run remarks = ...@@ -255,15 +255,7 @@ let gen_run remarks =
(key, (dir :> string)) (key, (dir :> string))
) (Filepath.all_symbolic_dirs ()) ) (Filepath.all_symbolic_dirs ())
in in
(* TODO: we currently use Sys.getenv "PWD" instead of Sys.getcwd () let pwd = Filepath.pwd () in
because OCaml has no function in its stdlib to resolve symbolic links
(e.g. realpath) for a given path.
'getcwd' always resolves them, but if the user supplies a path with
symbolic links, this may cause issues.
Instead of forcing the user to always provide resolved paths, we
currently choose to never resolve them.
We only resort to getcwd() to avoid issues when PWD does not exist. *)
let pwd = try Sys.getenv "PWD" with Not_found -> Sys.getcwd () in
let uriBases = ("PWD", pwd) :: symbolicDirs in let uriBases = ("PWD", pwd) :: symbolicDirs in
let uriBasesJson = let uriBasesJson =
List.fold_left (fun acc (name, dir) -> List.fold_left (fun acc (name, dir) ->
......
...@@ -1129,15 +1129,7 @@ let get_output_dir d = ...@@ -1129,15 +1129,7 @@ let get_output_dir d =
(* --- Session dir --- *) (* --- Session dir --- *)
(* -------------------------------------------------------------------------- *) (* -------------------------------------------------------------------------- *)
(* TODO: we currently use PWD instead of Sys.getcwd () because OCaml has let default = Fc_Filepath.pwd () ^ "/.frama-c"
no function in its stdlib to resolve symbolic links (e.g. realpath)
for a given path. 'getcwd' always resolves them, but if the user
supplies a path with symbolic links, this may cause issues.
Instead of forcing the user to always provide resolved paths, we
currently choose to never resolve them.
We only resort to getcwd() to avoid issues when PWD does not exist. *)
let default =
(try Sys.getenv "PWD" with Not_found -> Sys.getcwd ()) ^ "/.frama-c"
let has_session () = let has_session () =
Session.is_set () || Session.is_set () ||
......
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