/usr/lib/ocaml/oasis/CustomPlugin.ml is in liboasis-ocaml-dev 0.4.10-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | (******************************************************************************)
(* OASIS: architecture for building OCaml libraries and applications *)
(* *)
(* Copyright (C) 2011-2016, Sylvain Le Gall *)
(* Copyright (C) 2008-2011, OCamlCore SARL *)
(* *)
(* This library is free software; you can redistribute it and/or modify it *)
(* under the terms of the GNU Lesser General Public License as published by *)
(* the Free Software Foundation; either version 2.1 of the License, or (at *)
(* your option) any later version, with the OCaml static compilation *)
(* exception. *)
(* *)
(* This library 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 file COPYING for more *)
(* details. *)
(* *)
(* You should have received a copy of the GNU Lesser General Public License *)
(* along with this library; if not, write to the Free Software Foundation, *)
(* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *)
(******************************************************************************)
(** Generate custom configure/build/doc/test/install system
@author
*)
open BaseEnv
open OASISGettext
open OASISTypes
type t =
{
cmd_main: command_line conditional;
cmd_clean: (command_line option) conditional;
cmd_distclean: (command_line option) conditional;
}
let run = BaseCustom.run
let main ~ctxt:_ t _ extra_args =
let cmd, args = var_choose ~name:(s_ "main command") t.cmd_main in
run cmd args extra_args
let clean ~ctxt:_ t _ extra_args =
match var_choose t.cmd_clean with
| Some (cmd, args) -> run cmd args extra_args
| _ -> ()
let distclean ~ctxt:_ t _ extra_args =
match var_choose t.cmd_distclean with
| Some (cmd, args) -> run cmd args extra_args
| _ -> ()
module Build =
struct
let main ~ctxt t pkg extra_args =
main ~ctxt t pkg extra_args;
List.iter
(fun sct ->
let evs =
match sct with
| Library (cs, bs, lib) when var_choose bs.bs_build ->
begin
let evs, _ =
BaseBuilt.of_library
OASISHostPath.of_unix
(cs, bs, lib)
in
evs
end
| Executable (cs, bs, exec) when var_choose bs.bs_build ->
begin
let evs, _, _ =
BaseBuilt.of_executable
OASISHostPath.of_unix
(cs, bs, exec)
in
evs
end
| _ ->
[]
in
List.iter
(fun (bt, bnm, lst) -> BaseBuilt.register ~ctxt bt bnm lst)
evs)
pkg.sections
let clean ~ctxt t pkg extra_args =
clean ~ctxt t pkg extra_args;
(* TODO: this seems to be pretty generic (at least wrt to ocamlbuild
* considering moving this to BaseSetup?
*)
List.iter
(function
| Library (cs, _, _) ->
BaseBuilt.unregister ~ctxt BaseBuilt.BLib cs.cs_name
| Executable (cs, _, _) ->
BaseBuilt.unregister ~ctxt BaseBuilt.BExec cs.cs_name;
BaseBuilt.unregister ~ctxt BaseBuilt.BExecLib cs.cs_name
| _ ->
())
pkg.sections
let distclean ~ctxt t pkg extra_args = distclean ~ctxt t pkg extra_args
end
module Test =
struct
let main ~ctxt t pkg (cs, _) extra_args =
try
main ~ctxt t pkg extra_args;
0.0
with Failure s ->
BaseMessage.warning
(f_ "Test '%s' fails: %s")
cs.cs_name
s;
1.0
let clean ~ctxt t pkg _ extra_args = clean ~ctxt t pkg extra_args
let distclean ~ctxt t pkg _ extra_args = distclean ~ctxt t pkg extra_args
end
module Doc =
struct
let main ~ctxt t pkg (cs, _) extra_args =
main ~ctxt t pkg extra_args;
BaseBuilt.register ~ctxt BaseBuilt.BDoc cs.cs_name []
let clean ~ctxt t pkg (cs, _) extra_args =
clean ~ctxt t pkg extra_args;
BaseBuilt.unregister ~ctxt BaseBuilt.BDoc cs.cs_name
let distclean ~ctxt t pkg _ extra_args = distclean ~ctxt t pkg extra_args
end
(* END EXPORT *)
module BuildRuntime = Build
module TestRuntime = Test
module DocRuntime = Doc
open OASISGettext
open OASISTypes
open OASISValues
open OASISPlugin
open OASISSchema
let nm, ver =
"Custom", Some OASISConf.version_short
let conf_plugin = `Configure, nm, ver
let conf_data = data_new_property conf_plugin
let build_plugin = `Build, nm, ver
let build_data = data_new_property build_plugin
let install_plugin = `Install, nm, ver
let install_data = data_new_property install_plugin
let uninstall_data = data_new_property ~purpose:`Uninstall install_plugin
let test_plugin = `Test, nm, ver
let test_data = data_new_property test_plugin
let doc_plugin = `Doc, nm, ver
let doc_data = data_new_property doc_plugin
(** Add standard fields
*)
let add_fields
~schema
id
data
nm
hlp
hlp_clean
hlp_distclean =
let cmd_main =
new_field_conditional
schema
id
nm
command_line
(* TODO: remove when fun () -> s_ be replaced *)
(fun () -> s_ hlp)
data (fun _ t -> t.cmd_main)
in
let cmd_clean =
new_field_conditional
schema
id
(nm^"Clean")
~default:None
(opt command_line)
(* TODO: remove when fun () -> s_ be replaced *)
(fun () -> s_ hlp_clean)
data (fun _ t -> t.cmd_clean)
in
let cmd_distclean =
new_field_conditional
schema
id
(nm^"Distclean")
~default:None
(opt command_line)
(* TODO: remove when fun () -> s_ be replaced *)
(fun () -> s_ hlp_distclean)
data (fun _ t -> t.cmd_distclean)
in
let generator data =
{
cmd_main = cmd_main data;
cmd_clean = cmd_clean data;
cmd_distclean = cmd_distclean data;
}
in
cmd_main, cmd_clean, cmd_distclean, generator
let odn_of_t v =
let open OASISDataNotation in
REC ("CustomPlugin",
[ ("cmd_main",
(odn_of_conditional odn_of_command_line v.cmd_main));
("cmd_clean",
(odn_of_conditional (of_option odn_of_command_line) v.cmd_clean));
("cmd_distclean",
(odn_of_conditional (of_option odn_of_command_line) v.cmd_distclean))])
(** Standard custom handling. *)
let std id data nm hlp hlp_clean hlp_distclean =
let _, _, _, generator =
add_fields ~schema:OASISPackage.schema
id data nm hlp hlp_clean hlp_distclean
in
generator,
fun plugin_ctxt pkg ->
let t = generator pkg.schema_data in
plugin_ctxt,
{
OASISPlugin.chng_moduls =
[CustomData.customsys_ml];
chng_main =
OASISDataNotation.func_with_arg_ctxt
main ("CustomPlugin.main")
t odn_of_t;
chng_clean =
Some
(OASISDataNotation.func_with_arg_ctxt
clean ("CustomPlugin.clean")
t odn_of_t);
chng_distclean =
Some
(OASISDataNotation.func_with_arg_ctxt
distclean ("CustomPlugin.distclean")
t odn_of_t);
}
(* Configure plugin *)
let conf_init () =
let self_id, id =
Configure.create
conf_plugin
in
let generator, doit =
std
id
(* TODO: test if replacing conf_data -> build_data generates an error *)
conf_data
"Conf"
(ns_ "Run command to configure.")
(ns_ "Run command to clean configure step.")
(ns_ "Run command to distclean configure step.")
in
Configure.register_act self_id doit;
register_generator_package id conf_data generator
(* Build plugin *)
let build_init () =
let self_id, id =
Build.create build_plugin
in
let _, _, _, generator =
add_fields
id
build_data
~schema:OASISPackage.schema
"Build"
(ns_ "Run command to build.")
(ns_ "Run command to clean build step.")
(ns_ "Run command to distclean build step.")
in
let doit plugin_ctxt pkg =
let t = generator pkg.schema_data in
plugin_ctxt,
{
OASISPlugin.chng_moduls =
[CustomData.customsys_ml];
chng_main =
OASISDataNotation.func_with_arg_ctxt
BuildRuntime.main ("CustomPlugin.Build.main")
t odn_of_t;
chng_clean =
Some
(OASISDataNotation.func_with_arg_ctxt
BuildRuntime.clean ("CustomPlugin.Build.clean")
t odn_of_t);
chng_distclean =
Some
(OASISDataNotation.func_with_arg_ctxt
BuildRuntime.distclean ("CustomPlugin.Build.distclean")
t odn_of_t);
}
in
Build.register_act self_id doit;
register_generator_package id build_data generator
(* Install plugin *)
let install_init () =
let self_id, id =
Install.create install_plugin
in
let generate_install, doit_install =
std
id
install_data
"Install"
(ns_ "Run command to install.")
(ns_ "Run command to clean install step.")
(ns_ "Run command to distclean install step.")
in
let generate_uninstall, doit_uninstall =
std
id
uninstall_data
"Uninstall"
(ns_ "Run command to uninstall.")
(ns_ "Run command to clean uninstall step.")
(ns_ "Run command to distclean uninstall step.")
in
Install.register_act self_id (doit_install, doit_uninstall);
register_generator_package id install_data generate_install;
register_generator_package id uninstall_data generate_uninstall
(* Document plugin *)
let doc_init () =
let self_id, id =
Doc.create doc_plugin
in
let _, _, _, generator =
add_fields
~schema:OASISDocument.schema
id
build_data
""
(ns_ "Run command to build documentation.")
(ns_ "Run command to clean build documentation step.")
(ns_ "Run command to distclean build documentation step.")
in
let doit plugin_ctxt _ (cs, _) =
let t = generator cs.cs_data in
plugin_ctxt,
{
OASISPlugin.chng_moduls =
[CustomData.customsys_ml];
chng_main =
OASISDataNotation.func_with_arg_ctxt
DocRuntime.main ("CustomPlugin.Doc.main")
t odn_of_t;
chng_clean =
Some
(OASISDataNotation.func_with_arg_ctxt
DocRuntime.clean ("CustomPlugin.Doc.clean")
t odn_of_t);
chng_distclean =
Some
(OASISDataNotation.func_with_arg_ctxt
DocRuntime.distclean ("CustomPlugin.Doc.distclean")
t odn_of_t);
}
in
Doc.register_act self_id doit;
register_generator_package id doc_data generator
(* Test plugin *)
let test_init () =
let self_id, id =
Test.create test_plugin
in
let test_clean =
new_field_conditional
OASISTest.schema
id
"Clean"
~default:None
(opt command_line)
(fun () ->
s_ "Run command to clean test step.")
test_data (fun _ t -> t.cmd_clean)
in
let test_distclean =
new_field_conditional
OASISTest.schema
id
"Distclean"
~default:None
(opt command_line)
(fun () ->
s_ "Run command to distclean test step.")
test_data (fun _ t -> t.cmd_distclean)
in
let generator data =
{
cmd_main = [OASISExpr.EBool true, ("false", [])];
cmd_clean = test_clean data;
cmd_distclean = test_distclean data;
}
in
let doit plugin_ctxt _ (cs, test) =
let t = {(generator cs.cs_data) with cmd_main = test.test_command} in
plugin_ctxt,
{
OASISPlugin.chng_moduls =
[CustomData.customsys_ml];
chng_main =
OASISDataNotation.func_with_arg_ctxt
TestRuntime.main ("CustomPlugin.Test.main")
t odn_of_t;
chng_clean =
Some
(OASISDataNotation.func_with_arg_ctxt
TestRuntime.clean ("CustomPlugin.Test.clean")
t odn_of_t);
chng_distclean =
Some
(OASISDataNotation.func_with_arg_ctxt
TestRuntime.distclean ("CustomPlugin.Test.distclean")
t odn_of_t);
}
in
Test.register_act self_id doit;
register_generator_package id test_data generator
let init () =
register_help
conf_plugin
(help_default CustomData.readme_template_mkd);
conf_init ();
build_init ();
install_init ();
doc_init ();
test_init ()
|