1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
(*
* This file is part of Coccinelle, licensed under the terms of the GPL v2.
* See copyright.txt in the Coccinelle source code for more information.
* The Coccinelle source code can be obtained at http://coccinelle.lip6.fr
*)
(**
* For a while, the version-conrolled source code of Coccinelle
* did not contain any legal header.
* At that time, this script was used to add the headers during the
* release process.
*
* In commit eec9ca2207c273 the header has been added to the
* version-controlled iles (using the licensify-new.ml script)
* so this licensify.ml script has become useless.
*)
let lines =
["Copyright 2012-2015, Inria";
"Julia Lawall, Gilles Muller";
"Copyright 2010-2011, INRIA, University of Copenhagen";
"Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix";
"Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen";
"Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix";
"This file is part of Coccinelle.";
"";
"Coccinelle is free software: you can redistribute it and/or modify";
"it under the terms of the GNU General Public License as published by";
"the Free Software Foundation, according to version 2 of the License.";
"";
"Coccinelle is distributed in the hope that it will be useful,";
"but WITHOUT ANY WARRANTY; without even the implied warranty of";
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";
"GNU General Public License for more details.";
"";
"You should have received a copy of the GNU General Public License";
"along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.";
"";
"The authors reserve the right to distribute this or future versions of";
"Coccinelle under other licenses."
]
let comment_lines =
List.map (function x -> if x <> "" then " * "^x else " *") lines
let cpp_lines = "/*" :: comment_lines @ [" */"]
let ml_lines = "(*" :: comment_lines @ [" *)"]
let make_lines = (List.map (function x -> if x <> "" then "# "^x else "#") lines)
let c_lines = (List.map (function x -> if x <> "" then "// "^x else "//") lines)
let do_one file =
let lines =
if Filename.check_suffix file ".cocci" then c_lines else
if Filename.check_suffix file ".mly" then cpp_lines else
if Filename.check_suffix file ".ml" then ml_lines else
if Filename.check_suffix file ".mli" then ml_lines else
if Filename.check_suffix file ".mll" then ml_lines else
if Filename.check_suffix file ".pl" then make_lines else
if Filename.basename file = "Makefile" then make_lines else
failwith (Printf.sprintf "unknown file type: %s" file) in
let tmpfl = Filename.temp_file "cocci_licence" "orig" in
let _ = Sys.command (Printf.sprintf "cp %s %s" file tmpfl) in
let o = open_out file in
List.iter (function l -> Printf.fprintf o "%s\n" l) lines;
Printf.fprintf o "\n";
Printf.fprintf o "\n";
if List.exists (Filename.check_suffix file) [ ".ml" ; ".mli" ; ".mll" ] then
Printf.fprintf o "# 0 \"%s\"\n" file;
close_out o;
let _ = Sys.command (Printf.sprintf "cat %s >> %s" tmpfl file) in
Sys.remove tmpfl
(* pad's modif *)
let (+>) o f = f o
let cat file =
let chan = open_in file in
let rec cat_aux acc () =
(* can't do input_line chan::aux() cos ocaml eval from right to left ! *)
let (b, l) = try (true, input_line chan) with End_of_file -> (false, "") in
if b
then cat_aux (l::acc) ()
else acc
in
cat_aux [] () +> List.rev +> (fun x -> close_in chan; x)
let rec process dir =
let files =
try
List.map (function fl -> dir^"/"^fl)
(Array.to_list(Sys.readdir dir))
with Sys_error _ -> [] in
List.iter (function file ->
try
let xs = cat file in
if List.exists (fun s ->
s = "* This file is part of Coccinelle."
||
s = "# This file is part of Coccinelle."
||
s = "// This file is part of Coccinelle."
||
Str.string_match (Str.regexp_string "Copyright") s 0
) xs
then print_string ("already processed: " ^ file ^ "\n")
else begin
do_one file;
print_string ("processed: " ^ file ^ "\n");
end
with _ ->
print_string ("skipped: " ^ file ^ "\n");
()
) files;
(* pad: no recursive call in directory List.iter process files *)
()
let _ = process "."
|