2006-04-20 00:08:12 -04:00
|
|
|
/*
|
|
|
|
* $Id: $
|
|
|
|
* Simple plug-in api for output, transcode, and scanning plug-ins
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Ron Pedde (ron@pedde.com)
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2006-04-28 01:10:06 -04:00
|
|
|
#define _XOPEN_SOURCE 500 /** unix98? pthread_once_t, etc */
|
|
|
|
|
2006-04-20 00:08:12 -04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <pthread.h>
|
2006-04-20 02:52:21 -04:00
|
|
|
#include <regex.h>
|
2006-04-20 00:08:12 -04:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2006-04-21 02:43:41 -04:00
|
|
|
#include "conf.h"
|
|
|
|
#include "db-generic.h"
|
|
|
|
#include "dispatch.h"
|
2006-04-20 00:08:12 -04:00
|
|
|
#include "err.h"
|
|
|
|
#include "os.h"
|
|
|
|
#include "plugin.h"
|
2006-04-25 19:13:04 -04:00
|
|
|
#include "rend.h"
|
2006-04-21 02:43:41 -04:00
|
|
|
#include "smart-parser.h"
|
2006-04-20 02:52:21 -04:00
|
|
|
#include "xml-rpc.h"
|
|
|
|
#include "webserver.h"
|
2006-05-27 04:02:39 -04:00
|
|
|
#include "ff-plugins.h"
|
2006-04-20 00:08:12 -04:00
|
|
|
|
|
|
|
typedef struct tag_pluginentry {
|
|
|
|
void *phandle;
|
2006-04-20 02:52:21 -04:00
|
|
|
regex_t regex;
|
2006-05-28 00:06:14 -04:00
|
|
|
PLUGIN_INFO *pinfo;
|
2006-04-20 00:08:12 -04:00
|
|
|
struct tag_pluginentry *next;
|
|
|
|
} PLUGIN_ENTRY;
|
|
|
|
|
|
|
|
/* Globals */
|
2006-05-05 03:38:13 -04:00
|
|
|
static pthread_key_t _plugin_lock_key;
|
2006-04-20 02:52:21 -04:00
|
|
|
static PLUGIN_ENTRY _plugin_list;
|
|
|
|
static int _plugin_initialized = 0;
|
2006-05-28 00:06:14 -04:00
|
|
|
static char *_plugin_ssc_codecs = NULL;
|
2006-04-22 16:03:26 -04:00
|
|
|
static pthread_rwlock_t _plugin_lock;
|
2006-04-22 14:22:24 -04:00
|
|
|
|
2006-04-20 00:08:12 -04:00
|
|
|
static char* _plugin_error_list[] = {
|
|
|
|
"Success.",
|
|
|
|
"Could not load plugin: %s",
|
|
|
|
"Plugin missing required export: plugin_type/plugin_ver"
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Forwards */
|
2006-04-22 14:22:24 -04:00
|
|
|
void _plugin_readlock(void);
|
|
|
|
void _plugin_writelock(void);
|
2006-04-20 00:08:12 -04:00
|
|
|
void _plugin_unlock(void);
|
|
|
|
int _plugin_error(char **pe, int error, ...);
|
2006-05-05 03:38:13 -04:00
|
|
|
void _plugin_free(int *pi);
|
2006-05-28 00:06:14 -04:00
|
|
|
void _plugin_recalc_codecs(void);
|
2006-04-20 00:08:12 -04:00
|
|
|
|
2006-04-23 00:42:18 -04:00
|
|
|
/* webserver helpers */
|
|
|
|
char *pi_ws_uri(WS_CONNINFO *pwsc);
|
|
|
|
void pi_ws_close(WS_CONNINFO *pwsc);
|
2006-04-25 06:02:43 -04:00
|
|
|
int pi_ws_fd(WS_CONNINFO *pwsc);
|
2006-04-23 00:42:18 -04:00
|
|
|
|
|
|
|
/* misc helpers */
|
|
|
|
char *pi_server_ver(void);
|
|
|
|
int pi_server_name(char *, int *);
|
|
|
|
void pi_log(int, char *, ...);
|
|
|
|
|
|
|
|
/* db helpers */
|
|
|
|
int pi_db_count(void);
|
2006-05-27 04:02:39 -04:00
|
|
|
int pi_db_enum_start(char **pe, DB_QUERY *pinfo);
|
|
|
|
int pi_db_enum_fetch_row(char **pe, char ***row, DB_QUERY *pinfo);
|
2006-04-23 00:42:18 -04:00
|
|
|
int pi_db_enum_end(char **pe);
|
2006-05-27 04:02:39 -04:00
|
|
|
void pi_db_enum_dispose(char **pe, DB_QUERY *pinfo);
|
|
|
|
void pi_stream(WS_CONNINFO *pwsc, char *id);
|
|
|
|
|
2006-05-19 00:50:45 -04:00
|
|
|
void pi_conf_dispose_string(char *str);
|
2006-04-23 00:42:18 -04:00
|
|
|
|
|
|
|
PLUGIN_INPUT_FN pi = {
|
|
|
|
pi_ws_uri,
|
|
|
|
pi_ws_close,
|
2006-04-25 06:02:43 -04:00
|
|
|
ws_returnerror,
|
|
|
|
ws_getvar,
|
|
|
|
ws_writefd,
|
|
|
|
ws_addresponseheader,
|
|
|
|
ws_emitheaders,
|
|
|
|
pi_ws_fd,
|
|
|
|
ws_getrequestheader,
|
2006-04-25 16:46:03 -04:00
|
|
|
ws_writebinary,
|
2006-04-23 00:42:18 -04:00
|
|
|
|
|
|
|
pi_server_ver,
|
|
|
|
pi_server_name,
|
|
|
|
pi_log,
|
2006-05-31 02:07:42 -04:00
|
|
|
plugin_ssc_should_transcode,
|
2006-04-23 00:42:18 -04:00
|
|
|
|
|
|
|
pi_db_count,
|
|
|
|
pi_db_enum_start,
|
|
|
|
pi_db_enum_fetch_row,
|
|
|
|
pi_db_enum_end,
|
2006-05-27 04:02:39 -04:00
|
|
|
pi_db_enum_dispose,
|
2006-04-23 00:42:18 -04:00
|
|
|
pi_stream,
|
|
|
|
|
2006-05-19 00:50:45 -04:00
|
|
|
conf_alloc_string,
|
|
|
|
pi_conf_dispose_string
|
2006-04-23 00:42:18 -04:00
|
|
|
};
|
|
|
|
|
2006-05-19 00:50:45 -04:00
|
|
|
|
2006-04-22 14:22:24 -04:00
|
|
|
/**
|
|
|
|
* initialize stuff for plugins
|
|
|
|
*
|
|
|
|
* @returns TRUE on success, FALSE otherwise
|
|
|
|
*/
|
|
|
|
int plugin_init(void) {
|
|
|
|
pthread_rwlock_init(&_plugin_lock,NULL);
|
2006-05-05 03:38:13 -04:00
|
|
|
pthread_key_create(&_plugin_lock_key, (void*)_plugin_free);
|
|
|
|
|
2006-04-22 14:22:24 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-05-05 03:38:13 -04:00
|
|
|
/**
|
|
|
|
* free the tls
|
|
|
|
*/
|
|
|
|
void _plugin_free(int *pi) {
|
|
|
|
if(pi)
|
|
|
|
free(pi);
|
|
|
|
}
|
|
|
|
|
2006-04-22 14:22:24 -04:00
|
|
|
/**
|
|
|
|
* deinitialize stuff for plugins
|
|
|
|
*
|
|
|
|
* @returns TRUE on success, FALSE otherwise
|
|
|
|
*/
|
|
|
|
int plugin_deinit(void) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2006-05-05 03:38:13 -04:00
|
|
|
* lock the plugin_mutex. As it turns out, there might be one thread that calls
|
|
|
|
* multiple plug-ins. So we need to be able to just get one readlock, rather than
|
|
|
|
* multiple. so we'll keep a tls counter.
|
|
|
|
*
|
|
|
|
* NO DPRINTFING IN HERE!
|
2006-04-22 14:22:24 -04:00
|
|
|
*/
|
|
|
|
void _plugin_readlock(void) {
|
|
|
|
int err;
|
2006-05-05 03:38:13 -04:00
|
|
|
int *current_count;
|
|
|
|
|
|
|
|
current_count = pthread_getspecific(_plugin_lock_key);
|
|
|
|
if(!current_count) {
|
|
|
|
current_count = (int*)malloc(sizeof(int));
|
|
|
|
if(!current_count) {
|
|
|
|
/* hrm */
|
|
|
|
DPRINTF(E_FATAL,L_PLUG,"Malloc error in _plugin_readlock\n");
|
|
|
|
}
|
2006-04-22 14:22:24 -04:00
|
|
|
|
2006-05-05 03:38:13 -04:00
|
|
|
*current_count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF(E_DBG,L_PLUG,"Current lock level: %d\n",*current_count);
|
|
|
|
if(!(*current_count)) {
|
|
|
|
(*current_count)++;
|
|
|
|
pthread_setspecific(_plugin_lock_key,(void*)current_count);
|
|
|
|
|
|
|
|
if((err=pthread_rwlock_rdlock(&_plugin_lock))) {
|
|
|
|
DPRINTF(E_FATAL,L_PLUG,"cannot lock plugin lock: %s\n",strerror(err));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
(*current_count)++;
|
|
|
|
pthread_setspecific(_plugin_lock_key,(void*)current_count);
|
2006-04-22 14:22:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-20 00:08:12 -04:00
|
|
|
/**
|
|
|
|
* lock the plugin_mutex
|
|
|
|
*/
|
2006-04-22 14:22:24 -04:00
|
|
|
void _plugin_writelock(void) {
|
2006-04-20 00:08:12 -04:00
|
|
|
int err;
|
2006-05-05 03:38:13 -04:00
|
|
|
int *current_count;
|
|
|
|
|
|
|
|
current_count = pthread_getspecific(_plugin_lock_key);
|
|
|
|
if(!current_count) {
|
|
|
|
current_count = (int*)malloc(sizeof(int));
|
|
|
|
if(!current_count) {
|
|
|
|
DPRINTF(E_FATAL,L_PLUG,"Malloc error in _plugin_readlock\n");
|
|
|
|
}
|
2006-04-20 00:08:12 -04:00
|
|
|
|
2006-05-05 03:38:13 -04:00
|
|
|
*current_count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF(E_DBG,L_PLUG,"Current lock level: %d\n",*current_count);
|
|
|
|
|
|
|
|
if(!(*current_count)) {
|
|
|
|
(*current_count)++;
|
|
|
|
pthread_setspecific(_plugin_lock_key,(void*)current_count);
|
|
|
|
|
|
|
|
if((err=pthread_rwlock_wrlock(&_plugin_lock))) {
|
|
|
|
DPRINTF(E_FATAL,L_PLUG,"cannot lock plugin lock: %s\n",strerror(err));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
(*current_count)++;
|
|
|
|
pthread_setspecific(_plugin_lock_key,(void*)current_count);
|
2006-04-20 00:08:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* unlock the plugin_mutex
|
|
|
|
*/
|
|
|
|
void _plugin_unlock(void) {
|
|
|
|
int err;
|
2006-05-05 03:38:13 -04:00
|
|
|
int *current_count;
|
|
|
|
|
|
|
|
current_count = pthread_getspecific(_plugin_lock_key);
|
|
|
|
if(!current_count) {
|
|
|
|
DPRINTF(E_FATAL,L_PLUG,"_plug_unlock without tls. wtf?\n");
|
|
|
|
}
|
2006-04-20 00:08:12 -04:00
|
|
|
|
2006-05-05 03:38:13 -04:00
|
|
|
(*current_count)--;
|
|
|
|
|
|
|
|
if(!(*current_count)) {
|
|
|
|
pthread_setspecific(_plugin_lock_key,(void*)current_count);
|
|
|
|
if((err=pthread_rwlock_unlock(&_plugin_lock))) {
|
|
|
|
DPRINTF(E_FATAL,L_PLUG,"cannot unlock plugin lock: %s\n",strerror(err));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
pthread_setspecific(_plugin_lock_key,(void*)current_count);
|
2006-04-20 00:08:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* return the error
|
|
|
|
*
|
|
|
|
* @param pe buffer to store the error string in
|
|
|
|
* @param error error to return
|
|
|
|
* @returns the specified error,to thelp with returns
|
|
|
|
*/
|
|
|
|
int _plugin_error(char **pe, int error, ...) {
|
|
|
|
va_list ap;
|
|
|
|
char errbuf[1024];
|
|
|
|
|
|
|
|
if(!pe)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
va_start(ap, error);
|
|
|
|
vsnprintf(errbuf, sizeof(errbuf), _plugin_error_list[error], ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
DPRINTF(E_SPAM,L_PLUG,"Raising error: %s\n",errbuf);
|
|
|
|
|
|
|
|
*pe = strdup(errbuf);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
/**
|
|
|
|
* walk through the installed plugins and recalculate
|
|
|
|
* the codec string
|
|
|
|
*/
|
|
|
|
void _plugin_recalc_codecs(void) {
|
|
|
|
PLUGIN_ENTRY *ppi;
|
2006-05-28 02:11:37 -04:00
|
|
|
size_t size=0;
|
2006-05-28 00:06:14 -04:00
|
|
|
|
|
|
|
_plugin_writelock();
|
|
|
|
|
|
|
|
ppi = _plugin_list.next;
|
|
|
|
while(ppi) {
|
|
|
|
if(ppi->pinfo->type & PLUGIN_TRANSCODE) {
|
|
|
|
if(size) size++;
|
|
|
|
size += strlen(ppi->pinfo->codeclist);
|
|
|
|
}
|
|
|
|
ppi=ppi->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(_plugin_ssc_codecs) {
|
|
|
|
free(_plugin_ssc_codecs);
|
|
|
|
}
|
|
|
|
|
|
|
|
_plugin_ssc_codecs = (char*)malloc(size+1);
|
|
|
|
if(!_plugin_ssc_codecs) {
|
|
|
|
DPRINTF(E_FATAL,L_PLUG,"_plugin_recalc_codecs: malloc\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(_plugin_ssc_codecs,0,size+1);
|
|
|
|
|
|
|
|
ppi = _plugin_list.next;
|
|
|
|
while(ppi) {
|
|
|
|
if(ppi->pinfo->type & PLUGIN_TRANSCODE) {
|
|
|
|
if(strlen(_plugin_ssc_codecs)) {
|
|
|
|
strcat(_plugin_ssc_codecs,",");
|
|
|
|
}
|
|
|
|
strcat(_plugin_ssc_codecs,ppi->pinfo->codeclist);
|
|
|
|
}
|
|
|
|
ppi=ppi->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF(E_DBG,L_PLUG,"New transcode codec list: %s\n",_plugin_ssc_codecs);
|
|
|
|
_plugin_unlock();
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-04-20 00:08:12 -04:00
|
|
|
/**
|
|
|
|
* load a specified plugin.
|
|
|
|
*
|
|
|
|
* @param pe pointer to error string returned (if error)
|
|
|
|
* @param plugin path to plugin to load
|
|
|
|
*
|
|
|
|
* return PLUGIN_E_SUCCESS, or not, with pe set
|
|
|
|
*/
|
|
|
|
int plugin_load(char **pe, char *path) {
|
|
|
|
PLUGIN_ENTRY *ppi;
|
|
|
|
void *phandle;
|
2006-05-28 00:06:14 -04:00
|
|
|
PLUGIN_INFO *(*info_func)(PLUGIN_INPUT_FN *);
|
2006-04-20 02:52:21 -04:00
|
|
|
PLUGIN_INFO *pinfo;
|
2006-04-20 00:08:12 -04:00
|
|
|
|
|
|
|
DPRINTF(E_DBG,L_PLUG,"Attempting to load plugin %s\n",path);
|
|
|
|
|
2006-04-20 02:52:21 -04:00
|
|
|
phandle = os_loadlib(pe, path);
|
2006-04-20 00:08:12 -04:00
|
|
|
if(!phandle) {
|
2006-04-20 02:52:21 -04:00
|
|
|
DPRINTF(E_INF,L_PLUG,"Couldn't get lib handle for %s\n",path);
|
|
|
|
return PLUGIN_E_NOLOAD;
|
2006-04-20 00:08:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ppi = (PLUGIN_ENTRY*)malloc(sizeof(PLUGIN_ENTRY));
|
|
|
|
memset(ppi,0x00,sizeof(PLUGIN_ENTRY));
|
|
|
|
|
|
|
|
ppi->phandle = phandle;
|
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
info_func = (PLUGIN_INFO*(*)(PLUGIN_INPUT_FN*)) os_libfunc(pe, phandle,"plugin_info");
|
2006-04-20 02:52:21 -04:00
|
|
|
if(info_func == NULL) {
|
|
|
|
DPRINTF(E_INF,L_PLUG,"Couldn't get info_func for %s\n",path);
|
2006-05-28 00:06:14 -04:00
|
|
|
os_unload(phandle);
|
|
|
|
free(ppi);
|
2006-04-20 02:52:21 -04:00
|
|
|
return PLUGIN_E_BADFUNCS;
|
|
|
|
}
|
2006-04-20 00:08:12 -04:00
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
pinfo = info_func(&pi);
|
|
|
|
ppi->pinfo = pinfo;
|
2006-04-20 02:52:21 -04:00
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
if(!pinfo) {
|
|
|
|
if(pe) *pe = strdup("plugin declined to load");
|
|
|
|
os_unload(phandle);
|
|
|
|
free(ppi);
|
|
|
|
return PLUGIN_E_NOLOAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(pinfo->type & PLUGIN_OUTPUT) {
|
2006-04-20 02:52:21 -04:00
|
|
|
/* build the regex */
|
|
|
|
if(regcomp(&ppi->regex,pinfo->url,REG_EXTENDED | REG_NOSUB)) {
|
|
|
|
DPRINTF(E_LOG,L_PLUG,"Bad regex in %s: %s\n",path,pinfo->url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
DPRINTF(E_INF,L_PLUG,"Loaded plugin %s (%s)\n",path,pinfo->server);
|
|
|
|
|
2006-04-22 14:22:24 -04:00
|
|
|
_plugin_writelock();
|
2006-05-28 00:06:14 -04:00
|
|
|
|
2006-04-20 02:52:21 -04:00
|
|
|
if(!_plugin_initialized) {
|
|
|
|
_plugin_initialized = 1;
|
|
|
|
memset((void*)&_plugin_list,0,sizeof(_plugin_list));
|
|
|
|
}
|
|
|
|
|
2006-04-20 00:08:12 -04:00
|
|
|
ppi->next = _plugin_list.next;
|
|
|
|
_plugin_list.next = ppi;
|
|
|
|
|
|
|
|
_plugin_unlock();
|
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
_plugin_recalc_codecs();
|
2006-04-20 00:08:12 -04:00
|
|
|
return PLUGIN_E_SUCCESS;
|
|
|
|
}
|
2006-04-20 02:52:21 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* check to see if we want to dispatch a particular url
|
|
|
|
*
|
|
|
|
* @param pwsc the connection info (including uri) to check
|
|
|
|
* @returns TRUE if we want to handle it
|
|
|
|
*/
|
|
|
|
int plugin_url_candispatch(WS_CONNINFO *pwsc) {
|
|
|
|
PLUGIN_ENTRY *ppi;
|
2006-05-05 03:38:13 -04:00
|
|
|
|
|
|
|
DPRINTF(E_DBG,L_PLUG,"Entering candispatch\n");
|
2006-04-20 02:52:21 -04:00
|
|
|
|
2006-04-22 14:22:24 -04:00
|
|
|
_plugin_readlock();
|
2006-04-20 02:52:21 -04:00
|
|
|
ppi = _plugin_list.next;
|
|
|
|
while(ppi) {
|
2006-05-28 00:06:14 -04:00
|
|
|
if(ppi->pinfo->type & PLUGIN_OUTPUT) {
|
2006-04-20 02:52:21 -04:00
|
|
|
if(!regexec(&ppi->regex,pwsc->uri,0,NULL,0)) {
|
|
|
|
/* we have a winner */
|
|
|
|
_plugin_unlock();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2006-05-05 03:38:13 -04:00
|
|
|
ppi = ppi->next;
|
2006-04-20 02:52:21 -04:00
|
|
|
}
|
|
|
|
_plugin_unlock();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* actually DISPATCH the hander we said we wanted
|
|
|
|
*
|
|
|
|
* @param pwsc the connection info (including uri) to check
|
|
|
|
* @returns TRUE if we want to handle it
|
|
|
|
*/
|
|
|
|
void plugin_url_handle(WS_CONNINFO *pwsc) {
|
|
|
|
PLUGIN_ENTRY *ppi;
|
|
|
|
void (*disp_fn)(WS_CONNINFO *pwsc);
|
|
|
|
|
2006-04-22 14:22:24 -04:00
|
|
|
_plugin_readlock();
|
2006-04-20 02:52:21 -04:00
|
|
|
ppi = _plugin_list.next;
|
|
|
|
while(ppi) {
|
2006-05-28 00:06:14 -04:00
|
|
|
if(ppi->pinfo->type & PLUGIN_OUTPUT) {
|
2006-04-20 02:52:21 -04:00
|
|
|
if(!regexec(&ppi->regex,pwsc->uri,0,NULL,0)) {
|
|
|
|
/* we have a winner */
|
|
|
|
DPRINTF(E_DBG,L_PLUG,"Dispatching %s to %s\n", pwsc->uri,
|
2006-05-28 00:06:14 -04:00
|
|
|
ppi->pinfo->server);
|
2006-04-20 02:52:21 -04:00
|
|
|
|
|
|
|
/* so functions must be a tag_plugin_output_fn */
|
2006-05-28 00:06:14 -04:00
|
|
|
disp_fn=(ppi->pinfo->output_fns)->handler;
|
2006-04-20 02:52:21 -04:00
|
|
|
disp_fn(pwsc);
|
|
|
|
_plugin_unlock();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2006-04-25 19:13:04 -04:00
|
|
|
ppi = ppi->next;
|
2006-04-20 02:52:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* should 500 here or something */
|
|
|
|
ws_returnerror(pwsc, 500, "Can't find plugin handler");
|
|
|
|
_plugin_unlock();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-04-25 19:13:04 -04:00
|
|
|
/**
|
|
|
|
* walk through the plugins and register whatever rendezvous
|
|
|
|
* names the clients want
|
|
|
|
*/
|
2006-05-24 01:14:58 -04:00
|
|
|
int plugin_rend_register(char *name, int port, char *iface, char *txt) {
|
2006-04-25 19:13:04 -04:00
|
|
|
PLUGIN_ENTRY *ppi;
|
|
|
|
PLUGIN_REND_INFO *pri;
|
2006-05-24 01:14:58 -04:00
|
|
|
char *supplied_txt;
|
2006-05-01 04:06:19 -04:00
|
|
|
char *new_name;
|
2006-05-27 06:37:46 -04:00
|
|
|
char *ver;
|
2006-05-17 23:02:02 -04:00
|
|
|
int name_len;
|
2006-05-01 04:06:19 -04:00
|
|
|
|
2006-04-25 19:13:04 -04:00
|
|
|
|
|
|
|
_plugin_readlock();
|
|
|
|
ppi = _plugin_list.next;
|
|
|
|
|
|
|
|
while(ppi) {
|
2006-05-28 00:06:14 -04:00
|
|
|
DPRINTF(E_DBG,L_PLUG,"Checking %s\n",ppi->pinfo->server);
|
|
|
|
if(ppi->pinfo->rend_info) {
|
|
|
|
pri = ppi->pinfo->rend_info;
|
2006-04-25 19:13:04 -04:00
|
|
|
while(pri->type) {
|
2006-05-24 01:14:58 -04:00
|
|
|
supplied_txt = pri->txt;
|
2006-04-25 23:29:43 -04:00
|
|
|
if(!pri->txt)
|
2006-05-24 01:14:58 -04:00
|
|
|
supplied_txt = txt;
|
2006-04-25 23:29:43 -04:00
|
|
|
|
2006-04-25 19:13:04 -04:00
|
|
|
DPRINTF(E_DBG,L_PLUG,"Registering %s\n",pri->type);
|
2006-05-01 04:06:19 -04:00
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
name_len = (int)strlen(name) + 4 + (int)strlen(ppi->pinfo->server);
|
2006-05-17 23:02:02 -04:00
|
|
|
new_name=(char*)malloc(name_len);
|
|
|
|
if(!new_name)
|
|
|
|
DPRINTF(E_FATAL,L_PLUG,"plugin_rend_register: malloc");
|
|
|
|
|
|
|
|
memset(new_name,0,name_len);
|
|
|
|
|
2006-05-01 04:06:19 -04:00
|
|
|
if(conf_get_int("plugins","mangle_rendezvous",1)) {
|
2006-05-28 00:06:14 -04:00
|
|
|
ver = strdup(ppi->pinfo->server);
|
2006-05-27 06:37:46 -04:00
|
|
|
if(strchr(ver,'/')) {
|
|
|
|
*strchr(ver,'/') = '\0';
|
|
|
|
}
|
|
|
|
snprintf(new_name,name_len,"%s (%s)",name,ver);
|
|
|
|
free(ver);
|
2006-05-01 04:06:19 -04:00
|
|
|
} else {
|
2006-05-17 23:02:02 -04:00
|
|
|
snprintf(new_name,name_len,"%s",name);
|
2006-05-01 04:06:19 -04:00
|
|
|
}
|
2006-05-24 01:14:58 -04:00
|
|
|
rend_register(new_name,pri->type,port,iface,supplied_txt);
|
2006-05-01 04:06:19 -04:00
|
|
|
free(new_name);
|
|
|
|
|
2006-04-25 19:13:04 -04:00
|
|
|
pri++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ppi=ppi->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
_plugin_unlock();
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-04-22 15:45:49 -04:00
|
|
|
/**
|
|
|
|
* Test password for the handled namespace
|
|
|
|
*
|
|
|
|
* @param pwsc the connection info (including uri) to check
|
|
|
|
* @param username user attempting to login
|
|
|
|
* @param pw password attempting
|
|
|
|
* @returns TRUE if we want to handle it
|
|
|
|
*/
|
|
|
|
int plugin_auth_handle(WS_CONNINFO *pwsc, char *username, char *pw) {
|
|
|
|
PLUGIN_ENTRY *ppi;
|
|
|
|
int (*auth_fn)(WS_CONNINFO *pwsc, char *username, char *pw);
|
|
|
|
int result;
|
|
|
|
|
|
|
|
_plugin_readlock();
|
|
|
|
ppi = _plugin_list.next;
|
|
|
|
while(ppi) {
|
2006-05-28 00:06:14 -04:00
|
|
|
if(ppi->pinfo->type & PLUGIN_OUTPUT) {
|
2006-04-22 15:45:49 -04:00
|
|
|
if(!regexec(&ppi->regex,pwsc->uri,0,NULL,0)) {
|
|
|
|
/* we have a winner */
|
|
|
|
DPRINTF(E_DBG,L_PLUG,"Dispatching %s to %s\n", pwsc->uri,
|
2006-05-28 00:06:14 -04:00
|
|
|
ppi->pinfo->server);
|
2006-04-22 15:45:49 -04:00
|
|
|
|
|
|
|
/* so functions must be a tag_plugin_output_fn */
|
2006-05-28 00:06:14 -04:00
|
|
|
auth_fn=(ppi->pinfo->output_fns)->auth;
|
2006-04-22 15:45:49 -04:00
|
|
|
if(auth_fn) {
|
|
|
|
result=auth_fn(pwsc,username,pw);
|
|
|
|
_plugin_unlock();
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
_plugin_unlock();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-04-25 19:13:04 -04:00
|
|
|
ppi = ppi->next;
|
2006-04-22 15:45:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* should 500 here or something */
|
|
|
|
ws_returnerror(pwsc, 500, "Can't find plugin handler");
|
|
|
|
_plugin_unlock();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-05-04 02:20:26 -04:00
|
|
|
/**
|
|
|
|
* send an event to a plugin... this can be a connection, disconnection, etc.
|
|
|
|
*/
|
|
|
|
void plugin_event_dispatch(int event_id, int intval, void *vp, int len) {
|
|
|
|
PLUGIN_ENTRY *ppi;
|
|
|
|
|
2006-05-31 04:34:52 -04:00
|
|
|
/* FIXME: Something is wrong is readlock deadlocks... */
|
|
|
|
// _plugin_readlock();
|
2006-05-04 02:20:26 -04:00
|
|
|
ppi = _plugin_list.next;
|
|
|
|
while(ppi) {
|
2006-05-28 00:06:14 -04:00
|
|
|
if(ppi->pinfo->type & PLUGIN_EVENT) {
|
2006-05-05 03:38:13 -04:00
|
|
|
/* DPRINTF(E_DBG,L_PLUG,"Dispatching event %d to %s\n",
|
|
|
|
event_id,ppi->versionstring); */
|
2006-05-04 02:20:26 -04:00
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
if((ppi->pinfo->event_fns) && (ppi->pinfo->event_fns->handler)) {
|
|
|
|
ppi->pinfo->event_fns->handler(event_id, intval, vp, len);
|
2006-05-04 02:20:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ppi=ppi->next;
|
|
|
|
}
|
2006-05-31 04:34:52 -04:00
|
|
|
// _plugin_unlock();
|
2006-05-04 02:20:26 -04:00
|
|
|
}
|
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
/**
|
|
|
|
* check to see if we can transcode
|
|
|
|
*
|
|
|
|
* @param codec the codec we are trying to serve
|
|
|
|
* @returns TRUE if we can transcode, FALSE otherwise
|
|
|
|
*/
|
2006-05-31 02:07:42 -04:00
|
|
|
int plugin_ssc_should_transcode(WS_CONNINFO *pwsc, char *codec) {
|
2006-05-28 00:06:14 -04:00
|
|
|
int result;
|
2006-05-31 02:07:42 -04:00
|
|
|
char *native_codecs=NULL;
|
|
|
|
char *user_agent=NULL;
|
|
|
|
|
|
|
|
if(pwsc) {
|
|
|
|
/* see if the headers give us any guidance */
|
|
|
|
native_codecs = ws_getrequestheader(pwsc,"accept-codecs");
|
|
|
|
if(!native_codecs) {
|
|
|
|
user_agent = ws_getrequestheader(pwsc,"user-agent");
|
|
|
|
if(strncmp(user_agent,"iTunes",6)==0) {
|
|
|
|
native_codecs = "mpeg,mp4a,wav,mp4v";
|
|
|
|
} else if(strncmp(user_agent,"Roku",4)==0) {
|
|
|
|
native_codecs = "mpeg,mp4a,wav";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-05-04 02:20:26 -04:00
|
|
|
|
2006-05-31 02:07:42 -04:00
|
|
|
if(!native_codecs) {
|
|
|
|
native_codecs = "mpeg,wav";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* can't transcode it if we can't transcode it */
|
2006-05-30 15:31:55 -04:00
|
|
|
if(!_plugin_ssc_codecs)
|
|
|
|
return FALSE;
|
|
|
|
|
2006-05-31 02:07:42 -04:00
|
|
|
if(strstr(native_codecs,codec))
|
|
|
|
return FALSE;
|
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
_plugin_readlock();
|
|
|
|
result = FALSE;
|
|
|
|
if(strstr(_plugin_ssc_codecs,codec)) {
|
|
|
|
result = TRUE;
|
|
|
|
}
|
|
|
|
_plugin_unlock();
|
|
|
|
return result;
|
|
|
|
}
|
2006-05-04 02:20:26 -04:00
|
|
|
|
2006-04-22 15:45:49 -04:00
|
|
|
|
2006-05-28 00:06:14 -04:00
|
|
|
/**
|
|
|
|
* stupid helper to copy transcode stream to the fd
|
|
|
|
*/
|
|
|
|
int _plugin_ssc_copy(WS_CONNINFO *pwsc, PLUGIN_TRANSCODE_FN *pfn,
|
|
|
|
void *vp,int offset) {
|
|
|
|
int bytes_read;
|
|
|
|
int bytes_to_read;
|
|
|
|
int total_bytes_read = 0;
|
|
|
|
char buffer[1024];
|
|
|
|
|
|
|
|
/* first, skip past the offset */
|
|
|
|
while(offset) {
|
|
|
|
bytes_to_read = sizeof(buffer);
|
|
|
|
if(bytes_to_read > offset)
|
|
|
|
bytes_to_read = offset;
|
|
|
|
|
2006-05-28 02:11:37 -04:00
|
|
|
bytes_read = pfn->ssc_read(vp,buffer,bytes_to_read);
|
2006-05-28 00:06:14 -04:00
|
|
|
if(bytes_read <= 0)
|
|
|
|
return bytes_read;
|
|
|
|
|
|
|
|
offset -= bytes_read;
|
|
|
|
}
|
|
|
|
|
2006-05-28 02:11:37 -04:00
|
|
|
while((bytes_read=pfn->ssc_read(vp,buffer,sizeof(buffer))) > 0) {
|
2006-05-28 00:06:14 -04:00
|
|
|
total_bytes_read += bytes_read;
|
|
|
|
ws_writebinary(pwsc,buffer,bytes_read);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(bytes_read < 0)
|
|
|
|
return bytes_read;
|
|
|
|
|
|
|
|
return total_bytes_read;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* do the transcode, emitting the headers, content type,
|
|
|
|
* and shoving the file down the wire
|
|
|
|
*
|
|
|
|
* @param pwsc connection to transcode to
|
|
|
|
* @param file file to transcode
|
|
|
|
* @param codec source codec
|
|
|
|
* @param duration time in ms
|
|
|
|
* @returns bytes transferred, or -1 on error
|
|
|
|
*/
|
|
|
|
int plugin_ssc_transcode(WS_CONNINFO *pwsc, char *file, char *codec, int duration, int offset) {
|
|
|
|
PLUGIN_ENTRY *ppi, *ptc=NULL;
|
|
|
|
PLUGIN_TRANSCODE_FN *pfn = NULL;
|
|
|
|
void *vp_ssc;
|
|
|
|
int post_error = 1;
|
|
|
|
int result = -1;
|
|
|
|
|
|
|
|
/* first, find the plugin that will do the conversion */
|
|
|
|
|
|
|
|
_plugin_readlock();
|
|
|
|
|
|
|
|
ppi = _plugin_list.next;
|
|
|
|
while((ppi) && (!pfn)) {
|
|
|
|
if(ppi->pinfo->type & PLUGIN_TRANSCODE) {
|
|
|
|
if(strstr(ppi->pinfo->codeclist,codec)) {
|
|
|
|
ptc = ppi;
|
|
|
|
pfn = ppi->pinfo->transcode_fns;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ppi = ppi->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(pfn) {
|
|
|
|
DPRINTF(E_DBG,L_PLUG,"Transcoding %s with %s\n",file,
|
|
|
|
ptc->pinfo->server);
|
|
|
|
|
2006-05-28 02:11:37 -04:00
|
|
|
vp_ssc = pfn->ssc_init();
|
2006-05-28 00:06:14 -04:00
|
|
|
if(vp_ssc) {
|
2006-05-28 02:11:37 -04:00
|
|
|
if(pfn->ssc_open(vp_ssc,file,codec,duration)) {
|
2006-05-28 00:06:14 -04:00
|
|
|
/* start reading and throwing */
|
|
|
|
ws_addresponseheader(pwsc,"Content-Type","audio/wav");
|
|
|
|
ws_addresponseheader(pwsc,"Connection","Close");
|
|
|
|
if(!offset) {
|
|
|
|
ws_writefd(pwsc,"HTTP/1.1 200 OK\r\n");
|
|
|
|
} else {
|
|
|
|
ws_addresponseheader(pwsc,"Content-Range","bytes %ld-*/*",
|
|
|
|
(long)offset);
|
|
|
|
ws_writefd(pwsc,"HTTP/1.1 206 Partial Content\r\n");
|
|
|
|
}
|
|
|
|
ws_emitheaders(pwsc);
|
|
|
|
|
|
|
|
/* start reading/writing */
|
|
|
|
result = _plugin_ssc_copy(pwsc,pfn,vp_ssc,offset);
|
|
|
|
post_error = 0;
|
2006-05-28 02:11:37 -04:00
|
|
|
pfn->ssc_close(vp_ssc);
|
2006-05-28 00:06:14 -04:00
|
|
|
} else {
|
|
|
|
DPRINTF(E_LOG,L_PLUG,"Error opening %s for ssc: %s\n",
|
2006-05-28 02:11:37 -04:00
|
|
|
file,pfn->ssc_error(vp_ssc));
|
2006-05-28 00:06:14 -04:00
|
|
|
}
|
2006-05-28 02:11:37 -04:00
|
|
|
pfn->ssc_deinit(vp_ssc);
|
2006-05-28 00:06:14 -04:00
|
|
|
} else {
|
|
|
|
DPRINTF(E_LOG,L_PLUG,"Error initializing transcoder: %s\n",
|
|
|
|
ptc->pinfo->server);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(post_error) {
|
|
|
|
pwsc->error = EPERM; /* ?? */
|
|
|
|
ws_returnerror(pwsc,500,"Internal error");
|
|
|
|
}
|
|
|
|
|
|
|
|
_plugin_unlock();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-04-20 02:52:21 -04:00
|
|
|
/* plugin wrappers for utility functions & stuff
|
|
|
|
*
|
|
|
|
* these functions need to be wrapped so we can maintain a stable
|
|
|
|
* interface to older plugins even if we get newer functions or apis
|
|
|
|
* upstream... it's a binary compatibility layer.
|
|
|
|
*/
|
2006-04-21 02:43:41 -04:00
|
|
|
char *pi_ws_uri(WS_CONNINFO *pwsc) {
|
|
|
|
return pwsc->uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pi_ws_close(WS_CONNINFO *pwsc) {
|
|
|
|
pwsc->close=1;
|
|
|
|
}
|
|
|
|
|
2006-04-25 06:02:43 -04:00
|
|
|
int pi_ws_fd(WS_CONNINFO *pwsc) {
|
|
|
|
return pwsc->fd;
|
2006-04-21 02:43:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void pi_log(int level, char *fmt, ...) {
|
|
|
|
char buf[256];
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap,fmt);
|
|
|
|
vsnprintf(buf,sizeof(buf),fmt,ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
DPRINTF(level,L_PLUG,"%s",buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *pi_server_ver(void) {
|
|
|
|
return VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
int pi_server_name(char *name, int *len) {
|
2006-05-23 23:53:22 -04:00
|
|
|
char *servername;
|
|
|
|
|
|
|
|
servername = conf_get_servername();
|
|
|
|
if((servername) && (strlen(servername) < (size_t)len)) {
|
|
|
|
strcpy(name,servername);
|
|
|
|
} else {
|
|
|
|
if((size_t)len > strlen("Firefly Media Server"))
|
|
|
|
strcpy(name,"Firefly Media Server");
|
|
|
|
}
|
|
|
|
|
|
|
|
free(servername);
|
|
|
|
return CONF_E_SUCCESS;
|
2006-04-21 02:43:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int pi_db_count(void) {
|
|
|
|
int count;
|
|
|
|
db_get_song_count(NULL, &count);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2006-05-27 04:02:39 -04:00
|
|
|
int pi_db_enum_start(char **pe, DB_QUERY *pinfo) {
|
|
|
|
DBQUERYINFO *pqi;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
pqi = (DBQUERYINFO*)malloc(sizeof(DBQUERYINFO));
|
|
|
|
if(!pqi) {
|
|
|
|
if(pe) *pe = strdup("Malloc error");
|
|
|
|
return DB_E_MALLOC;
|
|
|
|
}
|
|
|
|
memset(pqi,0,sizeof(DBQUERYINFO));
|
|
|
|
pinfo->private = (void*)pqi;
|
|
|
|
|
|
|
|
if(pinfo->filter) {
|
|
|
|
pqi->pt = sp_init();
|
|
|
|
if(!sp_parse(pqi->pt,pinfo->filter,pinfo->filter_type)) {
|
|
|
|
DPRINTF(E_LOG,L_PLUG,"Ignoring bad query (%s): %s\n",
|
|
|
|
pinfo->filter,sp_get_error(pqi->pt));
|
|
|
|
sp_dispose(pqi->pt);
|
|
|
|
pqi->pt = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if((pinfo->limit) || (pinfo->offset)) {
|
|
|
|
pqi->index_low = pinfo->offset;
|
|
|
|
pqi->index_high = pinfo->offset + pinfo->limit - 1;
|
|
|
|
if(pqi->index_high < pqi->index_low)
|
|
|
|
pqi->index_high = 9999999;
|
|
|
|
|
|
|
|
pqi->index_type = indexTypeSub;
|
|
|
|
} else {
|
|
|
|
pqi->index_type = indexTypeNone;
|
|
|
|
}
|
|
|
|
|
|
|
|
pqi->want_count = 1;
|
|
|
|
|
|
|
|
switch(pinfo->query_type) {
|
|
|
|
case QUERY_TYPE_PLAYLISTS:
|
|
|
|
pqi->query_type = queryTypePlaylists;
|
|
|
|
break;
|
|
|
|
case QUERY_TYPE_DISTINCT:
|
|
|
|
if((strcmp(pinfo->distinct_field,"artist") == 0)) {
|
|
|
|
pqi->query_type = queryTypeBrowseArtists;
|
|
|
|
} else if((strcmp(pinfo->distinct_field,"genre") == 0)) {
|
|
|
|
pqi->query_type = queryTypeBrowseGenres;
|
|
|
|
} else if((strcmp(pinfo->distinct_field,"album") == 0)) {
|
|
|
|
pqi->query_type = queryTypeBrowseAlbums;
|
|
|
|
} else if((strcmp(pinfo->distinct_field,"composer") == 0)) {
|
|
|
|
pqi->query_type = queryTypeBrowseComposers;
|
|
|
|
} else {
|
|
|
|
if(pe) *pe = strdup("Unsupported browse type");
|
|
|
|
sp_dispose(pqi->pt);
|
|
|
|
pqi->pt = NULL;
|
|
|
|
return -1; /* not really a db error for this */
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case QUERY_TYPE_ITEMS:
|
|
|
|
default:
|
|
|
|
pqi->query_type = queryTypePlaylistItems;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
pqi->playlist_id = pinfo->playlist_id;
|
|
|
|
result = db_enum_start(pe, pqi);
|
|
|
|
pinfo->totalcount = pqi->specifiedtotalcount;
|
2006-05-28 00:06:14 -04:00
|
|
|
|
|
|
|
return DB_E_SUCCESS;
|
2006-04-21 02:43:41 -04:00
|
|
|
}
|
|
|
|
|
2006-05-27 04:02:39 -04:00
|
|
|
int pi_db_enum_fetch_row(char **pe, char ***row, DB_QUERY *pinfo) {
|
|
|
|
return db_enum_fetch_row(pe, (PACKED_MP3FILE*)row,
|
|
|
|
(DBQUERYINFO*)pinfo->private);
|
2006-04-21 02:43:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int pi_db_enum_end(char **pe) {
|
|
|
|
return db_enum_end(pe);
|
|
|
|
}
|
|
|
|
|
2006-05-27 04:02:39 -04:00
|
|
|
void pi_stream(WS_CONNINFO *pwsc, char *id) {
|
|
|
|
dispatch_stream_id(pwsc, 0, id);
|
2006-04-21 02:43:41 -04:00
|
|
|
return;
|
2006-04-20 02:52:21 -04:00
|
|
|
}
|
2006-04-25 06:02:43 -04:00
|
|
|
|
2006-05-27 04:02:39 -04:00
|
|
|
void pi_db_enum_dispose(char **pe, DB_QUERY *pinfo) {
|
|
|
|
DBQUERYINFO *pqi;
|
|
|
|
|
|
|
|
if(!pinfo)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(pinfo->private) {
|
|
|
|
pqi = (DBQUERYINFO *)pinfo->private;
|
|
|
|
if(pqi->pt) {
|
|
|
|
sp_dispose(pqi->pt);
|
|
|
|
pqi->pt = NULL;
|
|
|
|
}
|
|
|
|
}
|
2006-04-25 06:02:43 -04:00
|
|
|
}
|
2006-05-19 00:50:45 -04:00
|
|
|
|
|
|
|
void pi_conf_dispose_string(char *str) {
|
|
|
|
free(str);
|
|
|
|
}
|