1 /*****************************************************************************/
5 /* Include path handling for the ca65 macro assembler */
9 /* (C) 2000 Ullrich von Bassewitz */
11 /* D-70597 Stuttgart */
12 /* EMail: uz@musoftware.de */
15 /* This software is provided 'as-is', without any expressed or implied */
16 /* warranty. In no event will the authors be held liable for any damages */
17 /* arising from the use of this software. */
19 /* Permission is granted to anyone to use this software for any purpose, */
20 /* including commercial applications, and to alter it and redistribute it */
21 /* freely, subject to the following restrictions: */
23 /* 1. The origin of this software must not be misrepresented; you must not */
24 /* claim that you wrote the original software. If you use this software */
25 /* in a product, an acknowledgment in the product documentation would be */
26 /* appreciated but is not required. */
27 /* 2. Altered source versions must be plainly marked as such, and must not */
28 /* be misrepresented as being the original software. */
29 /* 3. This notice may not be removed or altered from any source */
32 /*****************************************************************************/
39 /* Microsoft compiler */
46 #include "../common/xmalloc.h"
52 /*****************************************************************************/
54 /*****************************************************************************/
58 static char* IncludePath = 0;
62 /*****************************************************************************/
64 /*****************************************************************************/
68 static char* Add (char* Orig, const char* New)
69 /* Create a new path from Orig and New, delete Orig, return the result */
71 unsigned OrigLen, NewLen;
74 /* Get the length of the original string */
75 OrigLen = Orig? strlen (Orig) : 0;
77 /* Get the length of the new path */
78 NewLen = strlen (New);
80 /* Check for a trailing path separator and remove it */
81 if (NewLen > 0 && (New [NewLen-1] == '\\' || New [NewLen-1] == '/')) {
85 /* Allocate memory for the new string */
86 NewPath = xmalloc (OrigLen + NewLen + 2);
88 /* Copy the strings */
89 memcpy (NewPath, Orig, OrigLen);
90 memcpy (NewPath+OrigLen, New, NewLen);
91 NewPath [OrigLen+NewLen+0] = ';';
92 NewPath [OrigLen+NewLen+1] = '\0';
94 /* Delete the original path */
97 /* Return the new path */
103 static char* Find (const char* Path, const char* File)
104 /* Search for a file in a list of directories. If found, return the complete
105 * name including the path in a malloced data area, if not found, return 0.
110 char PathName [FILENAME_MAX];
112 /* Initialize variables */
113 Max = sizeof (PathName) - strlen (File) - 2;
119 /* Handle a NULL pointer as replacement for an empty string */
124 /* Start the search */
126 /* Copy the next path element into the buffer */
128 while (*P != '\0' && *P != ';' && Count < Max) {
129 PathName [Count++] = *P++;
132 /* Add a path separator and the filename */
134 PathName [Count++] = '/';
136 strcpy (PathName + Count, File);
138 /* Check if this file exists */
139 if (access (PathName, 0) == 0) {
140 /* The file exists */
141 return xstrdup (PathName);
144 /* Skip a list separator if we have one */
156 void AddIncludePath (const char* NewPath)
157 /* Add a new include path to the existing one */
159 /* Allow a NULL path */
161 IncludePath = Add (IncludePath, NewPath);
167 char* FindInclude (const char* Name)
168 /* Find an include file. Return a pointer to a malloced area that contains
169 * the complete path, if found, return 0 otherwise.
172 /* Search in the include directories */
173 return Find (IncludePath, Name);