All useful code from wav.c have been ported into main.c (Closes: #1075, #1076).
[ahxm.git] / support.c
bloba78d1d448230c48fdeb30b5c0f4550552ea8d381
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 /*******************
42 Code
43 ********************/
45 /**
46 * add_to_library_path - Adds a directory path to the search path
47 * @path: the directory path
49 * Adds @path to the list of searchable paths for path_fopen().
50 * The last part of the path is stripped before being stored,
51 * and duplication is avoided.
53 void add_to_library_path(char * path)
55 int n;
56 char * ptr;
58 /* duplicate */
59 path=strdup(path);
61 /* if no directory path remains, abort */
62 if((ptr=strrchr(path, '/')) == NULL)
64 free(path);
65 return;
68 /* strip the filename part */
69 *ptr='\0';
71 /* now try to find if that path is already stored */
72 for(n=0;n < n_library_paths;n++)
74 if(strcmp(path, library_path[n]) == 0)
76 /* found; free and return */
77 free(path);
78 return;
82 /* add room for the new path */
83 n_library_paths++;
84 library_path=(char **)realloc(library_path,
85 n_library_paths * sizeof(char *));
87 /* store */
88 library_path[n_library_paths - 1]=path;
92 /**
93 * path_fopen - Opens a file, optionally searching in a path list
94 * @filename: the file name
95 * @mode: the file mode
97 * Opens a file. If the file is found as is, it's opened;
98 * otherwise, the full list of directory paths maintained by
99 * add_to_library_path() is searched until it's found or the
100 * end of the list is reached. Whenever a file
101 * is successfully opened, its path is also stored.
103 FILE * path_fopen(char * filename, char * mode)
105 int n;
106 FILE * f=NULL;
108 /* try first here */
109 if((f=fopen(filename, mode)) != NULL)
111 add_to_library_path(filename);
112 return(f);
115 /* couldn't open; try concatenating all stored paths */
116 for(n=n_library_paths - 1;n >= 0;n--)
118 char tmp[4096];
120 snprintf(tmp, sizeof(tmp) - 1, "%s/%s",
121 library_path[n], filename);
122 tmp[sizeof(tmp) - 1]='\0';
124 if((f=fopen(tmp, mode)) != NULL)
126 add_to_library_path(tmp);
127 break;
131 return(f);