1996-02-15 08:25:44 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1996-02-15 08:25:44 -08:00
|
|
|
(* *)
|
1996-10-31 08:03:04 -08:00
|
|
|
(* Xavier Leroy and Damien Doligez, INRIA Rocquencourt *)
|
1996-02-15 08:25:44 -08:00
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
2001-12-07 05:41:02 -08:00
|
|
|
(* under the terms of the GNU Library General Public License, with *)
|
|
|
|
(* the special exception on linking described in file ../LICENSE. *)
|
1996-02-15 08:25:44 -08:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
2000-08-10 02:58:08 -07:00
|
|
|
module Unix = struct
|
|
|
|
let current_dir_name = "."
|
|
|
|
let parent_dir_name = ".."
|
|
|
|
let concat dirname filename =
|
|
|
|
let l = String.length dirname in
|
2000-12-28 05:07:42 -08:00
|
|
|
if l = 0 || dirname.[l-1] = '/'
|
2000-08-10 02:58:08 -07:00
|
|
|
then dirname ^ filename
|
|
|
|
else dirname ^ "/" ^ filename
|
|
|
|
let is_relative n = String.length n < 1 || n.[0] <> '/';;
|
|
|
|
let is_implicit n =
|
|
|
|
is_relative n
|
|
|
|
&& (String.length n < 2 || String.sub n 0 2 <> "./")
|
|
|
|
&& (String.length n < 3 || String.sub n 0 3 <> "../")
|
|
|
|
let check_suffix name suff =
|
|
|
|
String.length name >= String.length suff &&
|
|
|
|
String.sub name (String.length name - String.length suff)
|
|
|
|
(String.length suff) = suff
|
|
|
|
let basename name =
|
|
|
|
try
|
|
|
|
let p = String.rindex name '/' + 1 in
|
|
|
|
String.sub name p (String.length name - p)
|
|
|
|
with Not_found ->
|
|
|
|
name
|
|
|
|
let dirname name =
|
|
|
|
try
|
|
|
|
match String.rindex name '/' with
|
|
|
|
0 -> "/"
|
|
|
|
| n -> String.sub name 0 n
|
|
|
|
with Not_found ->
|
|
|
|
"."
|
|
|
|
let temporary_directory =
|
|
|
|
try Sys.getenv "TMPDIR" with Not_found -> "/tmp"
|
|
|
|
end
|
|
|
|
|
|
|
|
module Win32 = struct
|
|
|
|
let current_dir_name = "."
|
|
|
|
let parent_dir_name = ".."
|
|
|
|
let concat dirname filename =
|
|
|
|
let l = String.length dirname in
|
2000-12-28 05:07:42 -08:00
|
|
|
if l = 0 || (let c = dirname.[l-1] in c = '/' || c = '\\' || c = ':')
|
2000-08-10 02:58:08 -07:00
|
|
|
then dirname ^ filename
|
|
|
|
else dirname ^ "\\" ^ filename
|
|
|
|
let is_relative n =
|
|
|
|
(String.length n < 1 || n.[0] <> '/')
|
|
|
|
&& (String.length n < 1 || n.[0] <> '\\')
|
|
|
|
&& (String.length n < 2 || n.[1] <> ':')
|
|
|
|
let is_implicit n =
|
|
|
|
is_relative n
|
|
|
|
&& (String.length n < 2 || String.sub n 0 2 <> "./")
|
|
|
|
&& (String.length n < 2 || String.sub n 0 2 <> ".\\")
|
|
|
|
&& (String.length n < 3 || String.sub n 0 3 <> "../")
|
|
|
|
&& (String.length n < 3 || String.sub n 0 3 <> "..\\")
|
|
|
|
let check_suffix name suff =
|
|
|
|
String.length name >= String.length suff &&
|
|
|
|
(let s = String.sub name (String.length name - String.length suff)
|
|
|
|
(String.length suff) in
|
|
|
|
String.lowercase s = String.lowercase suff)
|
|
|
|
let rindexsep s =
|
|
|
|
let rec pos i =
|
|
|
|
if i < 0 then raise Not_found
|
|
|
|
else if (let c = s.[i] in c = '/' || c = '\\' || c = ':') then i
|
|
|
|
else pos (i - 1)
|
|
|
|
in pos (String.length s - 1)
|
|
|
|
let basename name =
|
|
|
|
try
|
|
|
|
let p = rindexsep name + 1 in
|
|
|
|
String.sub name p (String.length name - p)
|
|
|
|
with Not_found ->
|
|
|
|
name
|
|
|
|
let dirname name =
|
|
|
|
try
|
|
|
|
match rindexsep name with
|
|
|
|
0 -> "\\"
|
|
|
|
| n ->
|
|
|
|
let n =
|
|
|
|
if name.[n] = ':' || (n > 0 && name.[n-1] = ':')
|
|
|
|
then n+1 else n in
|
|
|
|
String.sub name 0 n
|
|
|
|
with Not_found ->
|
|
|
|
"."
|
|
|
|
let temporary_directory =
|
|
|
|
try Sys.getenv "TEMP" with Not_found -> "C:\\temp"
|
|
|
|
end
|
|
|
|
|
|
|
|
module MacOS = struct
|
|
|
|
let current_dir_name = "."
|
|
|
|
let parent_dir_name = ".."
|
|
|
|
let concat dirname filename =
|
|
|
|
let l = String.length dirname in
|
2000-12-28 05:07:42 -08:00
|
|
|
if l = 0 || dirname.[l-1] = ':'
|
2000-08-10 02:58:08 -07:00
|
|
|
then dirname ^ filename
|
|
|
|
else dirname ^ ":" ^ filename
|
|
|
|
let contains_colon n = String.contains n ':'
|
|
|
|
let is_relative n =
|
|
|
|
(String.length n >= 1 && n.[0] = ':')
|
|
|
|
|| not (contains_colon n)
|
|
|
|
let is_implicit n = not (contains_colon n)
|
|
|
|
let check_suffix = Unix.check_suffix
|
|
|
|
let basename name =
|
|
|
|
try
|
|
|
|
let p = String.rindex name ':' + 1 in
|
|
|
|
String.sub name p (String.length name - p)
|
|
|
|
with Not_found -> name
|
|
|
|
let dirname name =
|
|
|
|
try match String.rindex name ':' with
|
|
|
|
| 0 -> ":"
|
|
|
|
| n -> String.sub name 0 n
|
|
|
|
with Not_found -> ":"
|
|
|
|
let temporary_directory =
|
|
|
|
try Sys.getenv "TempFolder" with Not_found -> ":"
|
|
|
|
end
|
|
|
|
|
|
|
|
let (current_dir_name, parent_dir_name, concat, is_relative, is_implicit,
|
|
|
|
check_suffix, basename, dirname, temporary_directory) =
|
1996-11-07 03:00:19 -08:00
|
|
|
match Sys.os_type with
|
2000-08-10 02:58:08 -07:00
|
|
|
"Unix" | "Cygwin" ->
|
|
|
|
(Unix.current_dir_name, Unix.parent_dir_name, Unix.concat,
|
|
|
|
Unix.is_relative, Unix.is_implicit, Unix.check_suffix,
|
|
|
|
Unix.basename, Unix.dirname, Unix.temporary_directory)
|
|
|
|
| "Win32" ->
|
|
|
|
(Win32.current_dir_name, Win32.parent_dir_name, Win32.concat,
|
|
|
|
Win32.is_relative, Win32.is_implicit, Win32.check_suffix,
|
|
|
|
Win32.basename, Win32.dirname, Win32.temporary_directory)
|
|
|
|
| "MacOS" ->
|
|
|
|
(MacOS.current_dir_name, MacOS.parent_dir_name, MacOS.concat,
|
|
|
|
MacOS.is_relative, MacOS.is_implicit, MacOS.check_suffix,
|
|
|
|
MacOS.basename, MacOS.dirname, MacOS.temporary_directory)
|
1997-10-24 08:54:07 -07:00
|
|
|
| _ -> assert false
|
1996-02-15 08:25:44 -08:00
|
|
|
|
|
|
|
let chop_suffix name suff =
|
|
|
|
let n = String.length name - String.length suff in
|
|
|
|
if n < 0 then invalid_arg "Filename.chop_suffix" else String.sub name 0 n
|
1996-10-06 09:38:09 -07:00
|
|
|
|
1996-02-15 08:25:44 -08:00
|
|
|
let chop_extension name =
|
|
|
|
try
|
1997-10-24 08:54:07 -07:00
|
|
|
String.sub name 0 (String.rindex name '.')
|
1996-02-15 08:25:44 -08:00
|
|
|
with Not_found ->
|
|
|
|
invalid_arg "Filename.chop_extension"
|
|
|
|
|
1996-10-31 08:03:04 -08:00
|
|
|
external open_desc: string -> open_flag list -> int -> int = "sys_open"
|
|
|
|
external close_desc: int -> unit = "sys_close"
|
1996-02-15 08:25:44 -08:00
|
|
|
|
|
|
|
let temp_file prefix suffix =
|
|
|
|
let rec try_name counter =
|
1998-04-27 02:55:50 -07:00
|
|
|
if counter >= 1000 then
|
|
|
|
invalid_arg "Filename.temp_file: temp dir nonexistent or full"
|
|
|
|
else begin
|
|
|
|
let name =
|
|
|
|
concat temporary_directory (prefix ^ string_of_int counter ^ suffix) in
|
|
|
|
try
|
|
|
|
close_desc(open_desc name [Open_wronly; Open_creat; Open_excl] 0o666);
|
|
|
|
name
|
|
|
|
with Sys_error _ ->
|
|
|
|
try_name (counter + 1)
|
|
|
|
end
|
1996-02-15 08:25:44 -08:00
|
|
|
in try_name 0
|
1996-10-31 08:03:04 -08:00
|
|
|
|
1999-11-29 11:04:04 -08:00
|
|
|
let quote s =
|
2000-08-10 02:58:08 -07:00
|
|
|
let quotequote =
|
|
|
|
match Sys.os_type with "MacOS" -> "'\182''" | _ -> "'\\''" in
|
1999-11-29 11:04:04 -08:00
|
|
|
let l = String.length s in
|
|
|
|
let b = Buffer.create (l + 20) in
|
|
|
|
Buffer.add_char b '\'';
|
|
|
|
for i = 0 to l - 1 do
|
1999-12-30 04:54:15 -08:00
|
|
|
if s.[i] = '\''
|
2000-01-07 08:47:25 -08:00
|
|
|
then Buffer.add_string b quotequote
|
|
|
|
else Buffer.add_char b s.[i]
|
1999-11-29 11:04:04 -08:00
|
|
|
done;
|
|
|
|
Buffer.add_char b '\'';
|
|
|
|
Buffer.contents b
|