1 /******************************************************************/
2 /* Copyright (C) 2000, HELM Team */
4 /* This file is part of HELM, an Hypertextual, Electronic */
5 /* Library of Mathematics, developed at the Computer Science */
6 /* Department, University of Bologna, Italy. */
8 /* HELM is free software; you can redistribute it and/or */
9 /* modify it under the terms of the GNU General Public License */
10 /* as published by the Free Software Foundation; either version */
11 /* 2 of the License, or (at your option) any later version. */
13 /* HELM is distributed in the hope that it will be useful, */
14 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
15 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
16 /* GNU General Public License for more details. */
18 /* You should have received a copy of the GNU General Public */
19 /* License along with HELM; if not, write to the Free Software */
20 /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, */
21 /* MA 02111-1307, USA. */
23 /* For details, see the HELM World-Wide-Web page, */
24 /* http://cs.unibo.it/helm/. */
25 /******************************************************************/
27 /***************************************************************/
29 /* Automatic Metadata Extractor */
30 /* First draft 11/12/2001, by Andrea Asperti */
31 /* more bugs added by domenico lordi on mon 12/17/2001 */
32 /***************************************************************/
34 /***************************************************************/
35 /* 1. Inclusion of header files. */
36 /***************************************************************/
42 #include "sthandler.h"
45 /***************************************************************/
46 /* 2. Constants and Variables Definitions */
47 /***************************************************************/
53 #define MUTCONSTRUCT 3
70 int position = INBODY;
71 int first_child = HERE;
72 int skip = 0; // boolean to skip the insertion of a URI
73 int no_open_source =0;
77 int inductive_type = 0;
81 char *xpointer = "#xpointer(1/";
85 char *source_uri_prefix;
86 int waiting_for_name = 0;
88 void search(char *uri, int first_child, int position, int depth);
91 /***************************************************************/
92 /* 3. Regular definitions. */
93 /***************************************************************/
98 id [a-zA-Z]([-_'a-zA-Z0-9])*
100 /***************************************************************/
102 /***************************************************************/
108 /* fprintf(stderr,"uno"); */
113 /* fprintf(stderr,"due"); */
118 waiting_for_name = 1;
120 tmp = (char *)malloc(sizeof('a')*128);
121 strcpy(source_uri,source_uri_prefix);
122 sprintf(tmp,"#xpointer(1/%d)", inductive_type);
123 strcat(source_uri,tmp);
124 /* fprintf(stderr,"cinque"); */
129 print_all(source_uri);
133 "<Constructor" { init_symbol_table();
140 waiting_for_name = 1;
142 tmp = (char *)malloc(sizeof('a')*128);
143 strcpy(source_uri,source_uri_prefix);
144 sprintf(tmp,"#xpointer(1/%d/%d)",inductive_type,constructor);
145 strcat(source_uri,tmp);
149 "</Constructor>" { print_all(source_uri);
155 if (position == INTYPE)
157 else if (position == MAINHYP)
160 else if (position == INHYP) no_open_source++;
165 if (position == INHYP)
168 if (no_open_source == 0)
175 else if (position == MAINHYP)
196 if (((position == INTYPE) | (position == MAINHYP)) &&
197 (first_child == HERE))
199 if (position == INTYPE) /* REL on the spine */
202 search("Rel",first_child,position,spine_depth);
204 else search("Rel",first_child,position,depth);
209 "<SORT"(" "|\n)+"value=\""{value} {
210 if (((position == INTYPE) | (position == MAINHYP)) &&
211 (first_child == HERE))
213 tmp=(char *)malloc((sizeof('a')*200));
216 if (position == INTYPE) /* SORT on the spine */
219 search(tmp,first_child,position,spine_depth);
221 else search(tmp,first_child,position,depth);
232 if (position == INTYPE) /* CONST on the spine */
238 if (position == INTYPE) /* MUTIND on the spine */
244 if (position == INTYPE) /* MUTCONSTRUCT on the spine */
246 where = MUTCONSTRUCT;
251 uri=(char *)malloc((sizeof('a')*200));
256 if (position == INCONCL)
257 search(uri,first_child,position,spine_depth);
258 else search(uri,first_child,position,depth);
266 "noType=\""{digits} {
267 if ((where == MUTIND) || (where == MUTCONSTRUCT))
268 { strsep(&yytext,&sep);
269 tmp=(char *)malloc((sizeof(sep)*(strlen(yytext)+1)));
272 sprintf(tmp,"%d",tmp_n);
273 strcat(uri,"#xpointer(1/");
279 if (position == INCONCL)
280 search(uri,first_child,position,spine_depth);
281 else search(uri,first_child,position,depth);
285 first_child = AFTER;};
288 "noConstr=\""{digits} {
289 if (where == MUTCONSTRUCT)
290 { strsep(&yytext,&sep);
291 tmp=(char *)malloc((sizeof(sep)*(strlen(yytext)+1)));
296 if (position == INCONCL)
297 search(uri,first_child,position,spine_depth);
298 else search(uri,first_child,position,depth);
302 first_child = AFTER;};
306 if (waiting_for_name == 1) {
307 waiting_for_name = 0;
308 strsep(&yytext,&sep);
309 tmp=(char *)malloc((sizeof(sep)*(strlen(yytext)+1)));
311 print_name(tmp,source_uri);
319 /***************************************************************/
320 /* 6. Auxiliary functions. */
321 /***************************************************************/
323 int main(int argc, char *argv[])
329 fprintf(stderr, "Usage: meta_ind <object_uri> <inductive_type_file>\n");
333 source_uri = malloc((sizeof('a')*2000));
334 source_uri_prefix=argv[1];
335 /* fprintf(stderr,"qua"); */
336 yyin = fopen(argv[2], "r");
342 void search(uri,first_child,position,depth)
347 if (position == MAINHYP)
349 if (first_child == HERE)
350 found = search_bucket(uri,MAINHYP,depth);
352 found = search_bucket(uri,INHYP,0);
354 else if (position == INCONCL)
356 if (first_child == HERE)
357 found = search_bucket(uri,MAINCONCL,depth);
359 found = search_bucket(uri,INCONCL,0);
363 found = search_bucket(uri,position,depth);
364 /* if (found == NOTFOUND)
365 printf( "pos = %d, uri = %s\n", position, uri); */