1996-10-23 18:59:13 +02:00
|
|
|
/*
|
|
|
|
* Generate include file dependencies
|
|
|
|
*
|
|
|
|
* Copyright 1996 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1996-10-23 18:59:13 +02:00
|
|
|
*/
|
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
#include "config.h"
|
2003-03-20 22:08:28 +01:00
|
|
|
#define NO_LIBWINE_PORT
|
2002-04-26 21:05:15 +02:00
|
|
|
#include "wine/port.h"
|
|
|
|
|
2006-08-01 12:16:29 +02:00
|
|
|
#include <assert.h>
|
1996-10-23 18:59:13 +02:00
|
|
|
#include <ctype.h>
|
2006-08-01 12:13:57 +02:00
|
|
|
#include <errno.h>
|
1996-10-23 18:59:13 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2004-04-07 06:00:16 +02:00
|
|
|
#include <stdarg.h>
|
1996-10-23 18:59:13 +02:00
|
|
|
#include <string.h>
|
2002-08-17 20:28:43 +02:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2006-08-01 12:13:57 +02:00
|
|
|
#include "wine/list.h"
|
1996-10-23 18:59:13 +02:00
|
|
|
|
|
|
|
/* Max first-level includes per file */
|
2002-02-15 20:57:27 +01:00
|
|
|
#define MAX_INCLUDES 200
|
1996-10-23 18:59:13 +02:00
|
|
|
|
|
|
|
typedef struct _INCL_FILE
|
|
|
|
{
|
2006-08-01 12:13:57 +02:00
|
|
|
struct list entry;
|
1996-10-23 18:59:13 +02:00
|
|
|
char *name;
|
|
|
|
char *filename;
|
2006-09-10 22:04:42 +02:00
|
|
|
char *sourcename; /* source file name for generated headers */
|
2000-11-06 06:32:59 +01:00
|
|
|
struct _INCL_FILE *included_by; /* file that included this one */
|
|
|
|
int included_line; /* line where this file was included */
|
2002-02-15 20:57:27 +01:00
|
|
|
int system; /* is it a system include (#include <name>) */
|
1996-10-23 18:59:13 +02:00
|
|
|
struct _INCL_FILE *owner;
|
|
|
|
struct _INCL_FILE *files[MAX_INCLUDES];
|
|
|
|
} INCL_FILE;
|
|
|
|
|
2006-08-01 12:13:57 +02:00
|
|
|
static struct list sources = LIST_INIT(sources);
|
|
|
|
static struct list includes = LIST_INIT(includes);
|
1996-10-23 18:59:13 +02:00
|
|
|
|
2009-06-30 10:25:05 +02:00
|
|
|
typedef struct _OBJECT_EXTENSION
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
const char *extension;
|
|
|
|
} OBJECT_EXTENSION;
|
|
|
|
|
|
|
|
static struct list object_extensions = LIST_INIT(object_extensions);
|
|
|
|
|
1996-10-23 18:59:13 +02:00
|
|
|
typedef struct _INCL_PATH
|
|
|
|
{
|
2006-08-01 12:13:57 +02:00
|
|
|
struct list entry;
|
|
|
|
const char *name;
|
1996-10-23 18:59:13 +02:00
|
|
|
} INCL_PATH;
|
|
|
|
|
2006-08-01 12:13:57 +02:00
|
|
|
static struct list paths = LIST_INIT(paths);
|
1996-10-23 18:59:13 +02:00
|
|
|
|
2006-08-01 12:27:22 +02:00
|
|
|
static const char *src_dir;
|
|
|
|
static const char *top_src_dir;
|
|
|
|
static const char *top_obj_dir;
|
1996-10-23 18:59:13 +02:00
|
|
|
static const char *OutputFileName = "Makefile";
|
|
|
|
static const char *Separator = "### Dependencies";
|
|
|
|
static const char *ProgramName;
|
2006-08-01 12:16:29 +02:00
|
|
|
static int input_line;
|
1996-10-23 18:59:13 +02:00
|
|
|
|
|
|
|
static const char Usage[] =
|
|
|
|
"Usage: %s [options] [files]\n"
|
|
|
|
"Options:\n"
|
|
|
|
" -Idir Search for include files in directory 'dir'\n"
|
|
|
|
" -Cdir Search for source files in directory 'dir'\n"
|
2006-08-01 12:27:22 +02:00
|
|
|
" -Sdir Set the top source directory\n"
|
2008-06-13 05:09:38 +02:00
|
|
|
" -Tdir Set the top object directory\n"
|
1996-10-23 18:59:13 +02:00
|
|
|
" -fxxx Store output in file 'xxx' (default: Makefile)\n"
|
|
|
|
" -sxxx Use 'xxx' as separator (default: \"### Dependencies\")\n";
|
|
|
|
|
|
|
|
|
2004-04-07 06:00:16 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* fatal_error
|
|
|
|
*/
|
|
|
|
static void fatal_error( const char *msg, ... )
|
|
|
|
{
|
|
|
|
va_list valist;
|
|
|
|
va_start( valist, msg );
|
|
|
|
vfprintf( stderr, msg, valist );
|
|
|
|
va_end( valist );
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1996-10-23 18:59:13 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* xmalloc
|
|
|
|
*/
|
2006-08-01 12:16:29 +02:00
|
|
|
static void *xmalloc( size_t size )
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
|
|
|
void *res;
|
|
|
|
if (!(res = malloc (size ? size : 1)))
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s: error: Virtual memory exhausted.\n", ProgramName );
|
1996-10-23 18:59:13 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-01 12:16:29 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* xrealloc
|
|
|
|
*/
|
2006-09-10 22:04:42 +02:00
|
|
|
static void *xrealloc (void *ptr, size_t size)
|
2006-08-01 12:16:29 +02:00
|
|
|
{
|
|
|
|
void *res;
|
|
|
|
assert( size );
|
|
|
|
if (!(res = realloc( ptr, size )))
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s: error: Virtual memory exhausted.\n", ProgramName );
|
2006-08-01 12:16:29 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
1996-10-23 18:59:13 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* xstrdup
|
|
|
|
*/
|
|
|
|
static char *xstrdup( const char *str )
|
|
|
|
{
|
|
|
|
char *res = strdup( str );
|
2011-09-28 12:55:16 +02:00
|
|
|
if (!res) fatal_error( "%s: error: Virtual memory exhausted.\n", ProgramName );
|
1996-10-23 18:59:13 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-01 12:37:18 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* strmake
|
|
|
|
*/
|
2006-09-10 22:04:42 +02:00
|
|
|
static char *strmake( const char* fmt, ... )
|
2006-08-01 12:37:18 +02:00
|
|
|
{
|
|
|
|
int n;
|
|
|
|
size_t size = 100;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
char *p = xmalloc (size);
|
|
|
|
va_start(ap, fmt);
|
|
|
|
n = vsnprintf (p, size, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
if (n == -1) size *= 2;
|
|
|
|
else if ((size_t)n >= size) size = n + 1;
|
|
|
|
else return p;
|
|
|
|
free(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-10 22:04:42 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* strendswith
|
|
|
|
*/
|
|
|
|
static int strendswith( const char* str, const char* end )
|
|
|
|
{
|
|
|
|
int l = strlen(str);
|
|
|
|
int m = strlen(end);
|
|
|
|
|
|
|
|
return l >= m && strcmp(str + l - m, end) == 0;
|
|
|
|
}
|
|
|
|
|
2003-04-11 02:38:56 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* get_extension
|
|
|
|
*/
|
|
|
|
static char *get_extension( char *filename )
|
|
|
|
{
|
|
|
|
char *ext = strrchr( filename, '.' );
|
|
|
|
if (ext && strchr( ext, '/' )) ext = NULL;
|
|
|
|
return ext;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-01 12:16:29 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* get_line
|
|
|
|
*/
|
|
|
|
static char *get_line( FILE *file )
|
|
|
|
{
|
|
|
|
static char *buffer;
|
|
|
|
static unsigned int size;
|
|
|
|
|
|
|
|
if (!size)
|
|
|
|
{
|
|
|
|
size = 1024;
|
|
|
|
buffer = xmalloc( size );
|
|
|
|
}
|
|
|
|
if (!fgets( buffer, size, file )) return NULL;
|
|
|
|
input_line++;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
char *p = buffer + strlen(buffer);
|
|
|
|
/* if line is larger than buffer, resize buffer */
|
|
|
|
while (p == buffer + size - 1 && p[-1] != '\n')
|
|
|
|
{
|
|
|
|
buffer = xrealloc( buffer, size * 2 );
|
2010-04-02 19:06:31 +02:00
|
|
|
if (!fgets( buffer + size - 1, size + 1, file )) break;
|
2006-08-01 12:16:29 +02:00
|
|
|
p = buffer + strlen(buffer);
|
|
|
|
size *= 2;
|
|
|
|
}
|
|
|
|
if (p > buffer && p[-1] == '\n')
|
|
|
|
{
|
|
|
|
*(--p) = 0;
|
|
|
|
if (p > buffer && p[-1] == '\r') *(--p) = 0;
|
|
|
|
if (p > buffer && p[-1] == '\\')
|
|
|
|
{
|
|
|
|
*(--p) = 0;
|
|
|
|
/* line ends in backslash, read continuation line */
|
2010-04-02 19:06:31 +02:00
|
|
|
if (!fgets( p, size - (p - buffer), file )) return buffer;
|
2006-08-01 12:16:29 +02:00
|
|
|
input_line++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-30 10:25:05 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* add_object_extension
|
|
|
|
*
|
|
|
|
* Add an extension for object files.
|
|
|
|
*/
|
|
|
|
static void add_object_extension( const char *ext )
|
|
|
|
{
|
|
|
|
OBJECT_EXTENSION *object_extension = xmalloc( sizeof(*object_extension) );
|
|
|
|
list_add_tail( &object_extensions, &object_extension->entry );
|
|
|
|
object_extension->extension = ext;
|
|
|
|
}
|
|
|
|
|
1996-10-23 18:59:13 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* add_include_path
|
|
|
|
*
|
|
|
|
* Add a directory to the include path.
|
|
|
|
*/
|
|
|
|
static void add_include_path( const char *name )
|
|
|
|
{
|
|
|
|
INCL_PATH *path = xmalloc( sizeof(*path) );
|
2006-08-01 12:13:57 +02:00
|
|
|
list_add_tail( &paths, &path->entry );
|
1996-10-23 18:59:13 +02:00
|
|
|
path->name = name;
|
|
|
|
}
|
|
|
|
|
2006-10-16 17:19:07 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* find_src_file
|
|
|
|
*/
|
|
|
|
static INCL_FILE *find_src_file( const char *name )
|
|
|
|
{
|
|
|
|
INCL_FILE *file;
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY( file, &sources, INCL_FILE, entry )
|
|
|
|
if (!strcmp( name, file->name )) return file;
|
|
|
|
return NULL;
|
|
|
|
}
|
1996-10-23 18:59:13 +02:00
|
|
|
|
2010-03-16 13:27:51 +01:00
|
|
|
/*******************************************************************
|
|
|
|
* find_include_file
|
|
|
|
*/
|
|
|
|
static INCL_FILE *find_include_file( const char *name )
|
|
|
|
{
|
|
|
|
INCL_FILE *file;
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY( file, &includes, INCL_FILE, entry )
|
|
|
|
if (!strcmp( name, file->name )) return file;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1996-10-23 18:59:13 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* add_include
|
|
|
|
*
|
|
|
|
* Add an include file if it doesn't already exists.
|
|
|
|
*/
|
2002-02-15 20:57:27 +01:00
|
|
|
static INCL_FILE *add_include( INCL_FILE *pFile, const char *name, int line, int system )
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2006-08-01 12:13:57 +02:00
|
|
|
INCL_FILE *include;
|
2004-04-07 06:00:16 +02:00
|
|
|
char *ext;
|
1996-10-23 18:59:13 +02:00
|
|
|
int pos;
|
|
|
|
|
|
|
|
for (pos = 0; pos < MAX_INCLUDES; pos++) if (!pFile->files[pos]) break;
|
|
|
|
if (pos >= MAX_INCLUDES)
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s: %s: error: too many included files, please fix MAX_INCLUDES\n",
|
2004-04-07 06:00:16 +02:00
|
|
|
ProgramName, pFile->name );
|
|
|
|
|
|
|
|
/* enforce some rules for the Wine tree */
|
|
|
|
|
|
|
|
if (!memcmp( name, "../", 3 ))
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s:%d: error: #include directive with relative path not allowed\n",
|
2004-04-07 06:00:16 +02:00
|
|
|
pFile->filename, line );
|
|
|
|
|
|
|
|
if (!strcmp( name, "config.h" ))
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2004-04-07 06:00:16 +02:00
|
|
|
if ((ext = strrchr( pFile->filename, '.' )) && !strcmp( ext, ".h" ))
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s:%d: error: config.h must not be included by a header file\n",
|
2004-04-07 06:00:16 +02:00
|
|
|
pFile->filename, line );
|
|
|
|
if (pos)
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s:%d: error: config.h must be included before anything else\n",
|
2004-04-07 06:00:16 +02:00
|
|
|
pFile->filename, line );
|
|
|
|
}
|
|
|
|
else if (!strcmp( name, "wine/port.h" ))
|
|
|
|
{
|
|
|
|
if ((ext = strrchr( pFile->filename, '.' )) && !strcmp( ext, ".h" ))
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s:%d: error: wine/port.h must not be included by a header file\n",
|
2004-04-07 06:00:16 +02:00
|
|
|
pFile->filename, line );
|
2011-09-28 12:55:16 +02:00
|
|
|
if (!pos) fatal_error( "%s:%d: error: config.h must be included before wine/port.h\n",
|
2004-04-07 06:00:16 +02:00
|
|
|
pFile->filename, line );
|
|
|
|
if (pos > 1)
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s:%d: error: wine/port.h must be included before everything except config.h\n",
|
2004-04-07 06:00:16 +02:00
|
|
|
pFile->filename, line );
|
|
|
|
if (strcmp( pFile->files[0]->name, "config.h" ))
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s:%d: error: config.h must be included before wine/port.h\n",
|
2004-04-07 06:00:16 +02:00
|
|
|
pFile->filename, line );
|
1996-10-23 18:59:13 +02:00
|
|
|
}
|
|
|
|
|
2006-08-01 12:13:57 +02:00
|
|
|
LIST_FOR_EACH_ENTRY( include, &includes, INCL_FILE, entry )
|
|
|
|
if (!strcmp( name, include->name )) goto found;
|
|
|
|
|
|
|
|
include = xmalloc( sizeof(INCL_FILE) );
|
|
|
|
memset( include, 0, sizeof(INCL_FILE) );
|
|
|
|
include->name = xstrdup(name);
|
|
|
|
include->included_by = pFile;
|
|
|
|
include->included_line = line;
|
2006-09-10 22:04:42 +02:00
|
|
|
include->system = system;
|
2006-08-01 12:13:57 +02:00
|
|
|
list_add_tail( &includes, &include->entry );
|
|
|
|
found:
|
|
|
|
pFile->files[pos] = include;
|
|
|
|
return include;
|
1996-10-23 18:59:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************
|
|
|
|
* open_src_file
|
|
|
|
*/
|
|
|
|
static FILE *open_src_file( INCL_FILE *pFile )
|
|
|
|
{
|
|
|
|
FILE *file;
|
|
|
|
|
2002-12-11 02:30:14 +01:00
|
|
|
/* first try name as is */
|
|
|
|
if ((file = fopen( pFile->name, "r" )))
|
|
|
|
{
|
|
|
|
pFile->filename = xstrdup( pFile->name );
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
/* now try in source dir */
|
2006-08-01 12:27:22 +02:00
|
|
|
if (src_dir)
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2006-08-01 12:37:18 +02:00
|
|
|
pFile->filename = strmake( "%s/%s", src_dir, pFile->name );
|
2002-12-11 02:30:14 +01:00
|
|
|
file = fopen( pFile->filename, "r" );
|
1996-10-23 18:59:13 +02:00
|
|
|
}
|
2002-12-11 02:30:14 +01:00
|
|
|
if (!file)
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2011-09-28 12:55:16 +02:00
|
|
|
fprintf( stderr, "%s: error: ", ProgramName );
|
2002-12-11 02:30:14 +01:00
|
|
|
perror( pFile->name );
|
1996-10-23 18:59:13 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************
|
|
|
|
* open_include_file
|
|
|
|
*/
|
|
|
|
static FILE *open_include_file( INCL_FILE *pFile )
|
|
|
|
{
|
|
|
|
FILE *file = NULL;
|
2006-08-01 12:37:18 +02:00
|
|
|
char *filename, *p;
|
1996-10-23 18:59:13 +02:00
|
|
|
INCL_PATH *path;
|
|
|
|
|
2006-08-01 12:13:57 +02:00
|
|
|
errno = ENOENT;
|
|
|
|
|
2006-09-10 22:04:42 +02:00
|
|
|
/* check for generated bison header */
|
|
|
|
|
|
|
|
if (strendswith( pFile->name, ".tab.h" ))
|
|
|
|
{
|
|
|
|
if (src_dir)
|
|
|
|
filename = strmake( "%s/%.*s.y", src_dir, strlen(pFile->name) - 6, pFile->name );
|
|
|
|
else
|
|
|
|
filename = strmake( "%.*s.y", strlen(pFile->name) - 6, pFile->name );
|
|
|
|
|
|
|
|
if ((file = fopen( filename, "r" )))
|
|
|
|
{
|
|
|
|
pFile->sourcename = filename;
|
|
|
|
pFile->filename = xstrdup( pFile->name );
|
|
|
|
/* don't bother to parse it */
|
|
|
|
fclose( file );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
free( filename );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for generated message resource */
|
|
|
|
|
|
|
|
if (strendswith( pFile->name, ".mc.rc" ))
|
|
|
|
{
|
|
|
|
if (src_dir)
|
|
|
|
filename = strmake( "%s/%s", src_dir, pFile->name );
|
|
|
|
else
|
|
|
|
filename = xstrdup( pFile->name );
|
|
|
|
|
|
|
|
filename[strlen(filename) - 3] = 0;
|
|
|
|
|
|
|
|
if ((file = fopen( filename, "r" )))
|
|
|
|
{
|
|
|
|
pFile->sourcename = filename;
|
|
|
|
pFile->filename = xstrdup( pFile->name );
|
|
|
|
/* don't bother to parse it */
|
|
|
|
fclose( file );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
free( filename );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for corresponding idl file in source dir */
|
|
|
|
|
|
|
|
if (strendswith( pFile->name, ".h" ))
|
|
|
|
{
|
|
|
|
if (src_dir)
|
|
|
|
filename = strmake( "%s/%.*s.idl", src_dir, strlen(pFile->name) - 2, pFile->name );
|
|
|
|
else
|
|
|
|
filename = strmake( "%.*s.idl", strlen(pFile->name) - 2, pFile->name );
|
|
|
|
|
|
|
|
if ((file = fopen( filename, "r" )))
|
|
|
|
{
|
|
|
|
pFile->sourcename = filename;
|
|
|
|
pFile->filename = xstrdup( pFile->name );
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
free( filename );
|
|
|
|
}
|
|
|
|
|
2006-08-01 12:37:18 +02:00
|
|
|
/* first try name as is */
|
|
|
|
if ((file = fopen( pFile->name, "r" )))
|
|
|
|
{
|
|
|
|
pFile->filename = xstrdup( pFile->name );
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now try in source dir */
|
|
|
|
if (src_dir)
|
|
|
|
{
|
|
|
|
filename = strmake( "%s/%s", src_dir, pFile->name );
|
|
|
|
if ((file = fopen( filename, "r" ))) goto found;
|
|
|
|
free( filename );
|
|
|
|
}
|
|
|
|
|
2006-09-10 22:04:42 +02:00
|
|
|
/* check for corresponding idl file in global includes */
|
|
|
|
|
|
|
|
if (strendswith( pFile->name, ".h" ))
|
|
|
|
{
|
|
|
|
if (top_src_dir)
|
|
|
|
filename = strmake( "%s/include/%.*s.idl",
|
|
|
|
top_src_dir, strlen(pFile->name) - 2, pFile->name );
|
|
|
|
else if (top_obj_dir)
|
|
|
|
filename = strmake( "%s/include/%.*s.idl",
|
|
|
|
top_obj_dir, strlen(pFile->name) - 2, pFile->name );
|
|
|
|
else
|
|
|
|
filename = NULL;
|
|
|
|
|
|
|
|
if (filename && (file = fopen( filename, "r" )))
|
|
|
|
{
|
|
|
|
pFile->sourcename = filename;
|
|
|
|
pFile->filename = strmake( "%s/include/%s", top_obj_dir, pFile->name );
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
free( filename );
|
|
|
|
}
|
|
|
|
|
2011-05-05 15:02:25 +02:00
|
|
|
/* check for corresponding .x file in global includes */
|
|
|
|
|
|
|
|
if (strendswith( pFile->name, "tmpl.h" ))
|
|
|
|
{
|
|
|
|
if (top_src_dir)
|
|
|
|
filename = strmake( "%s/include/%.*s.x",
|
|
|
|
top_src_dir, strlen(pFile->name) - 2, pFile->name );
|
|
|
|
else if (top_obj_dir)
|
|
|
|
filename = strmake( "%s/include/%.*s.x",
|
|
|
|
top_obj_dir, strlen(pFile->name) - 2, pFile->name );
|
|
|
|
else
|
|
|
|
filename = NULL;
|
|
|
|
|
|
|
|
if (filename && (file = fopen( filename, "r" )))
|
|
|
|
{
|
|
|
|
pFile->sourcename = filename;
|
|
|
|
pFile->filename = strmake( "%s/include/%s", top_obj_dir, pFile->name );
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
free( filename );
|
|
|
|
}
|
|
|
|
|
2006-08-01 12:37:18 +02:00
|
|
|
/* now try in global includes */
|
|
|
|
if (top_obj_dir)
|
|
|
|
{
|
|
|
|
filename = strmake( "%s/include/%s", top_obj_dir, pFile->name );
|
|
|
|
if ((file = fopen( filename, "r" ))) goto found;
|
|
|
|
free( filename );
|
|
|
|
}
|
|
|
|
if (top_src_dir)
|
|
|
|
{
|
|
|
|
filename = strmake( "%s/include/%s", top_src_dir, pFile->name );
|
|
|
|
if ((file = fopen( filename, "r" ))) goto found;
|
|
|
|
free( filename );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now search in include paths */
|
2006-08-01 12:13:57 +02:00
|
|
|
LIST_FOR_EACH_ENTRY( path, &paths, INCL_PATH, entry )
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2006-08-01 12:37:18 +02:00
|
|
|
filename = strmake( "%s/%s", path->name, pFile->name );
|
|
|
|
if ((file = fopen( filename, "r" ))) goto found;
|
1996-10-23 18:59:13 +02:00
|
|
|
free( filename );
|
|
|
|
}
|
2006-08-01 12:37:18 +02:00
|
|
|
if (pFile->system) return NULL; /* ignore system files we cannot find */
|
2002-02-15 20:57:27 +01:00
|
|
|
|
2000-12-13 22:27:26 +01:00
|
|
|
/* try in src file directory */
|
2006-08-01 12:37:18 +02:00
|
|
|
if ((p = strrchr(pFile->included_by->filename, '/')))
|
2000-12-13 22:27:26 +01:00
|
|
|
{
|
2006-08-01 12:37:18 +02:00
|
|
|
int l = p - pFile->included_by->filename + 1;
|
|
|
|
filename = xmalloc(l + strlen(pFile->name) + 1);
|
|
|
|
memcpy( filename, pFile->included_by->filename, l );
|
|
|
|
strcpy( filename + l, pFile->name );
|
|
|
|
if ((file = fopen( filename, "r" ))) goto found;
|
|
|
|
free( filename );
|
2000-12-13 22:27:26 +01:00
|
|
|
}
|
|
|
|
|
2011-09-28 12:55:16 +02:00
|
|
|
fprintf( stderr, "%s:%d: error: ", pFile->included_by->filename, pFile->included_line );
|
2006-08-01 12:37:18 +02:00
|
|
|
perror( pFile->name );
|
2011-09-28 12:55:16 +02:00
|
|
|
pFile = pFile->included_by;
|
|
|
|
while (pFile && pFile->included_by)
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2006-09-10 22:04:42 +02:00
|
|
|
const char *parent = pFile->included_by->sourcename;
|
|
|
|
if (!parent) parent = pFile->included_by->name;
|
2011-09-28 12:55:16 +02:00
|
|
|
fprintf( stderr, "%s:%d: note: %s was first included here\n",
|
|
|
|
parent, pFile->included_line, pFile->name );
|
2006-08-01 12:37:18 +02:00
|
|
|
pFile = pFile->included_by;
|
1996-10-23 18:59:13 +02:00
|
|
|
}
|
2006-08-01 12:37:18 +02:00
|
|
|
exit(1);
|
|
|
|
|
|
|
|
found:
|
|
|
|
pFile->filename = filename;
|
1996-10-23 18:59:13 +02:00
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************
|
2003-04-11 02:38:56 +02:00
|
|
|
* parse_idl_file
|
2006-09-10 22:04:42 +02:00
|
|
|
*
|
|
|
|
* If for_h_file is non-zero, it means we are not interested in the idl file
|
|
|
|
* itself, but only in the contents of the .h file that will be generated from it.
|
1996-10-23 18:59:13 +02:00
|
|
|
*/
|
2006-09-10 22:04:42 +02:00
|
|
|
static void parse_idl_file( INCL_FILE *pFile, FILE *file, int for_h_file )
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2006-08-01 12:16:29 +02:00
|
|
|
char *buffer, *include;
|
2000-11-06 06:32:59 +01:00
|
|
|
|
2006-09-10 22:04:42 +02:00
|
|
|
if (for_h_file)
|
|
|
|
{
|
|
|
|
/* generated .h file always includes these */
|
|
|
|
add_include( pFile, "rpc.h", 0, 1 );
|
|
|
|
add_include( pFile, "rpcndr.h", 0, 1 );
|
|
|
|
}
|
|
|
|
|
2006-08-01 12:16:29 +02:00
|
|
|
input_line = 0;
|
|
|
|
while ((buffer = get_line( file )))
|
2000-11-06 06:32:59 +01:00
|
|
|
{
|
2003-06-20 23:31:13 +02:00
|
|
|
char quote;
|
2003-04-11 02:38:56 +02:00
|
|
|
char *p = buffer;
|
|
|
|
while (*p && isspace(*p)) p++;
|
2003-06-20 23:31:13 +02:00
|
|
|
|
|
|
|
if (!strncmp( p, "import", 6 ))
|
|
|
|
{
|
|
|
|
p += 6;
|
|
|
|
while (*p && isspace(*p)) p++;
|
2006-09-10 22:04:42 +02:00
|
|
|
if (*p != '"') continue;
|
|
|
|
include = ++p;
|
|
|
|
while (*p && (*p != '"')) p++;
|
2011-09-28 12:55:16 +02:00
|
|
|
if (!*p) fatal_error( "%s:%d: error: Malformed import directive\n",
|
|
|
|
pFile->filename, input_line );
|
2006-09-10 22:04:42 +02:00
|
|
|
*p = 0;
|
|
|
|
if (for_h_file && strendswith( include, ".idl" )) strcpy( p - 4, ".h" );
|
|
|
|
add_include( pFile, include, input_line, 0 );
|
|
|
|
continue;
|
2003-06-20 23:31:13 +02:00
|
|
|
}
|
2006-09-10 22:04:42 +02:00
|
|
|
|
|
|
|
if (for_h_file) /* only check for #include inside cpp_quote */
|
2003-06-20 23:31:13 +02:00
|
|
|
{
|
2006-09-10 22:04:42 +02:00
|
|
|
if (strncmp( p, "cpp_quote", 9 )) continue;
|
|
|
|
p += 9;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
if (*p++ != '(') continue;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
if (*p++ != '"') continue;
|
2003-06-20 23:31:13 +02:00
|
|
|
if (*p++ != '#') continue;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
if (strncmp( p, "include", 7 )) continue;
|
|
|
|
p += 7;
|
|
|
|
while (*p && isspace(*p)) p++;
|
2006-09-10 22:04:42 +02:00
|
|
|
if (*p == '\\' && p[1] == '"')
|
|
|
|
{
|
|
|
|
p += 2;
|
|
|
|
quote = '"';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (*p++ != '<' ) continue;
|
|
|
|
quote = '>';
|
|
|
|
}
|
|
|
|
include = p;
|
|
|
|
while (*p && (*p != quote)) p++;
|
|
|
|
if (!*p || (quote == '"' && p[-1] != '\\'))
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s:%d: error: Malformed #include directive inside cpp_quote\n",
|
2006-09-10 22:04:42 +02:00
|
|
|
pFile->filename, input_line );
|
|
|
|
if (quote == '"') p--; /* remove backslash */
|
|
|
|
*p = 0;
|
|
|
|
add_include( pFile, include, input_line, (quote == '>') );
|
|
|
|
continue;
|
2003-06-20 23:31:13 +02:00
|
|
|
}
|
|
|
|
|
2006-09-10 22:04:42 +02:00
|
|
|
/* check for normal #include */
|
|
|
|
if (*p++ != '#') continue;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
if (strncmp( p, "include", 7 )) continue;
|
|
|
|
p += 7;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
if (*p != '\"' && *p != '<' ) continue;
|
2003-06-20 23:31:13 +02:00
|
|
|
quote = *p++;
|
|
|
|
if (quote == '<') quote = '>';
|
2003-04-11 02:38:56 +02:00
|
|
|
include = p;
|
2003-06-20 23:31:13 +02:00
|
|
|
while (*p && (*p != quote)) p++;
|
2011-09-28 12:55:16 +02:00
|
|
|
if (!*p) fatal_error( "%s:%d: error: Malformed #include directive\n",
|
|
|
|
pFile->filename, input_line );
|
2003-04-11 02:38:56 +02:00
|
|
|
*p = 0;
|
2006-08-01 12:16:29 +02:00
|
|
|
add_include( pFile, include, input_line, (quote == '>') );
|
2000-11-06 06:32:59 +01:00
|
|
|
}
|
2003-04-11 02:38:56 +02:00
|
|
|
}
|
2000-11-06 06:32:59 +01:00
|
|
|
|
2003-04-11 02:38:56 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* parse_c_file
|
|
|
|
*/
|
|
|
|
static void parse_c_file( INCL_FILE *pFile, FILE *file )
|
|
|
|
{
|
2006-08-01 12:16:29 +02:00
|
|
|
char *buffer, *include;
|
1996-10-23 18:59:13 +02:00
|
|
|
|
2006-08-01 12:16:29 +02:00
|
|
|
input_line = 0;
|
|
|
|
while ((buffer = get_line( file )))
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2002-02-15 20:57:27 +01:00
|
|
|
char quote;
|
1996-10-23 18:59:13 +02:00
|
|
|
char *p = buffer;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
if (*p++ != '#') continue;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
if (strncmp( p, "include", 7 )) continue;
|
|
|
|
p += 7;
|
|
|
|
while (*p && isspace(*p)) p++;
|
2002-02-15 20:57:27 +01:00
|
|
|
if (*p != '\"' && *p != '<' ) continue;
|
|
|
|
quote = *p++;
|
|
|
|
if (quote == '<') quote = '>';
|
1996-10-23 18:59:13 +02:00
|
|
|
include = p;
|
2002-02-15 20:57:27 +01:00
|
|
|
while (*p && (*p != quote)) p++;
|
2011-09-28 12:55:16 +02:00
|
|
|
if (!*p) fatal_error( "%s:%d: error: Malformed #include directive\n",
|
2006-08-01 12:16:29 +02:00
|
|
|
pFile->filename, input_line );
|
1996-10-23 18:59:13 +02:00
|
|
|
*p = 0;
|
2006-08-01 12:16:29 +02:00
|
|
|
add_include( pFile, include, input_line, (quote == '>') );
|
1996-10-23 18:59:13 +02:00
|
|
|
}
|
2003-04-11 02:38:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-26 15:02:03 +01:00
|
|
|
/*******************************************************************
|
|
|
|
* parse_rc_file
|
|
|
|
*/
|
|
|
|
static void parse_rc_file( INCL_FILE *pFile, FILE *file )
|
|
|
|
{
|
|
|
|
char *buffer, *include;
|
|
|
|
|
|
|
|
input_line = 0;
|
|
|
|
while ((buffer = get_line( file )))
|
|
|
|
{
|
|
|
|
char quote;
|
|
|
|
char *p = buffer;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
|
|
|
|
if (p[0] == '/' && p[1] == '*') /* check for magic makedep comment */
|
|
|
|
{
|
|
|
|
p += 2;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
if (strncmp( p, "@makedep:", 9 )) continue;
|
|
|
|
p += 9;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
quote = '"';
|
|
|
|
if (*p == quote)
|
|
|
|
{
|
|
|
|
include = ++p;
|
|
|
|
while (*p && *p != quote) p++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
include = p;
|
|
|
|
while (*p && !isspace(*p) && *p != '*') p++;
|
|
|
|
}
|
|
|
|
if (!*p)
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s:%d: error: Malformed makedep comment\n", pFile->filename, input_line );
|
2006-12-26 15:02:03 +01:00
|
|
|
*p = 0;
|
|
|
|
}
|
|
|
|
else /* check for #include */
|
|
|
|
{
|
|
|
|
if (*p++ != '#') continue;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
if (strncmp( p, "include", 7 )) continue;
|
|
|
|
p += 7;
|
|
|
|
while (*p && isspace(*p)) p++;
|
|
|
|
if (*p != '\"' && *p != '<' ) continue;
|
|
|
|
quote = *p++;
|
|
|
|
if (quote == '<') quote = '>';
|
|
|
|
include = p;
|
|
|
|
while (*p && (*p != quote)) p++;
|
2011-09-28 12:55:16 +02:00
|
|
|
if (!*p) fatal_error( "%s:%d: error: Malformed #include directive\n",
|
2006-12-26 15:02:03 +01:00
|
|
|
pFile->filename, input_line );
|
|
|
|
*p = 0;
|
|
|
|
}
|
|
|
|
add_include( pFile, include, input_line, (quote == '>') );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-16 17:19:07 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* parse_generated_idl
|
|
|
|
*/
|
|
|
|
static void parse_generated_idl( INCL_FILE *source )
|
|
|
|
{
|
|
|
|
char *header, *basename;
|
|
|
|
|
|
|
|
basename = xstrdup( source->name );
|
|
|
|
basename[strlen(basename) - 4] = 0;
|
|
|
|
header = strmake( "%s.h", basename );
|
|
|
|
source->filename = xstrdup( source->name );
|
|
|
|
|
|
|
|
if (strendswith( source->name, "_c.c" ))
|
|
|
|
{
|
|
|
|
add_include( source, header, 0, 0 );
|
|
|
|
}
|
|
|
|
else if (strendswith( source->name, "_i.c" ))
|
|
|
|
{
|
|
|
|
add_include( source, "rpc.h", 0, 1 );
|
|
|
|
add_include( source, "rpcndr.h", 0, 1 );
|
|
|
|
add_include( source, "guiddef.h", 0, 1 );
|
|
|
|
}
|
|
|
|
else if (strendswith( source->name, "_p.c" ))
|
|
|
|
{
|
2007-01-19 13:17:17 +01:00
|
|
|
add_include( source, "objbase.h", 0, 1 );
|
2006-10-16 17:19:07 +02:00
|
|
|
add_include( source, "rpcproxy.h", 0, 1 );
|
2008-07-03 12:59:50 +02:00
|
|
|
add_include( source, "wine/exception.h", 0, 1 );
|
2006-10-16 17:19:07 +02:00
|
|
|
add_include( source, header, 0, 0 );
|
|
|
|
}
|
|
|
|
else if (strendswith( source->name, "_s.c" ))
|
|
|
|
{
|
2008-07-03 12:59:50 +02:00
|
|
|
add_include( source, "wine/exception.h", 0, 1 );
|
2006-10-16 17:19:07 +02:00
|
|
|
add_include( source, header, 0, 0 );
|
|
|
|
}
|
2007-12-10 14:26:25 +01:00
|
|
|
else if (!strcmp( source->name, "dlldata.c" ))
|
|
|
|
{
|
|
|
|
add_include( source, "objbase.h", 0, 1 );
|
|
|
|
add_include( source, "rpcproxy.h", 0, 1 );
|
|
|
|
}
|
2006-10-16 17:19:07 +02:00
|
|
|
|
|
|
|
free( header );
|
|
|
|
free( basename );
|
|
|
|
}
|
|
|
|
|
2003-04-11 02:38:56 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* parse_file
|
|
|
|
*/
|
|
|
|
static void parse_file( INCL_FILE *pFile, int src )
|
|
|
|
{
|
|
|
|
FILE *file;
|
|
|
|
|
2006-10-16 17:19:07 +02:00
|
|
|
/* special case for source files generated from idl */
|
|
|
|
if (strendswith( pFile->name, "_c.c" ) ||
|
|
|
|
strendswith( pFile->name, "_i.c" ) ||
|
|
|
|
strendswith( pFile->name, "_p.c" ) ||
|
2007-12-10 14:26:25 +01:00
|
|
|
strendswith( pFile->name, "_s.c" ) ||
|
|
|
|
!strcmp( pFile->name, "dlldata.c" ))
|
2006-10-16 17:19:07 +02:00
|
|
|
{
|
|
|
|
parse_generated_idl( pFile );
|
2008-04-24 23:43:04 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-05 15:02:25 +02:00
|
|
|
/* don't try to open certain types of files */
|
2010-11-30 11:54:41 +01:00
|
|
|
if (strendswith( pFile->name, ".tlb" ) ||
|
2011-05-05 15:02:25 +02:00
|
|
|
strendswith( pFile->name, ".res" ) ||
|
|
|
|
strendswith( pFile->name, ".x" ))
|
2008-04-24 23:43:04 +02:00
|
|
|
{
|
|
|
|
pFile->filename = xstrdup( pFile->name );
|
2006-10-16 17:19:07 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-04-11 02:38:56 +02:00
|
|
|
file = src ? open_src_file( pFile ) : open_include_file( pFile );
|
|
|
|
if (!file) return;
|
2006-09-10 22:04:42 +02:00
|
|
|
|
|
|
|
if (pFile->sourcename && strendswith( pFile->sourcename, ".idl" ))
|
|
|
|
parse_idl_file( pFile, file, 1 );
|
|
|
|
else if (strendswith( pFile->filename, ".idl" ))
|
|
|
|
parse_idl_file( pFile, file, 0 );
|
2006-12-26 15:02:03 +01:00
|
|
|
else if (strendswith( pFile->filename, ".c" ) ||
|
|
|
|
strendswith( pFile->filename, ".h" ) ||
|
|
|
|
strendswith( pFile->filename, ".l" ) ||
|
|
|
|
strendswith( pFile->filename, ".y" ))
|
2006-09-10 22:04:42 +02:00
|
|
|
parse_c_file( pFile, file );
|
2006-12-26 15:02:03 +01:00
|
|
|
else if (strendswith( pFile->filename, ".rc" ))
|
|
|
|
parse_rc_file( pFile, file );
|
1996-11-02 15:24:07 +01:00
|
|
|
fclose(file);
|
1996-10-23 18:59:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-10 14:26:25 +01:00
|
|
|
/*******************************************************************
|
|
|
|
* add_src_file
|
|
|
|
*
|
|
|
|
* Add a source file to the list.
|
|
|
|
*/
|
|
|
|
static INCL_FILE *add_src_file( const char *name )
|
|
|
|
{
|
|
|
|
INCL_FILE *file;
|
|
|
|
|
|
|
|
if (find_src_file( name )) return NULL; /* we already have it */
|
|
|
|
file = xmalloc( sizeof(*file) );
|
|
|
|
memset( file, 0, sizeof(*file) );
|
|
|
|
file->name = xstrdup(name);
|
|
|
|
list_add_tail( &sources, &file->entry );
|
|
|
|
parse_file( file, 1 );
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1996-10-23 18:59:13 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* output_include
|
|
|
|
*/
|
|
|
|
static void output_include( FILE *file, INCL_FILE *pFile,
|
|
|
|
INCL_FILE *owner, int *column )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (pFile->owner == owner) return;
|
2002-02-15 20:57:27 +01:00
|
|
|
if (!pFile->filename) return;
|
1996-10-23 18:59:13 +02:00
|
|
|
pFile->owner = owner;
|
|
|
|
if (*column + strlen(pFile->filename) + 1 > 70)
|
|
|
|
{
|
|
|
|
fprintf( file, " \\\n" );
|
|
|
|
*column = 0;
|
|
|
|
}
|
|
|
|
fprintf( file, " %s", pFile->filename );
|
|
|
|
*column += strlen(pFile->filename) + 1;
|
|
|
|
for (i = 0; i < MAX_INCLUDES; i++)
|
|
|
|
if (pFile->files[i]) output_include( file, pFile->files[i],
|
|
|
|
owner, column );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-09-28 19:43:24 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* output_src
|
|
|
|
*/
|
2008-04-24 22:13:57 +02:00
|
|
|
static int output_src( FILE *file, INCL_FILE *pFile, int *column )
|
1997-09-28 19:43:24 +02:00
|
|
|
{
|
2000-03-19 22:20:16 +01:00
|
|
|
char *obj = xstrdup( pFile->name );
|
2003-04-11 02:38:56 +02:00
|
|
|
char *ext = get_extension( obj );
|
1997-09-28 19:43:24 +02:00
|
|
|
if (ext)
|
|
|
|
{
|
2000-10-23 23:39:39 +02:00
|
|
|
*ext++ = 0;
|
|
|
|
if (!strcmp( ext, "y" )) /* yacc file */
|
1997-09-28 19:43:24 +02:00
|
|
|
{
|
2010-03-16 13:27:51 +01:00
|
|
|
/* add source file dependency for parallel makes */
|
|
|
|
char *header = strmake( "%s.tab.h", obj );
|
|
|
|
if (find_include_file( header )) fprintf( file, "%s.tab.c: %s\n", obj, header );
|
|
|
|
free( header );
|
2005-09-28 20:17:08 +02:00
|
|
|
*column += fprintf( file, "%s.tab.o: %s.tab.c", obj, obj );
|
1997-09-28 19:43:24 +02:00
|
|
|
}
|
2000-10-23 23:39:39 +02:00
|
|
|
else if (!strcmp( ext, "l" )) /* lex file */
|
1997-09-28 19:43:24 +02:00
|
|
|
{
|
2006-09-09 13:16:59 +02:00
|
|
|
*column += fprintf( file, "%s.yy.o: %s.yy.c", obj, obj );
|
1997-09-28 19:43:24 +02:00
|
|
|
}
|
2000-10-23 23:39:39 +02:00
|
|
|
else if (!strcmp( ext, "rc" )) /* resource file */
|
1997-09-28 19:43:24 +02:00
|
|
|
{
|
2011-01-08 12:23:48 +01:00
|
|
|
*column += fprintf( file, "rsrc.pot %s.res: %s", obj, pFile->filename );
|
2000-10-23 23:39:39 +02:00
|
|
|
}
|
2000-11-06 06:32:59 +01:00
|
|
|
else if (!strcmp( ext, "mc" )) /* message file */
|
2000-10-23 23:39:39 +02:00
|
|
|
{
|
2011-01-27 15:13:53 +01:00
|
|
|
*column += fprintf( file, "msg.pot %s.res: %s", obj, pFile->filename );
|
1997-09-28 19:43:24 +02:00
|
|
|
}
|
2003-04-11 02:38:56 +02:00
|
|
|
else if (!strcmp( ext, "idl" )) /* IDL file */
|
|
|
|
{
|
2006-10-16 17:19:07 +02:00
|
|
|
char *name;
|
2008-04-24 22:13:57 +02:00
|
|
|
int got_header = 0;
|
|
|
|
const char *suffix = "cips";
|
2006-10-16 17:19:07 +02:00
|
|
|
|
2008-04-24 22:13:57 +02:00
|
|
|
name = strmake( "%s.tlb", obj );
|
2011-08-01 22:14:36 +02:00
|
|
|
if (find_src_file( name )) *column += fprintf( file, "%s %s_t.res", name, obj );
|
2008-04-24 22:13:57 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
got_header = 1;
|
|
|
|
*column += fprintf( file, "%s.h", obj );
|
|
|
|
}
|
2006-10-16 17:19:07 +02:00
|
|
|
free( name );
|
|
|
|
|
2008-04-24 22:13:57 +02:00
|
|
|
while (*suffix)
|
|
|
|
{
|
|
|
|
name = strmake( "%s_%c.c", obj, *suffix );
|
|
|
|
if (find_src_file( name ))
|
|
|
|
{
|
|
|
|
if (!got_header++) *column += fprintf( file, " %s.h", obj );
|
|
|
|
*column += fprintf( file, " %s", name );
|
|
|
|
}
|
|
|
|
free( name );
|
|
|
|
suffix++;
|
|
|
|
}
|
2010-11-30 11:54:41 +01:00
|
|
|
|
|
|
|
name = strmake( "%s_r.res", obj );
|
|
|
|
if (find_src_file( name )) *column += fprintf( file, " %s", name );
|
|
|
|
free( name );
|
|
|
|
|
2006-10-16 17:19:07 +02:00
|
|
|
*column += fprintf( file, ": %s", pFile->filename );
|
2003-04-11 02:38:56 +02:00
|
|
|
}
|
2010-11-30 11:54:41 +01:00
|
|
|
else if (!strcmp( ext, "tlb" ) || !strcmp( ext, "res" ))
|
2008-04-24 22:13:57 +02:00
|
|
|
{
|
|
|
|
return 0; /* nothing to do for typelib files */
|
|
|
|
}
|
1997-09-28 19:43:24 +02:00
|
|
|
else
|
|
|
|
{
|
2009-06-30 10:25:05 +02:00
|
|
|
OBJECT_EXTENSION *ext;
|
|
|
|
LIST_FOR_EACH_ENTRY( ext, &object_extensions, OBJECT_EXTENSION, entry )
|
|
|
|
*column += fprintf( file, "%s.%s ", obj, ext->extension );
|
|
|
|
*column += fprintf( file, ": %s", pFile->filename );
|
1997-09-28 19:43:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
free( obj );
|
2008-04-24 22:13:57 +02:00
|
|
|
return 1;
|
1997-09-28 19:43:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-12 14:43:15 +01:00
|
|
|
/*******************************************************************
|
|
|
|
* create_temp_file
|
|
|
|
*/
|
|
|
|
static FILE *create_temp_file( char **tmp_name )
|
|
|
|
{
|
|
|
|
char *name = xmalloc( strlen(OutputFileName) + 13 );
|
|
|
|
unsigned int i, id = getpid();
|
|
|
|
int fd;
|
|
|
|
FILE *ret = NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < 100; i++)
|
|
|
|
{
|
|
|
|
sprintf( name, "%s.tmp%08x", OutputFileName, id );
|
2009-02-22 20:39:52 +01:00
|
|
|
if ((fd = open( name, O_RDWR | O_CREAT | O_EXCL, 0666 )) != -1)
|
2009-01-12 14:43:15 +01:00
|
|
|
{
|
|
|
|
ret = fdopen( fd, "w" );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (errno != EEXIST) break;
|
|
|
|
id += 7777;
|
|
|
|
}
|
2011-09-28 12:55:16 +02:00
|
|
|
if (!ret) fatal_error( "%s: error: failed to create output file for '%s'\n",
|
|
|
|
ProgramName, OutputFileName );
|
2009-01-12 14:43:15 +01:00
|
|
|
*tmp_name = name;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1996-10-23 18:59:13 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* output_dependencies
|
|
|
|
*/
|
|
|
|
static void output_dependencies(void)
|
|
|
|
{
|
|
|
|
INCL_FILE *pFile;
|
|
|
|
int i, column;
|
|
|
|
FILE *file = NULL;
|
2009-01-12 14:43:15 +01:00
|
|
|
char *tmp_name = NULL;
|
1996-10-23 18:59:13 +02:00
|
|
|
|
2009-01-12 14:43:15 +01:00
|
|
|
if (Separator && ((file = fopen( OutputFileName, "r" ))))
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2009-01-12 14:43:15 +01:00
|
|
|
char buffer[1024];
|
|
|
|
FILE *tmp_file = create_temp_file( &tmp_name );
|
2010-03-16 13:14:21 +01:00
|
|
|
int found = 0;
|
2009-01-12 14:43:15 +01:00
|
|
|
|
2010-03-16 13:14:21 +01:00
|
|
|
while (fgets( buffer, sizeof(buffer), file ) && !found)
|
2006-09-22 09:25:49 +02:00
|
|
|
{
|
2009-01-12 14:43:15 +01:00
|
|
|
if (fwrite( buffer, 1, strlen(buffer), tmp_file ) != strlen(buffer))
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s: error: failed to write to %s\n", ProgramName, tmp_name );
|
2010-03-16 13:14:21 +01:00
|
|
|
found = !strncmp( buffer, Separator, strlen(Separator) );
|
2006-09-22 09:25:49 +02:00
|
|
|
}
|
2009-01-12 14:43:15 +01:00
|
|
|
fclose( file );
|
|
|
|
file = tmp_file;
|
2010-03-16 13:14:21 +01:00
|
|
|
if (!found && list_head(&sources)) fprintf( file, "\n%s\n", Separator );
|
1996-10-23 18:59:13 +02:00
|
|
|
}
|
2009-01-12 14:43:15 +01:00
|
|
|
else
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2000-12-05 04:57:35 +01:00
|
|
|
if (!(file = fopen( OutputFileName, Separator ? "a" : "w" )))
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
|
|
|
perror( OutputFileName );
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
2006-08-01 12:13:57 +02:00
|
|
|
LIST_FOR_EACH_ENTRY( pFile, &sources, INCL_FILE, entry )
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
1997-09-28 19:43:24 +02:00
|
|
|
column = 0;
|
2008-04-24 22:13:57 +02:00
|
|
|
if (!output_src( file, pFile, &column )) continue;
|
1996-10-23 18:59:13 +02:00
|
|
|
for (i = 0; i < MAX_INCLUDES; i++)
|
|
|
|
if (pFile->files[i]) output_include( file, pFile->files[i],
|
|
|
|
pFile, &column );
|
|
|
|
fprintf( file, "\n" );
|
|
|
|
}
|
2009-01-12 14:43:15 +01:00
|
|
|
fclose( file );
|
|
|
|
|
|
|
|
if (tmp_name)
|
|
|
|
{
|
2009-08-22 07:57:47 +02:00
|
|
|
int ret = rename( tmp_name, OutputFileName );
|
|
|
|
if (ret == -1 && errno == EEXIST)
|
|
|
|
{
|
|
|
|
/* rename doesn't overwrite on windows */
|
|
|
|
unlink( OutputFileName );
|
|
|
|
ret = rename( tmp_name, OutputFileName );
|
|
|
|
}
|
|
|
|
if (ret == -1)
|
2009-01-12 14:43:15 +01:00
|
|
|
{
|
|
|
|
unlink( tmp_name );
|
2011-09-28 12:55:16 +02:00
|
|
|
fatal_error( "%s: error: failed to rename output file to '%s'\n",
|
|
|
|
ProgramName, OutputFileName );
|
2009-01-12 14:43:15 +01:00
|
|
|
}
|
|
|
|
free( tmp_name );
|
|
|
|
}
|
1996-10-23 18:59:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************
|
|
|
|
* parse_option
|
|
|
|
*/
|
|
|
|
static void parse_option( const char *opt )
|
|
|
|
{
|
|
|
|
switch(opt[1])
|
|
|
|
{
|
|
|
|
case 'I':
|
|
|
|
if (opt[2]) add_include_path( opt + 2 );
|
|
|
|
break;
|
|
|
|
case 'C':
|
2006-08-01 12:27:22 +02:00
|
|
|
src_dir = opt + 2;
|
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
top_src_dir = opt + 2;
|
|
|
|
break;
|
|
|
|
case 'T':
|
|
|
|
top_obj_dir = opt + 2;
|
1996-10-23 18:59:13 +02:00
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
if (opt[2]) OutputFileName = opt + 2;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
if (opt[2]) Separator = opt + 2;
|
|
|
|
else Separator = NULL;
|
|
|
|
break;
|
2009-06-30 10:25:05 +02:00
|
|
|
case 'x':
|
|
|
|
if (opt[2]) add_object_extension( opt + 2 );
|
|
|
|
break;
|
1996-10-23 18:59:13 +02:00
|
|
|
default:
|
|
|
|
fprintf( stderr, "Unknown option '%s'\n", opt );
|
|
|
|
fprintf( stderr, Usage, ProgramName );
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************
|
|
|
|
* main
|
|
|
|
*/
|
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
|
|
|
INCL_FILE *pFile;
|
2006-08-01 12:27:22 +02:00
|
|
|
INCL_PATH *path, *next;
|
|
|
|
int i, j;
|
1996-10-23 18:59:13 +02:00
|
|
|
|
2011-09-28 12:55:16 +02:00
|
|
|
if ((ProgramName = strrchr( argv[0], '/' ))) ProgramName++;
|
|
|
|
else ProgramName = argv[0];
|
2006-08-01 12:27:22 +02:00
|
|
|
|
|
|
|
i = 1;
|
|
|
|
while (i < argc)
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2006-08-01 12:27:22 +02:00
|
|
|
if (argv[i][0] == '-')
|
|
|
|
{
|
|
|
|
parse_option( argv[i] );
|
|
|
|
for (j = i; j < argc; j++) argv[j] = argv[j+1];
|
|
|
|
argc--;
|
|
|
|
}
|
|
|
|
else i++;
|
|
|
|
}
|
|
|
|
|
2006-08-01 12:37:18 +02:00
|
|
|
/* ignore redundant source paths */
|
|
|
|
if (src_dir && !strcmp( src_dir, "." )) src_dir = NULL;
|
|
|
|
if (top_src_dir && top_obj_dir && !strcmp( top_src_dir, top_obj_dir )) top_src_dir = NULL;
|
|
|
|
|
2009-06-30 10:25:05 +02:00
|
|
|
/* set the default extension list for object files */
|
|
|
|
if (list_empty( &object_extensions ))
|
|
|
|
add_object_extension( "o" );
|
|
|
|
|
2006-08-01 12:27:22 +02:00
|
|
|
/* get rid of absolute paths that don't point into the source dir */
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE( path, next, &paths, INCL_PATH, entry )
|
|
|
|
{
|
|
|
|
if (path->name[0] != '/') continue;
|
|
|
|
if (top_src_dir)
|
1996-10-23 18:59:13 +02:00
|
|
|
{
|
2007-03-01 15:21:39 +01:00
|
|
|
if (!strncmp( path->name, top_src_dir, strlen(top_src_dir) ) &&
|
|
|
|
path->name[strlen(top_src_dir)] == '/') continue;
|
1996-10-23 18:59:13 +02:00
|
|
|
}
|
2006-08-01 12:27:22 +02:00
|
|
|
list_remove( &path->entry );
|
|
|
|
free( path );
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 1; i < argc; i++)
|
|
|
|
{
|
2007-12-10 14:26:25 +01:00
|
|
|
add_src_file( argv[i] );
|
|
|
|
if (strendswith( argv[i], "_p.c" )) add_src_file( "dlldata.c" );
|
1996-10-23 18:59:13 +02:00
|
|
|
}
|
2006-08-01 12:13:57 +02:00
|
|
|
LIST_FOR_EACH_ENTRY( pFile, &includes, INCL_FILE, entry ) parse_file( pFile, 0 );
|
2006-09-22 09:25:49 +02:00
|
|
|
output_dependencies();
|
1996-10-23 18:59:13 +02:00
|
|
|
return 0;
|
|
|
|
}
|