2 * Prototype search and parsing functions
4 * Copyright 2000 Jon Griffiths
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
26 static char *grep_buff
= NULL
;
27 static char *fgrep_buff
= NULL
;
29 static int symbol_from_prototype (parsed_symbol
*sym
, const char *prototype
);
30 static const char *get_type (parsed_symbol
*sym
, const char *proto
, int arg
);
33 /*******************************************************************
36 * Call Patrik Stridvall's 'function_grep.pl' script to retrieve a
37 * function prototype from include file(s)
39 int symbol_search (parsed_symbol
*sym
)
41 static const size_t MAX_RESULT_LEN
= 1024;
45 assert (globals
.do_code
);
46 assert (globals
.directory
);
47 assert (sym
&& sym
->symbol
);
49 if (!symbol_is_valid_c (sym
))
53 grep_buff
= malloc (MAX_RESULT_LEN
);
56 fgrep_buff
= malloc (MAX_RESULT_LEN
);
58 if (!grep_buff
|| !fgrep_buff
)
59 fatal ("Out of Memory");
61 /* Use 'grep' to tell us which possible files the function is in,
62 * then use 'function_grep.pl' to get the prototype. If this fails the
63 * first time then give grep a more general query (that doesn't
64 * require an opening argument brace on the line with the function name).
69 char *cmd
= str_create (4, "grep -d recurse -l \"", sym
->symbol
,
70 !attempt
? "[:blank:]*(\" " : "\" ", globals
.directory
);
75 fflush (NULL
); /* See 'man popen' */
77 if (!(grep
= popen (cmd
, "r")))
78 fatal ("Cannot execute grep -l");
81 while (fgets (grep_buff
, MAX_RESULT_LEN
, grep
))
84 const char *extension
= grep_buff
;
85 for (i
= 0; grep_buff
[i
] && grep_buff
[i
] != '\n' ; i
++) {
86 if (grep_buff
[i
] == '.')
87 extension
= &grep_buff
[i
];
91 /* Definitely not in these: */
92 if (strcmp(extension
,".dll") == 0 ||
93 strcmp(extension
,".lib") == 0 ||
94 strcmp(extension
,".so") == 0 ||
95 strcmp(extension
,".o") == 0)
101 cmd
= str_create (5, "function_grep.pl ", sym
->symbol
,
102 " \"", grep_buff
, "\"");
107 fflush (NULL
); /* See 'man popen' */
109 if (!(f_grep
= popen (cmd
, "r")))
110 fatal ("Cannot execute function_grep.pl");
113 while (fgets (grep_buff
, MAX_RESULT_LEN
, f_grep
))
115 char *iter
= grep_buff
;
117 /* Keep only the first line */
118 symbol_clean_string(grep_buff
);
120 for (i
= 0; grep_buff
[i
] && grep_buff
[i
] != '\n' ; i
++)
127 while ((iter
= strstr (iter
, sym
->symbol
)))
129 if (iter
> grep_buff
&& (iter
[-1] == ' ' || iter
[-1] == '*') &&
130 (iter
[strlen (sym
->symbol
)] == ' ' ||
131 iter
[strlen (sym
->symbol
)] == '('))
134 printf ("Prototype '%s' looks OK, processing\n", grep_buff
);
136 if (!symbol_from_prototype (sym
, grep_buff
))
143 puts ("Failed, trying next");
146 iter
+= strlen (sym
->symbol
);
155 return -1; /* Not found */
159 /*******************************************************************
160 * symbol_from_prototype
162 * Convert a C prototype into a symbol
164 static int symbol_from_prototype (parsed_symbol
*sym
, const char *proto
)
169 proto
= get_type (sym
, proto
, -1); /* Get return type */
173 iter
= str_match (proto
, sym
->symbol
, &found
);
178 /* Calling Convention */
179 iter
= strchr (iter
, ' ');
183 call
= str_substring (proto
, iter
);
185 if (!strcasecmp (call
, "cdecl") || !strcasecmp (call
, "__cdecl"))
186 sym
->flags
|= SYM_CDECL
;
188 sym
->flags
|= SYM_STDCALL
;
190 iter
= str_match (iter
, sym
->symbol
, &found
);
196 printf ("Using %s calling convention\n",
197 sym
->flags
& SYM_CDECL
? "cdecl" : "stdcall");
200 sym
->flags
= CALLING_CONVENTION
;
202 sym
->function_name
= strdup (sym
->symbol
);
205 /* Now should be the arguments */
209 for (; *proto
== ' '; proto
++);
211 if (!strncmp (proto
, "void", 4))
216 /* Process next argument */
217 str_match (proto
, "...", &sym
->varargs
);
221 if (!(proto
= get_type (sym
, proto
, sym
->argc
)))
228 else if (*proto
!= ')')
231 } while (*proto
!= ')');
237 /*******************************************************************
240 * Read a type from a prototype
242 static const char *get_type (parsed_symbol
*sym
, const char *proto
, int arg
)
244 int is_const
, is_volatile
, is_struct
, is_signed
, is_unsigned
, ptrs
= 0;
245 const char *iter
, *base_type
, *catch_unsigned
, *proto_str
;
246 char dest_type
, *type_str
;
248 assert (sym
&& sym
->symbol
);
249 assert (proto
&& *proto
);
250 assert (arg
< 0 || (unsigned)arg
== sym
->argc
);
253 proto_str
= str_match (proto
, "const", &is_const
);
254 proto_str
= str_match (proto_str
, "volatile", &is_volatile
);
255 proto_str
= str_match (proto_str
, "struct", &is_struct
);
257 proto_str
= str_match (proto_str
, "union", &is_struct
);
259 catch_unsigned
= proto_str
;
261 proto_str
= str_match (proto_str
, "unsigned", &is_unsigned
);
262 proto_str
= str_match (proto_str
, "signed", &is_signed
);
264 /* Can have 'unsigned const' or 'const unsigned' etc */
266 proto_str
= str_match (proto_str
, "const", &is_const
);
268 proto_str
= str_match (proto_str
, "volatile", &is_volatile
);
270 base_type
= proto_str
;
271 iter
= str_find_set (proto_str
, " ,*)");
275 if (arg
< 0 && (is_signed
|| is_unsigned
))
277 /* Prevent calling convention from being swallowed by 'un/signed' alone */
278 if (strncmp (base_type
, "int", 3) && strncmp (base_type
, "long", 4) &&
279 strncmp (base_type
, "short", 5) && strncmp (base_type
, "char", 4))
282 base_type
= catch_unsigned
;
284 catch_unsigned
= NULL
;
287 catch_unsigned
= NULL
;
289 /* FIXME: skip const/volatile here too */
290 for (proto_str
= iter
; *proto_str
; proto_str
++)
291 if (*proto_str
== '*')
293 else if (*proto_str
!= ' ')
299 type_str
= str_substring (proto
, proto_str
);
300 if (iter
== base_type
|| catch_unsigned
)
302 /* 'unsigned' with no type */
303 char *tmp
= str_create (2, type_str
, " int");
307 symbol_clean_string (type_str
);
309 dest_type
= symbol_get_type (type_str
);
313 sym
->return_text
= (char*)type_str
;
314 sym
->return_type
= dest_type
;
318 sym
->arg_type
[arg
] = dest_type
;
319 sym
->arg_flag
[arg
] = is_const
? CT_CONST
: is_volatile
? CT_VOLATILE
: 0;
321 if (*proto_str
== ',' || *proto_str
== ')')
322 sym
->arg_name
[arg
] = str_create_num (1, arg
, "arg");
325 iter
= str_find_set (proto_str
, " ,)");
331 sym
->arg_name
[arg
] = str_substring (proto_str
, iter
);
334 sym
->arg_text
[arg
] = (char*)type_str
;
342 /*******************************************************************
345 * Free memory used while searching (a niceity)
347 void search_cleanup (void) __attribute__ ((destructor
));
348 void search_cleanup (void)