mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 16:18:33 +00:00
96 lines
2.1 KiB
C
96 lines
2.1 KiB
C
/* radare - LGPL - Copyright 2008-2016 - pancake */
|
|
|
|
/* TODO: write li->fds setter/getter helpers */
|
|
// TODO: return true/false everywhere,, not -1 or 0
|
|
// TODO: use RList here
|
|
|
|
#include "r_io.h"
|
|
#include "../config.h"
|
|
#include "list.h"
|
|
#include <stdio.h>
|
|
|
|
static RIOPlugin *io_static_plugins[] = {
|
|
R_IO_STATIC_PLUGINS
|
|
};
|
|
|
|
R_API bool r_io_plugin_add(RIO *io, RIOPlugin *plugin) {
|
|
if (!io || !io->plugins || !plugin || !plugin->name) {
|
|
return false;
|
|
}
|
|
r_list_append (io->plugins, plugin);
|
|
return true;
|
|
}
|
|
|
|
R_API bool r_io_plugin_init(RIO *io) {
|
|
RIOPlugin *static_plugin;
|
|
int i;
|
|
|
|
r_list_free (io->plugins);
|
|
io->plugins = r_list_newf (free);
|
|
for (i = 0; io_static_plugins[i]; i++) {
|
|
if (!io_static_plugins[i]->name) {
|
|
continue;
|
|
}
|
|
static_plugin = R_NEW (RIOPlugin);
|
|
if (!static_plugin) {
|
|
return false;
|
|
}
|
|
memcpy (static_plugin, io_static_plugins[i], sizeof (RIOPlugin));
|
|
if (!strcmp (static_plugin->name, "default")) {
|
|
io->plugin_default = static_plugin;
|
|
} else {
|
|
r_io_plugin_add (io, static_plugin);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
R_API RIOPlugin *r_io_plugin_get_default(RIO *io, const char *filename, bool many) {
|
|
if (!io || !io->plugin_default || \
|
|
!io->plugin_default->check || \
|
|
!io->plugin_default->check (io, filename, many) ) {
|
|
return NULL;
|
|
}
|
|
return io->plugin_default;
|
|
}
|
|
|
|
R_API RIOPlugin *r_io_plugin_resolve(RIO *io, const char *filename, bool many) {
|
|
RListIter *iter;
|
|
RIOPlugin *iop;
|
|
r_list_foreach (io->plugins, iter, iop) {
|
|
if (iop->check && iop->check (io, filename, many)) {
|
|
return iop;
|
|
}
|
|
}
|
|
return io->plugin_default;
|
|
}
|
|
|
|
R_API RIOPlugin *r_io_plugin_byname(RIO *io, const char *name) {
|
|
RListIter *iter;
|
|
RIOPlugin *iop;
|
|
r_list_foreach (io->plugins, iter, iop) {
|
|
if (!strcmp (name, iop->name)) {
|
|
return iop;
|
|
}
|
|
}
|
|
return io->plugin_default;
|
|
}
|
|
|
|
R_API int r_io_plugin_list(RIO *io) {
|
|
RIOPlugin *plugin;
|
|
RListIter *iter;
|
|
char str[4];
|
|
int n = 0;
|
|
|
|
r_list_foreach (io->plugins, iter, plugin) {
|
|
str[0] = 'r';
|
|
str[1] = plugin->write ? 'w' : '_';
|
|
str[2] = plugin->isdbg ? 'd' : '_';
|
|
str[3] = 0;
|
|
io->cb_printf ("%s %-8s %s (%s)\n", str, plugin->name,
|
|
plugin->desc, plugin->license);
|
|
n++;
|
|
}
|
|
return n;
|
|
}
|