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 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
|
(** Parser for .obuild files
Consumes tokens from the lexer and builds the AST. No validation - just structural parsing. *)
open Obuild_ast
open Obuild_lexer
open Location
exception Parser_error of loc * string
(** Parser error *)
type state = {
tokens : located_token list;
mutable pos : int;
}
(** Parser state *)
(** Create parser state from tokens *)
let make_state tokens = { tokens; pos = 0 }
(** Get current token *)
let current st =
if st.pos < List.length st.tokens then
List.nth st.tokens st.pos
else
let loc = { line = 0; col = 0 } in
new_located_token EOF loc 0
(** Advance to next token *)
let advance st = st.pos <- st.pos + 1
(** Peek at current token without consuming *)
let peek st = current st
(** Check if at end *)
let at_end st = (current st).tok = EOF
(** Raise parser error at current location *)
let error st msg =
let (t : located_token) = current st in
raise (Parser_error (t.Obuild_lexer.loc, msg))
(** Expect a specific indentation level, return tokens at that level *)
let rec collect_block st base_indent =
let t = peek st in
if at_end st || t.indent <= base_indent then
[]
else (
advance st;
t :: collect_block st base_indent)
(** Parse a comma-separated list *)
let parse_list s =
let s = String_utils.strip_spaces s in
if s = "" then
[]
else (* Split on commas first, then trim each *)
let parts = String_utils.split ',' s in
let parts = List.map String_utils.strip_spaces parts in
(* Filter empty strings *)
List.filter (fun s -> s <> "") parts
(** Parse a whitespace-separated list (for flags/args) *)
let parse_words s =
let s = String_utils.strip_spaces s in
if s = "" then
[]
else (* Split on spaces *)
let parts = String_utils.split ' ' s in
(* Filter empty strings *)
List.filter (fun s -> s <> "") parts
(** Parse a dependency: "name" or "name (>= 1.0)" *)
let parse_dependency s =
let s = String_utils.strip_spaces s in
(* Look for opening paren *)
match Compat.SafeString.index_opt s '(' with
| None -> { dep_name = s; dep_constraint = None }
| Some i ->
let name = String_utils.strip_spaces (String.sub s 0 i) in
let rest = String.sub s (i + 1) (String.length s - i - 1) in
(* Find closing paren *)
let constraint_str =
match Compat.SafeString.index_opt rest ')' with
| None -> String_utils.strip_spaces rest
| Some j -> String_utils.strip_spaces (String.sub rest 0 j)
in
{ dep_name = name; dep_constraint = Some constraint_str }
(** Parse a list of dependencies *)
let parse_dependencies s = List.map parse_dependency (parse_list s)
(** Parse extra-dep: "A -> B" or "A before B" or "A then B" *)
let parse_extra_dep s =
let s = String_utils.strip_spaces s in
(* Try different separators *)
let try_split sep =
match String_utils.split sep.[0] s with
| [ a; b ] when String.length sep = 1 ->
Some { before = String_utils.strip_spaces a; after = String_utils.strip_spaces b }
| _ -> None
in
(* Try " -> " first by looking for it *)
let arrow_pos =
let rec find i =
if i + 4 > String.length s then
None
else if String.sub s i 4 = " -> " then
Some i
else
find (i + 1)
in
find 0
in
match arrow_pos with
| Some i ->
let a = String_utils.strip_spaces (String.sub s 0 i) in
let b = String_utils.strip_spaces (String.sub s (i + 4) (String.length s - i - 4)) in
{ before = a; after = b }
| None -> (
(* Try "before" or "then" *)
let words = String_utils.split ' ' s in
let words = List.filter (fun w -> w <> "") words in
match words with
| [ a; "before"; b ] | [ a; "then"; b ] -> { before = a; after = b }
| [ a; b ] -> { before = a; after = b }
| _ -> { before = s; after = "" })
(* fallback, validation will catch it *)
(** Parse stdlib value *)
let parse_stdlib s =
match Compat.string_lowercase (String_utils.strip_spaces s) with
| "none" | "no" -> Some Stdlib_None
| "standard" -> Some Stdlib_Standard
| "core" -> Some Stdlib_Core
| _ -> None
(** Parse runtime bool *)
let parse_runtime_bool s =
match Compat.string_lowercase (String_utils.strip_spaces s) with
| "true" -> Bool_const true
| "false" -> Bool_const false
| s when String.length s > 0 && s.[0] = '$' -> Bool_var (String.sub s 1 (String.length s - 1))
| s -> Bool_var s
(** Parse cstubs description: "Functor.Path -> Instance" *)
let parse_cstubs_desc s =
let s = String_utils.strip_spaces s in
let arrow = " -> " in
let rec find_arrow i =
if i + 4 > String.length s then
None
else if String.sub s i 4 = arrow then
Some i
else
find_arrow (i + 1)
in
match find_arrow 0 with
| Some i ->
let functor_path = String_utils.strip_spaces (String.sub s 0 i) in
let instance = String_utils.strip_spaces (String.sub s (i + 4) (String.length s - i - 4)) in
Some { cstubs_functor = functor_path; cstubs_instance = instance }
| None -> None
(** Parse C settings from key-value pairs *)
let parse_c_setting c key value =
match Compat.string_lowercase key with
| "cdir" | "c-dir" -> { c with c_dir = Some value }
| "csources" | "c-sources" -> { c with c_sources = c.c_sources @ parse_list value }
| "cflags" | "c-flags" | "ccopts" | "ccopt" | "c-opts" ->
{ c with c_flags = c.c_flags @ parse_words value }
| "c-libs" -> { c with c_libs = c.c_libs @ parse_words value }
| "c-libpaths" -> { c with c_lib_paths = c.c_lib_paths @ parse_words value }
| "c-pkgs" -> { c with c_pkgs = c.c_pkgs @ parse_dependencies value }
| _ -> c
(** Parse OCaml settings from key-value pairs *)
let parse_ocaml_setting o key value =
match Compat.string_lowercase key with
| "path" | "srcdir" | "src-dir" -> { o with src_dir = o.src_dir @ parse_list value }
| "builddepends" | "builddeps" | "build-deps" ->
{ o with build_deps = o.build_deps @ parse_dependencies value }
| "preprocessor" | "pp" -> { o with pp = Some value }
| "extra-deps" ->
{ o with extra_deps = o.extra_deps @ List.map parse_extra_dep (parse_list value) }
| "oflags" -> { o with oflags = o.oflags @ parse_words value }
| "stdlib" -> { o with stdlib = parse_stdlib value }
| _ -> o
(** Parse common target setting *)
let parse_target_setting target key value =
match Compat.string_lowercase key with
| "buildable" -> { target with buildable = parse_runtime_bool value }
| "installable" -> { target with installable = parse_runtime_bool value }
| _ ->
let ocaml' = parse_ocaml_setting target.ocaml key value in
let c' = parse_c_setting target.c key value in
{ target with ocaml = ocaml'; c = c' }
(** Parse generator match type from key-value *)
(** Parse generator block *)
let parse_generator_block name tokens =
let gen = { Obuild_ast.default_generator with gen_name = name } in
let rec loop gen = function
| [] -> gen
| t :: rest -> (
match t.tok with
| KEY_VALUE (key, value) ->
let gen' =
match Compat.string_lowercase key with
| "suffix" -> { gen with gen_suffix = Some value }
| "command" -> { gen with gen_command = value }
| "outputs" -> { gen with gen_outputs = gen.gen_outputs @ parse_list value }
| "module-name" -> { gen with gen_module_name = Some value }
| _ -> gen
in
loop gen' rest
| _ -> loop gen rest)
in
loop gen tokens
(** Parse generate block (explicit generation for multi-input or overrides) *)
let parse_generate_block module_name tokens =
let gen = { Obuild_ast.default_generate_block with generate_module = module_name } in
let rec loop gen = function
| [] -> gen
| t :: rest -> (
match t.tok with
| KEY_VALUE (key, value) ->
let gen' =
match Compat.string_lowercase key with
| "from" -> { gen with generate_from = gen.generate_from @ parse_list value }
| "using" -> { gen with generate_using = value }
| "args" | "arguments" | "command-args" -> { gen with generate_args = Some value }
| _ -> gen
in
loop gen' rest
| _ -> loop gen rest)
in
loop gen tokens
(** Parse cstubs block *)
let parse_cstubs_block tokens =
let rec loop cstubs = function
| [] -> cstubs
| t :: rest -> (
match t.tok with
| KEY_VALUE (key, value) ->
let cstubs' =
match Compat.string_lowercase key with
| "external-library-name" -> { cstubs with cstubs_external_lib_name = value }
| "type-description" -> { cstubs with cstubs_type_desc = parse_cstubs_desc value }
| "function-description" -> { cstubs with cstubs_func_desc = parse_cstubs_desc value }
| "generated-types" -> { cstubs with cstubs_generated_types = value }
| "generated-entry-point" -> { cstubs with cstubs_generated_entry = value }
| "headers" ->
{ cstubs with cstubs_headers = cstubs.cstubs_headers @ parse_list value }
| "concurrency" ->
let concurrency =
match Compat.string_lowercase value with
| "sequential" -> Obuild_ast.Cstubs_sequential
| "unlocked" -> Obuild_ast.Cstubs_unlocked
| "lwt_jobs" | "lwt-jobs" -> Obuild_ast.Cstubs_lwt_jobs
| "lwt_preemptive" | "lwt-preemptive" -> Obuild_ast.Cstubs_lwt_preemptive
| _ ->
failwith
(Printf.sprintf
"Unknown concurrency policy: %s (expected: sequential, unlocked, \
lwt_jobs, lwt_preemptive)"
value)
in
{ cstubs with cstubs_concurrency = concurrency }
| "errno" ->
let errno =
match Compat.string_lowercase value with
| "ignore" | "ignore_errno" | "ignore-errno" -> Obuild_ast.Cstubs_ignore_errno
| "return" | "return_errno" | "return-errno" -> Obuild_ast.Cstubs_return_errno
| _ ->
failwith
(Printf.sprintf
"Unknown errno policy: %s (expected: ignore_errno, return_errno)" value)
in
{ cstubs with cstubs_errno = errno }
| _ -> cstubs
in
loop cstubs' rest
| _ -> loop cstubs rest)
in
loop default_cstubs tokens
(** Parse per block *)
let parse_per_block args tokens =
let per = { per_files = args; per_build_deps = []; per_oflags = []; per_pp = None } in
let rec loop per = function
| [] -> per
| t :: rest -> (
match t.tok with
| KEY_VALUE (key, value) ->
let per' =
match Compat.string_lowercase key with
| "builddepends" | "builddeps" | "build-deps" ->
{ per with per_build_deps = per.per_build_deps @ parse_dependencies value }
| "oflags" -> { per with per_oflags = per.per_oflags @ parse_words value }
| "pp" -> { per with per_pp = Some value }
| _ -> per
in
loop per' rest
| _ -> loop per rest)
in
loop per tokens
(** Parse library block *)
let rec parse_library_block name tokens =
let lib =
{
lib_name = name;
lib_description = "";
lib_modules = [];
lib_pack = false;
lib_syntax = false;
lib_cstubs = None;
lib_target = default_target_common;
lib_subs = [];
}
in
parse_library_tokens lib tokens
and parse_library_tokens lib tokens =
match tokens with
| [] -> lib
| t :: rest -> (
match t.tok with
| KEY_VALUE (key, value) ->
let lib' =
match Compat.string_lowercase key with
| "modules" -> { lib with lib_modules = lib.lib_modules @ parse_list value }
| "pack" -> { lib with lib_pack = Compat.string_lowercase value = "true" }
| "syntax" -> { lib with lib_syntax = Compat.string_lowercase value = "true" }
| "description" -> { lib with lib_description = value }
| _ -> { lib with lib_target = parse_target_setting lib.lib_target key value }
in
parse_library_tokens lib' rest
| BLOCK (name, args) ->
(* Collect nested block *)
let base_indent = t.indent in
let nested, remaining = collect_nested rest base_indent in
let lib' =
match Compat.string_lowercase name with
| "cstubs" -> { lib with lib_cstubs = Some (parse_cstubs_block nested) }
| "per" ->
let per = parse_per_block args nested in
{ lib with lib_target = { lib.lib_target with per = lib.lib_target.per @ [ per ] } }
| "sub" | "sublib" | "library" ->
let subname =
match args with
| [ n ] -> n
| _ -> "unknown"
in
let sublib = parse_library_block subname nested in
{ lib with lib_subs = lib.lib_subs @ [ sublib ] }
| "generate" ->
let module_name =
match args with
| [ n ] -> n
| _ -> ""
in
let gen_block = parse_generate_block module_name nested in
{ lib with lib_target = { lib.lib_target with generates = lib.lib_target.generates @ [ gen_block ] } }
| _ -> lib
in
parse_library_tokens lib' remaining
| _ -> parse_library_tokens lib rest)
(** Collect tokens belonging to a nested block *)
and collect_nested tokens base_indent =
let rec loop acc = function
| [] -> (List.rev acc, [])
| t :: rest as all ->
if t.indent > base_indent then
loop (t :: acc) rest
else
(List.rev acc, all)
in
loop [] tokens
(** Parse executable block *)
let parse_executable_block name tokens =
let exe = { exe_name = name; exe_main = ""; exe_target = default_target_common } in
let rec loop exe = function
| [] -> exe
| t :: rest -> (
match t.tok with
| KEY_VALUE (key, value) ->
let exe' =
match Compat.string_lowercase key with
| "main" | "mainis" | "main-is" -> { exe with exe_main = value }
| _ -> { exe with exe_target = parse_target_setting exe.exe_target key value }
in
loop exe' rest
| BLOCK (name, args) ->
let base_indent = t.indent in
let nested, remaining = collect_nested rest base_indent in
let exe' =
match Compat.string_lowercase name with
| "per" ->
let per = parse_per_block args nested in
{
exe with
exe_target = { exe.exe_target with per = exe.exe_target.per @ [ per ] };
}
| "generate" ->
let module_name =
match args with
| [ n ] -> n
| _ -> ""
in
let gen_block = parse_generate_block module_name nested in
{ exe with exe_target = { exe.exe_target with generates = exe.exe_target.generates @ [ gen_block ] } }
| _ -> exe
in
loop exe' remaining
| _ -> loop exe rest)
in
loop exe tokens
(** Parse test block *)
let parse_test_block name tokens =
let test =
{
test_name = name;
test_main = "";
test_rundir = None;
test_run_params = [];
test_target = default_target_common;
}
in
let rec loop test = function
| [] -> test
| t :: rest -> (
match t.tok with
| KEY_VALUE (key, value) ->
let test' =
match Compat.string_lowercase key with
| "main" | "mainis" | "main-is" -> { test with test_main = value }
| "rundir" | "run-dir" -> { test with test_rundir = Some value }
| "runparams" | "run-params" -> { test with test_run_params = parse_list value }
| _ -> { test with test_target = parse_target_setting test.test_target key value }
in
loop test' rest
| BLOCK (name, args) ->
let base_indent = t.indent in
let nested, remaining = collect_nested rest base_indent in
let test' =
match Compat.string_lowercase name with
| "per" ->
let per = parse_per_block args nested in
{
test with
test_target = { test.test_target with per = test.test_target.per @ [ per ] };
}
| "generate" ->
let module_name =
match args with
| [ n ] -> n
| _ -> ""
in
let gen_block = parse_generate_block module_name nested in
{ test with test_target = { test.test_target with generates = test.test_target.generates @ [ gen_block ] } }
| _ -> test
in
loop test' remaining
| _ -> loop test rest)
in
loop test tokens
(** Parse example block (same structure as executable) *)
let parse_example_block name tokens =
let example =
{ example_name = name; example_main = ""; example_target = default_target_common }
in
let rec loop example = function
| [] -> example
| t :: rest -> (
match t.tok with
| KEY_VALUE (key, value) ->
let example' =
match Compat.string_lowercase key with
| "main" | "mainis" | "main-is" -> { example with example_main = value }
| _ ->
{
example with
example_target = parse_target_setting example.example_target key value;
}
in
loop example' rest
| BLOCK (name, args) ->
let base_indent = t.indent in
let nested, remaining = collect_nested rest base_indent in
let example' =
match Compat.string_lowercase name with
| "per" ->
let per = parse_per_block args nested in
{
example with
example_target =
{ example.example_target with per = example.example_target.per @ [ per ] };
}
| "generate" ->
let module_name =
match args with
| [ n ] -> n
| _ -> ""
in
let gen_block = parse_generate_block module_name nested in
{ example with example_target = { example.example_target with generates = example.example_target.generates @ [ gen_block ] } }
| _ -> example
in
loop example' remaining
| _ -> loop example rest)
in
loop example tokens
(** Parse benchmark block *)
let parse_benchmark_block name tokens =
let bench = { bench_name = name; bench_main = ""; bench_target = default_target_common } in
let rec loop bench = function
| [] -> bench
| t :: rest -> (
match t.tok with
| KEY_VALUE (key, value) ->
let bench' =
match Compat.string_lowercase key with
| "main" | "mainis" | "main-is" -> { bench with bench_main = value }
| _ -> { bench with bench_target = parse_target_setting bench.bench_target key value }
in
loop bench' rest
| BLOCK (name, args) ->
let base_indent = t.indent in
let nested, remaining = collect_nested rest base_indent in
let bench' =
match Compat.string_lowercase name with
| "per" ->
let per = parse_per_block args nested in
{
bench with
bench_target =
{ bench.bench_target with per = bench.bench_target.per @ [ per ] };
}
| "generate" ->
let module_name =
match args with
| [ n ] -> n
| _ -> ""
in
let gen_block = parse_generate_block module_name nested in
{ bench with bench_target = { bench.bench_target with generates = bench.bench_target.generates @ [ gen_block ] } }
| _ -> bench
in
loop bench' remaining
| _ -> loop bench rest)
in
loop bench tokens
(** Parse flag block *)
let parse_flag_block name tokens =
let flag = { flag_name = name; flag_description = ""; flag_default = false } in
let rec loop flag = function
| [] -> flag
| t :: rest -> (
match t.tok with
| KEY_VALUE (key, value) ->
let flag' =
match Compat.string_lowercase key with
| "description" -> { flag with flag_description = value }
| "default" -> { flag with flag_default = Compat.string_lowercase value = "true" }
| _ -> flag
in
loop flag' rest
| _ -> loop flag rest)
in
loop flag tokens
(** Default empty project *)
let empty_project loc =
{
project_name = { Obuild_ast.value = ""; loc };
project_version = { Obuild_ast.value = ""; loc };
project_obuild_ver = { Obuild_ast.value = 0; loc };
project_synopsis = None;
project_description = None;
project_license = None;
project_license_file = None;
project_homepage = None;
project_authors = [];
project_extra_srcs = [];
project_extra_tools = [];
project_configure_script = None;
project_ocaml_ver = None;
project_ocaml_extra_args = [];
project_flags = [];
project_generators = [];
project_libs = [];
project_exes = [];
project_tests = [];
project_benchs = [];
project_examples = [];
}
(** Parse top-level project *)
let parse_project tokens =
let st = make_state tokens in
let start_loc = (current st).Obuild_lexer.loc in
let proj = ref (empty_project start_loc) in
while not (at_end st) do
let t = current st in
advance st;
match t.tok with
| KEY_VALUE (key, value) -> (
let p = !proj in
proj :=
match Compat.string_lowercase key with
| "name" -> { p with project_name = { Obuild_ast.value; loc = t.Obuild_lexer.loc } }
| "version" -> { p with project_version = { Obuild_ast.value; loc = t.Obuild_lexer.loc } }
| "obuild-ver" ->
{
p with
project_obuild_ver =
{ Obuild_ast.value = int_of_string value; loc = t.Obuild_lexer.loc };
}
| "synopsis" -> { p with project_synopsis = Some value }
| "description" -> { p with project_description = Some value }
| "license" | "licence" -> { p with project_license = Some value }
| "license-file" | "licence-file" -> { p with project_license_file = Some value }
| "homepage" -> { p with project_homepage = Some value }
| "authors" -> { p with project_authors = parse_list value }
| "author" -> { p with project_authors = [ value ] }
| "extra-srcs" -> { p with project_extra_srcs = p.project_extra_srcs @ parse_list value }
| "tools" -> { p with project_extra_tools = p.project_extra_tools @ parse_list value }
| "configure-script" -> { p with project_configure_script = Some value }
| "ocamlversion" | "ocaml-version" -> { p with project_ocaml_ver = Some value }
| "ocaml-extra-args" | "ocamlextraargs" ->
{ p with project_ocaml_extra_args = parse_words value }
| _ -> p)
| BLOCK (name, args) -> (
let block_tokens = collect_block st t.indent in
let p = !proj in
let block_name =
match args with
| [ n ] -> n
| _ -> ""
in
proj :=
match Compat.string_lowercase name with
| "library" ->
let lib = parse_library_block block_name block_tokens in
{ p with project_libs = p.project_libs @ [ lib ] }
| "executable" ->
let exe = parse_executable_block block_name block_tokens in
{ p with project_exes = p.project_exes @ [ exe ] }
| "test" ->
let test = parse_test_block block_name block_tokens in
{ p with project_tests = p.project_tests @ [ test ] }
| "bench" | "benchmark" ->
let bench = parse_benchmark_block block_name block_tokens in
{ p with project_benchs = p.project_benchs @ [ bench ] }
| "example" ->
let example = parse_example_block block_name block_tokens in
{ p with project_examples = p.project_examples @ [ example ] }
| "flag" ->
let flag = parse_flag_block block_name block_tokens in
{ p with project_flags = p.project_flags @ [ flag ] }
| "generator" ->
let gen = parse_generator_block block_name block_tokens in
{ p with project_generators = p.project_generators @ [ gen ] }
| _ -> p)
| _ -> ()
done;
!proj
(** Main parsing function: string -> project *)
let parse input =
let tokens = Obuild_lexer.tokenize input in
parse_project tokens
(** Parse from file *)
let parse_file path =
let tokens = Obuild_lexer.tokenize_file path in
parse_project tokens
|