/** \file db.h data structures common to all database tools */
+#include <sys/select.h>
+
int find_audio_files(const char *dirname, int (*f)(const char *, const char *));
/**
* passed \a update_audio_file().
*
*/
-void (*update_audio_file)(char *audio_file);
+void (*update_audio_file)(char *audio_file);
/**
*
* shutdown this database tool and free all resources
* This gets called whenever the database tool changes (via the cdt command),
* or when para_server receives the HUP signal, or when para_server shuts down.
* It is assumed to succeed.
-*/
+ */
void (*shutdown)(void);
+/**
+ *
+ * add file descriptors to fd_sets
+ *
+ * The pre_select function of the activated database tool gets called just
+ * before para_server enters its main select loop. The dbtool may add its own
+ * file descriptors to the \a rfds or the \a wfds set.
+ *
+ * If a file descriptor was added, \a max_fileno must be increased by
+ * this function, if neccessary.
+ *
+ * \sa select(2)
+ */
+int (*pre_select)(fd_set *rfds, fd_set *wfds);
+/**
+ * handle the file descriptors which are ready for I/O
+ *
+ * If the pre_select hook added one ore more file descriptors to the read or write
+ * set, this is the hook to check the result and do any I/O on those descriptors
+ * which are ready for reading/writing.
+ */
+void (*post_select)(fd_set *rfds, fd_set *wfds);
};
int mysql_dbtool_init(struct dbtool*);
.name = "dopey",
.init = dopey_dbtool_init,
.update_audio_file = NULL,
+ .pre_select = NULL,
+ .post_select = NULL,
},
#ifdef HAVE_MYSQL
{
.name = "mysql",
.init = mysql_dbtool_init,
.update_audio_file = NULL,
+ .pre_select = NULL,
+ .post_select = NULL,
},
#endif
{
int dbt_num;
/** commands set this to non-zero to request a database tool change */
int dbt_change;
-/* used by the sender command */
+/** used by the sender command */
struct sender_command_data sender_cmd_data;
+/** each dbtool has its private data pointer */
+ void *private_dbtool_data[NUM_DBTOOLS];
};