07a410d0e16fedefc1d69455bcd627a2de1c97a8
[tatoo.git] / src / xpath / ast.mli
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                               TAToo                                 *)
4 (*                                                                     *)
5 (*                     Kim Nguyen, LRI UMR8623                         *)
6 (*                   Université Paris-Sud & CNRS                       *)
7 (*                                                                     *)
8 (*  Copyright 2010-2013 Université Paris-Sud and Centre National de la *)
9 (*  Recherche Scientifique. All rights reserved.  This file is         *)
10 (*  distributed under the terms of the GNU Lesser General Public       *)
11 (*  License, with the special exception on linking described in file   *)
12 (*  ../LICENSE.                                                        *)
13 (*                                                                     *)
14 (***********************************************************************)
15
16 type path = single_path list
17 and single_path = Absolute of step list | Relative of step list
18 and step = axis * test * expr list
19 and axis = Self | Attribute | Child
20            | Descendant of bool
21            | FollowingSibling
22            | Parent
23            | Ancestor of bool
24            | PrecedingSibling
25            | Preceding | Following
26
27 and test = QNameSet.t * Tree.NodeKind.t
28
29 and binop = Eq | Neq | Lt | Gt | Lte | Gte | Or | And | Add | Sub | Mult | Div | Mod
30 and unop =  Neg
31 and expr =
32   | Number of [ `Int of int | `Float of float ]
33   | String of string
34   | Fun_call of QName.t * expr list
35   | Path of path
36   | Binop of expr * binop * expr
37   | Unop of unop * expr
38 type t = path
39 val text : QNameSet.t
40 val node : QNameSet.t
41 val star : QNameSet.t
42 val print_binop : Format.formatter -> binop -> unit
43 val print_unop : Format.formatter -> unop -> unit
44 val print_path : Format.formatter -> path -> unit
45 val print_single_path : Format.formatter -> single_path -> unit
46 val print_step : Format.formatter -> step -> unit
47 val print_axis : Format.formatter -> axis -> unit
48 val print_test : Format.formatter -> test -> unit
49 val print_expr : Format.formatter -> expr -> unit
50
51 val invert_axis : axis -> axis