10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-02 03:15:34 +02:00
QuantumPackage/scripts/ezfio_interface/qp_edit_template

406 lines
10 KiB
Plaintext
Raw Normal View History

2019-01-25 11:39:31 +01:00
(*
vim::syntax=ocaml
*)
open Qputils
open Qptypes
2019-03-13 15:49:57 +01:00
open Sexplib.Std
2019-01-25 11:39:31 +01:00
(** Interactive editing of the input.
2024-03-16 15:21:40 +01:00
WARNING
2019-01-25 11:39:31 +01:00
This file is automatically generated by
`${{QP_ROOT}}/scripts/ezfio_interface/ei_handler.py`
*)
(** Keywords used to define input sections *)
2024-03-16 15:21:40 +01:00
type keyword =
2019-01-25 11:39:31 +01:00
| Ao_basis
| Determinants_by_hand
| Electrons
| Mo_basis
| Nuclei_by_hand
{keywords}
let keyword_to_string = function
| Ao_basis -> "AO basis"
| Determinants_by_hand -> "Determinants_by_hand"
| Electrons -> "Electrons"
| Mo_basis -> "MO basis"
| Nuclei_by_hand -> "Molecule"
{keywords_to_string}
(** Create the header of the temporary file *)
2024-03-16 15:21:40 +01:00
let file_header filename =
2019-01-25 11:39:31 +01:00
Printf.sprintf "
==================================================================
Quantum Package
==================================================================
Editing file `%s`
" filename
2024-03-16 15:21:40 +01:00
2019-01-25 11:39:31 +01:00
(** Creates the header of a section *)
let make_header kw =
let s = keyword_to_string kw in
let l = String.length s in
2019-03-13 15:49:57 +01:00
"\n\n"^s^"\n"^(String.init l (fun _ -> '='))^"\n\n"
2019-01-25 11:39:31 +01:00
(** Returns the rst string of section [s] *)
2024-03-16 15:21:40 +01:00
let get s =
2019-01-25 11:39:31 +01:00
let header = (make_header s) in
2024-03-16 15:21:40 +01:00
let f (read,to_rst) =
2019-01-25 11:39:31 +01:00
match read () with
| Some text -> header ^ (Rst_string.to_string (to_rst text))
| None -> ""
in
2024-03-16 15:21:40 +01:00
let rst =
2019-01-25 11:39:31 +01:00
try
begin
let open Input in
match s with
| Mo_basis ->
f Mo_basis.(read, to_rst)
| Electrons ->
f Electrons.(read, to_rst)
| Nuclei_by_hand ->
f Nuclei_by_hand.(read, to_rst)
| Ao_basis ->
f Ao_basis.(read, to_rst)
| Determinants_by_hand ->
f Determinants_by_hand.(read ~full:false, to_rst)
2019-01-25 11:39:31 +01:00
{section_to_rst}
end
with
| Sys_error msg -> (Printf.eprintf "Info: %s\n%!" msg ; "")
2024-03-16 15:21:40 +01:00
in
2019-01-25 11:39:31 +01:00
rst
(** Applies the changes from the string [str] corresponding to section [s] *)
2024-03-16 15:21:40 +01:00
let set str s =
2019-01-25 11:39:31 +01:00
let header = (make_header s) in
2019-03-13 15:49:57 +01:00
match String_ext.substr_index ~pos:0 ~pattern:header str with
2019-01-25 11:39:31 +01:00
| None -> ()
2024-03-16 15:21:40 +01:00
| Some idx ->
2019-01-25 11:39:31 +01:00
begin
let index_begin = idx + (String.length header) in
2024-03-16 15:21:40 +01:00
let index_end =
2019-03-13 15:49:57 +01:00
match ( String_ext.substr_index ~pos:(index_begin+(String.length header)+1)
2019-01-25 11:39:31 +01:00
~pattern:"==" str) with
| Some i -> i
| None -> String.length str
in
let l = index_end - index_begin in
2024-03-16 15:21:40 +01:00
let str = String.sub str index_begin l
2019-01-25 11:39:31 +01:00
|> Rst_string.of_string
in
let write (of_rst,w) s =
try
match of_rst str with
| Some data -> w data
| None -> ()
with
| _ -> (Printf.eprintf "Info: Read error in %s\n%!"
(keyword_to_string s); ignore (of_rst str) )
in
let open Input in
match s with
{write}
| Electrons -> write Electrons.(of_rst, write) s
2019-10-24 13:55:38 +02:00
| Determinants_by_hand -> write Determinants_by_hand.(of_rst, write ~force:false) s
2019-01-25 11:39:31 +01:00
| Nuclei_by_hand -> write Nuclei_by_hand.(of_rst, write) s
| Ao_basis -> () (* TODO *)
| Mo_basis -> () (* TODO *)
end
(** Creates the temporary file for interactive editing *)
2024-03-16 15:21:40 +01:00
let create_temp_file ?filename ezfio_filename fields =
let temp_filename =
match filename with
| None -> Filename.temp_file "qp_edit_" ".rst"
| Some f -> f
in
let () =
match filename with
| None -> at_exit (fun () -> Sys.remove temp_filename)
| _ -> ()
in
2019-01-25 11:39:31 +01:00
begin
2019-03-13 15:49:57 +01:00
let oc = open_out temp_filename in
2024-03-16 15:21:40 +01:00
(file_header ezfio_filename) :: (List.map get fields)
|> String.concat "\n"
2019-03-13 15:49:57 +01:00
|> Printf.fprintf oc "%s";
close_out oc;
2019-01-25 11:39:31 +01:00
temp_filename
end
2024-03-16 15:21:40 +01:00
let run check_only ?ndet ?state ?read ?write ezfio_filename =
2019-01-25 11:39:31 +01:00
(* Set check_only if the arguments are not empty *)
2024-03-18 17:53:22 +01:00
let open_editor =
match ndet, state, read, write with
| None, None, None, None -> not check_only
| _ -> false
2019-01-25 11:39:31 +01:00
in
(* Open EZFIO *)
2019-03-13 15:49:57 +01:00
if (not (Sys.file_exists ezfio_filename)) then
2019-01-25 11:39:31 +01:00
failwith (ezfio_filename^" does not exists");
Ezfio.set_file ezfio_filename;
(* Clean qp_stop status *)
[ "qpstop" ; "qpkill" ]
2019-03-13 15:49:57 +01:00
|> List.iter (fun f ->
2024-03-16 15:21:40 +01:00
let stopfile =
2019-01-25 11:39:31 +01:00
Filename.concat (Qpackage.ezfio_work ezfio_filename) f
in
2019-03-13 15:49:57 +01:00
if Sys.file_exists stopfile then
Sys.remove stopfile
2019-01-25 11:39:31 +01:00
);
(* Reorder basis set *)
begin
2023-05-10 14:44:45 +02:00
match Input.Ao_basis.read() with
2024-03-16 15:21:40 +01:00
| Some aos ->
2023-05-10 14:44:45 +02:00
let ordering = Input.Ao_basis.ordering aos in
let test = Array.copy ordering in
Array.sort compare test ;
if test <> ordering then
begin
Printf.eprintf "Warning: Basis set is not properly ordered. Redordering.\n";
let new_aos = Input.Ao_basis.reorder aos in
Input.Ao_basis.write new_aos;
match Input.Mo_basis.read() with
| None -> ()
2024-03-16 15:21:40 +01:00
| Some mos ->
2023-05-10 14:44:45 +02:00
let new_mos = Input.Mo_basis.reorder mos ordering in
Input.Mo_basis.write new_mos
end
| _ -> ()
2019-01-25 11:39:31 +01:00
end;
begin
match ndet with
| None -> ()
| Some n -> Input.Determinants_by_hand.update_ndet (Det_number.of_int n)
end;
begin
match state with
| None -> ()
2024-03-16 15:21:40 +01:00
| Some range ->
2019-01-25 11:39:31 +01:00
begin
Input.Determinants_by_hand.extract_states range
end
end;
(*
let output = (file_header ezfio_filename) :: (
2019-03-13 15:49:57 +01:00
List.map get [
2024-03-16 15:21:40 +01:00
Ao_basis ;
Mo_basis ;
2019-01-25 11:39:31 +01:00
])
in
String.concat output
|> print_string
*)
2024-03-16 15:21:40 +01:00
2019-01-25 11:39:31 +01:00
let tasks = [
Nuclei_by_hand ;
Ao_basis;
Electrons ;
{tasks}
Mo_basis;
Determinants_by_hand ;
]
in
(* Create the temp file *)
let temp_filename =
2024-03-16 15:21:40 +01:00
match read, write with
| None, None -> create_temp_file ezfio_filename tasks
| Some filename, None -> filename
| None, filename -> create_temp_file ?filename ezfio_filename tasks
| x, y -> failwith "read and write options are incompatible"
2019-01-25 11:39:31 +01:00
in
2024-03-16 15:21:40 +01:00
2024-03-18 17:53:22 +01:00
if open_editor then
2024-03-16 15:21:40 +01:00
begin
(* Open the temp file with external editor *)
let editor =
try Sys.getenv "EDITOR"
with Not_found -> "vi"
in
Printf.sprintf "%s %s" editor temp_filename
|> Sys.command |> ignore
2024-03-18 17:53:22 +01:00
end;
2019-01-25 11:39:31 +01:00
2024-03-16 15:21:40 +01:00
if write = None then
(* Re-read the temp file *)
let temp_string =
let ic = open_in temp_filename in
let result =
input_lines ic
|> String.concat "\n"
in
close_in ic;
result
2019-03-13 15:49:57 +01:00
in
2024-03-16 15:21:40 +01:00
List.iter (fun x -> set temp_string x) tasks
2019-01-25 11:39:31 +01:00
(** Remove the backup file *)
let remove_backup ezfio_filename =
2024-03-16 15:21:40 +01:00
let backup_filename =
2019-01-25 11:39:31 +01:00
Printf.sprintf "%s/work/backup.tar" ezfio_filename
in
try Sys.remove backup_filename
with _ -> ()
(** Create a backup file in case of an exception *)
let create_backup ezfio_filename =
remove_backup ezfio_filename;
2024-03-16 15:21:40 +01:00
let backup_filename =
2019-01-25 11:39:31 +01:00
Printf.sprintf "%s/work/backup.tar" ezfio_filename
in
try
Printf.sprintf "
mkdir -p %s/work ;
tar -cf .backup.tar --exclude=\"work/*\" %s && (mv .backup.tar %s || rm .backup.tar)
"
ezfio_filename ezfio_filename backup_filename
2019-03-13 15:49:57 +01:00
|> Sys.command
|> ignore
2019-01-25 11:39:31 +01:00
with _ -> ()
(** Restore the backup file when an exception occuprs *)
let restore_backup ezfio_filename =
2024-03-16 15:21:40 +01:00
let filename =
2019-01-25 11:39:31 +01:00
Printf.sprintf "%s/work/backup.tar" ezfio_filename
in
2019-03-13 15:49:57 +01:00
if Sys.file_exists filename then
2019-01-25 11:39:31 +01:00
begin
Printf.sprintf "tar -xf %s" filename
2019-03-13 15:49:57 +01:00
|> Sys.command |> ignore;
2019-01-25 11:39:31 +01:00
remove_backup ezfio_filename
end
let () =
let open Command_line in
begin
set_header_doc (Sys.argv.(0) ^ " - quantum_package command");
set_description_doc
"Opens a text editor to edit the parameters of an EZFIO directory.";
[ {{ short='c'; long="check"; opt=Optional;
doc="Checks the input data";
arg=Without_arg; }};
2024-03-16 15:21:40 +01:00
{{
short='w'; long="write"; opt=Optional;
doc="Writes the qp_edit file to a file\"";
arg=With_arg "<string>"; }};
{{
short='r'; long="read"; opt=Optional;
doc="Reads the file and applies it to the EZFIO\"";
arg=With_arg "<string>"; }};
2019-01-25 11:39:31 +01:00
{{ short='n'; long="ndet"; opt=Optional;
doc="Truncates the wavefunction to the target number of determinants";
arg=With_arg "<int>"; }};
{{
short='s'; long="state"; opt=Optional;
doc="Extracts selected states, for example \"[1,3-5]\"";
arg=With_arg "<range>"; }};
anonymous "EZFIO_DIR" Mandatory "EZFIO directory";
]
|> set_specs ;
end;
(* Handle options *)
2024-03-16 15:21:40 +01:00
let write =
Command_line.get "write"
in
let read =
Command_line.get "read"
in
2019-01-25 11:39:31 +01:00
let ndet =
match Command_line.get "ndet" with
| None -> None
| Some s -> (try Some (int_of_string s)
with _ -> failwith "[-n|--ndet] expects an integer")
in
let state =
match Command_line.get "state" with
| None -> None
| Some s -> (try Some (Range.of_string s)
with _ -> failwith "[-s|--state] expects a range")
in
let c = Command_line.get_bool "check" in
let ezfio_filename =
match Command_line.anon_args () with
| [x] -> x
| _ -> (Command_line.help () ; failwith "EZFIO_DIR is missing")
in
at_exit (fun () -> remove_backup ezfio_filename);
(* Run the program *)
try
if (not c) then create_backup ezfio_filename;
2024-03-16 15:21:40 +01:00
run c ?ndet ?state ?read ?write ezfio_filename
2019-01-25 11:39:31 +01:00
with
| Failure exc
| Invalid_argument exc ->
begin
Printf.eprintf "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n\n";
Printf.eprintf "%s\n\n" exc;
Printf.eprintf "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n\n";
restore_backup ezfio_filename;
ignore @@ exit 1
end
| Assert_failure (file, line, ch) ->
begin
Printf.eprintf "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n\n";
Printf.eprintf "Assert error in file $QP_ROOT/ocaml/%s, line %d, character %d\n\n" file line ch;
Printf.eprintf "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n\n";
restore_backup ezfio_filename;
ignore @@ exit 2
end;
exit 0