An event_id has been added to all events, to ensure an event with
[ahxm.git] / support.c
blob64b0d8dfa09d3e2d477396e3402c315f4d50e79d
1 /*
3 Ann Hell Ex Machina - Music Software
4 Copyright (C) 2003/2005 Angel Ortega <angel@triptico.com>
6 support.c - Miscellaneous support functions
8 This program 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 2
11 of the License, or (at your option) any later version.
13 This program 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 License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 http://www.triptico.com
26 #include "config.h"
28 #include <stdio.h>
29 #include <string.h>
30 #include <stdlib.h>
32 #include "annhell.h"
34 /*******************
35 Data
36 ********************/
38 static char ** library_path=NULL;
39 static int n_library_paths=0;
41 static char located_file[2048];
43 /* global debugging flag */
44 int debug=0;
46 /*******************
47 Code
48 ********************/
50 /**
51 * add_to_library_path - Adds a directory path to the search path
52 * @path: the directory path
53 * @strip: flag to strip the upper level
55 * Adds @path to the list of searchable paths for path_fopen(),
56 * optionally stripping the upper level if @strip is set.
57 * The last part of the path is stripped before being stored,
58 * and duplication is avoided.
60 void add_to_library_path(char * path, int strip)
62 int n;
63 char * ptr;
65 /* if path starts with ~, pre-prend $HOME */
66 if(*path == '~')
68 char * new;
69 char * home;
71 if((home=getenv("HOME")) == NULL)
72 return;
74 if((new=malloc(strlen(home) + strlen(path) + 2)) == NULL)
75 return;
77 strcpy(new, home);
78 strcat(new, "/");
79 strcat(new, path + 1);
81 path=new;
83 else
85 /* just duplicate */
86 path=strdup(path);
89 /* if no directory path remains, abort */
90 if((ptr=strrchr(path, '/')) == NULL)
92 free(path);
93 return;
96 /* strip the filename part */
97 if(strip) *ptr='\0';
99 /* now try to find if that path is already stored */
100 for(n=0;n < n_library_paths;n++)
102 if(strcmp(path, library_path[n]) == 0)
104 /* found; free and return */
105 free(path);
106 return;
110 /* add room for the new path */
111 n_library_paths++;
112 library_path=(char **)realloc(library_path,
113 n_library_paths * sizeof(char *));
115 /* store */
116 library_path[n_library_paths - 1]=path;
121 * path_fopen - Opens a file, optionally searching in a path list
122 * @filename: the file name
123 * @mode: the file mode
125 * Opens a file. If the file is found as is, it's opened;
126 * otherwise, the full list of directory paths maintained by
127 * add_to_library_path() is searched until it's found or the
128 * end of the list is reached. Whenever a file
129 * is successfully opened, its path is also stored.
131 FILE * path_fopen(char * filename, char * mode)
133 int n;
134 FILE * f=NULL;
136 /* try first here */
137 if((f=fopen(filename, mode)) != NULL)
139 strncpy(located_file, filename, sizeof(located_file));
140 located_file[sizeof(located_file) - 1]='\0';
142 add_to_library_path(filename, 1);
143 return(f);
146 /* couldn't open; try concatenating all stored paths */
147 for(n=n_library_paths - 1;n >= 0;n--)
149 snprintf(located_file, sizeof(located_file), "%s/%s",
150 library_path[n], filename);
151 located_file[sizeof(located_file) - 1]='\0';
153 if((f=fopen(located_file, mode)) != NULL)
155 add_to_library_path(located_file, 1);
156 break;
160 return(f);
165 * locate_file - Locates a file inside the path
166 * @filename: the file to be located
168 * Locates a file inside the library path maintained by path_fopen()
169 * and add_library_path(). If the file is found, a pointer to a static
170 * buffer containing the real path of the file is returned, or
171 * NULL otherwise.
173 char * locate_file(char * filename)
175 FILE * f;
177 if((f=path_fopen(filename, "r")) == NULL)
178 return(NULL);
180 fclose(f);
181 return(located_file);