inputPlugin.c 3.35 KB
Newer Older
Warren Dukes's avatar
Warren Dukes committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* the Music Player Daemon (MPD)
 * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu)
 * This project's homepage is: http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

19 20 21
#include "inputPlugin.h"

#include "list.h"
22
#include "myfprintf.h"
23 24

#include <stdlib.h>
25 26 27
#include <string.h>

static List * inputPlugin_list = NULL;
28

29
void loadInputPlugin(InputPlugin * inputPlugin) {
Warren Dukes's avatar
Warren Dukes committed
30 31 32
	if(!inputPlugin) return;
	if(!inputPlugin->name) return;

33 34
	if(inputPlugin->initFunc && inputPlugin->initFunc() < 0) return;

35 36 37 38
	insertInList(inputPlugin_list, inputPlugin->name, (void *)inputPlugin);
}

void unloadInputPlugin(InputPlugin * inputPlugin) {
39
	if(inputPlugin->finishFunc) inputPlugin->finishFunc();
40 41 42 43 44
	deleteFromList(inputPlugin_list, inputPlugin->name);
}

static int stringFoundInStringArray(char ** array, char * suffix) {
	while(array && *array) {
45
		if(strcasecmp(*array, suffix) == 0) return 1;
46 47 48 49 50 51 52 53 54 55
		array++;
	}
	
	return 0;
}

InputPlugin * getInputPluginFromSuffix(char * suffix) {
	ListNode * node = inputPlugin_list->firstNode;
	InputPlugin * plugin = NULL;

Warren Dukes's avatar
Warren Dukes committed
56 57
	if(suffix == NULL) return NULL;

58 59 60 61 62
	while(node != NULL) {
		plugin = node->data;
		if(stringFoundInStringArray(plugin->suffixes, suffix)) {
			return plugin;
		}
Warren Dukes's avatar
Warren Dukes committed
63
		node = node->nextNode;
64 65 66 67 68 69 70 71 72
	}

	return NULL;
}

InputPlugin * getInputPluginFromMimeType(char * mimeType) {
	ListNode * node = inputPlugin_list->firstNode;
	InputPlugin * plugin = NULL;

73 74
	if(mimeType == NULL) return NULL;

75 76 77 78 79
	while(node != NULL) {
		plugin = node->data;
		if(stringFoundInStringArray(plugin->mimeTypes, mimeType)) {
			return plugin;
		}
Warren Dukes's avatar
Warren Dukes committed
80
		node = node->nextNode;
81 82 83 84 85 86 87 88 89 90 91 92 93
	}

	return NULL;
}

InputPlugin * getInputPluginFromName(char * name) {
	void * plugin = NULL;

	findInList(inputPlugin_list, name, &plugin);

	return (InputPlugin *)plugin;
}

94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
void printAllInputPluginSuffixes(FILE * fp) {
	ListNode * node = inputPlugin_list->firstNode;
	InputPlugin * plugin;
	char ** suffixes;

	while(node) {
		plugin = (InputPlugin *)node->data;
		suffixes = plugin->suffixes;
		while(suffixes && *suffixes) {
			myfprintf(fp, "%s ", *suffixes);
			suffixes++;
		}
		node = node->nextNode;
	}
	myfprintf(fp, "\n");
}

Warren Dukes's avatar
Warren Dukes committed
111 112
extern InputPlugin mp3Plugin;
extern InputPlugin oggPlugin;
Warren Dukes's avatar
Warren Dukes committed
113
extern InputPlugin flacPlugin;
Warren Dukes's avatar
Warren Dukes committed
114
extern InputPlugin audiofilePlugin;
Warren Dukes's avatar
Warren Dukes committed
115
extern InputPlugin mp4Plugin;
116
extern InputPlugin mpcPlugin;
Warren Dukes's avatar
Warren Dukes committed
117
extern InputPlugin aacPlugin;
118
extern InputPlugin modPlugin;
Warren Dukes's avatar
Warren Dukes committed
119

120
void initInputPlugins() {
121
	inputPlugin_list = makeList(NULL, 1);
122 123

	/* load plugins here */
Warren Dukes's avatar
Warren Dukes committed
124 125
	loadInputPlugin(&mp3Plugin);
	loadInputPlugin(&oggPlugin);
Warren Dukes's avatar
Warren Dukes committed
126
	loadInputPlugin(&flacPlugin);
Warren Dukes's avatar
Warren Dukes committed
127
	loadInputPlugin(&audiofilePlugin);
Warren Dukes's avatar
Warren Dukes committed
128
	loadInputPlugin(&mp4Plugin);
129
	loadInputPlugin(&mpcPlugin);
130
	loadInputPlugin(&modPlugin);
131 132 133 134 135
}

void finishInputPlugins() {
	freeList(inputPlugin_list);
}