Merge branch 'master' of github.com:periscop/openscop
[openscop.git] / include / osl / extensions / coordinates.h
blob7fec653446b3d393cb915cfc1bc2e76846d4b74f
2 /*+-----------------------------------------------------------------**
3 ** OpenScop Library **
4 **-----------------------------------------------------------------**
5 ** extensions/coordinates.h **
6 **-----------------------------------------------------------------**
7 ** First version: 07/12/2010 **
8 **-----------------------------------------------------------------**
11 *****************************************************************************
12 * OpenScop: Structures and formats for polyhedral tools to talk together *
13 *****************************************************************************
14 * ,___,,_,__,,__,,__,,__,,_,__,,_,__,,__,,___,_,__,,_,__, *
15 * / / / // // // // / / / // // / / // / /|,_, *
16 * / / / // // // // / / / // // / / // / / / /\ *
17 * |~~~|~|~~~|~~~|~~~|~~~|~|~~~|~|~~~|~~~|~~~|~|~~~|~|~~~|/_/ \ *
18 * | G |C| P | = | L | P |=| = |C| = | = | = |=| = |=| C |\ \ /\ *
19 * | R |l| o | = | e | l |=| = |a| = | = | = |=| = |=| L | \# \ /\ *
20 * | A |a| l | = | t | u |=| = |n| = | = | = |=| = |=| o | |\# \ \ *
21 * | P |n| l | = | s | t |=| = |d| = | = | = | | |=| o | | \# \ \ *
22 * | H | | y | | e | o | | = |l| | | = | | | | G | | \ \ \ *
23 * | I | | | | e | | | | | | | | | | | | | \ \ \ *
24 * | T | | | | | | | | | | | | | | | | | \ \ \ *
25 * | E | | | | | | | | | | | | | | | | | \ \ \ *
26 * | * |*| * | * | * | * |*| * |*| * | * | * |*| * |*| * | / \* \ \ *
27 * | O |p| e | n | S | c |o| p |-| L | i | b |r| a |r| y |/ \ \ / *
28 * '---'-'---'---'---'---'-'---'-'---'---'---'-'---'-'---' '--' *
29 * *
30 * Copyright (C) 2008 University Paris-Sud 11 and INRIA *
31 * *
32 * (3-clause BSD license) *
33 * Redistribution and use in source and binary forms, with or without *
34 * modification, are permitted provided that the following conditions *
35 * are met: *
36 * *
37 * 1. Redistributions of source code must retain the above copyright notice, *
38 * this list of conditions and the following disclaimer. *
39 * 2. Redistributions in binary form must reproduce the above copyright *
40 * notice, this list of conditions and the following disclaimer in the *
41 * documentation and/or other materials provided with the distribution. *
42 * 3. The name of the author may not be used to endorse or promote products *
43 * derived from this software without specific prior written permission. *
44 * *
45 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR *
46 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES *
47 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. *
48 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, *
49 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT *
50 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, *
51 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY *
52 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT *
53 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF *
54 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
55 * *
56 * OpenScop Library, a library to manipulate OpenScop formats and data *
57 * structures. Written by: *
58 * Cedric Bastoul <Cedric.Bastoul@u-psud.fr> and *
59 * Louis-Noel Pouchet <Louis-Noel.pouchet@inria.fr> *
60 * *
61 *****************************************************************************/
64 #ifndef OSL_COORDINATES_H
65 # define OSL_COORDINATES_H
67 # include <stdio.h>
68 # include <osl/interface.h>
70 # if defined(__cplusplus)
71 extern "C"
73 # endif
76 # define OSL_URI_COORDINATES "coordinates"
79 /**
80 * The osl_coordinates_t structure stores a coordinates extension to the core
81 * OpenScop representation. It provides information about the SCoP location in
82 * the original source file (file name, starting and ending lines/columns,
83 * indentation level).
85 struct osl_coordinates {
86 char* name; /**< File name (may include the file path as well). */
87 int line_start; /**< Starting line of the SCoP. */
88 int line_end; /**< Ending line of the SCoP. */
89 int column_start; /**< Starting column of the SCoP in the starting line. */
90 int column_end; /**< Ending column of the SCoP in the ending line. */
91 int indent; /**< Indentation (number of spaces starting each line).*/
93 typedef struct osl_coordinates osl_coordinates_t;
94 typedef struct osl_coordinates* osl_coordinates_p;
97 /*+***************************************************************************
98 * Structure display function *
99 *****************************************************************************/
100 void osl_coordinates_idump(FILE*, osl_coordinates_p, int);
101 void osl_coordinates_dump(FILE*, osl_coordinates_p);
102 char* osl_coordinates_sprint(osl_coordinates_p);
105 /*****************************************************************************
106 * Reading function *
107 *****************************************************************************/
108 osl_coordinates_p osl_coordinates_sread(char**);
111 /*+***************************************************************************
112 * Memory allocation/deallocation function *
113 *****************************************************************************/
114 osl_coordinates_p osl_coordinates_malloc();
115 void osl_coordinates_free(osl_coordinates_p);
118 /*+***************************************************************************
119 * Processing functions *
120 *****************************************************************************/
121 osl_coordinates_p osl_coordinates_clone(osl_coordinates_p);
122 int osl_coordinates_equal(osl_coordinates_p, osl_coordinates_p);
123 osl_interface_p osl_coordinates_interface();
126 # if defined(__cplusplus)
128 # endif
130 #endif /* define OSL_COORDINATES_H */