Add features support to soup plugin

This commit is contained in:
Martin Willi
2011-10-14 10:05:46 +02:00
parent 6c3a0b9bf5
commit 4489ece2db
+13 -8
View File
@@ -40,11 +40,21 @@ METHOD(plugin_t, get_name, char*,
return "soup"; return "soup";
} }
METHOD(plugin_t, get_features, int,
private_soup_plugin_t *this, plugin_feature_t *features[])
{
static plugin_feature_t f[] = {
PLUGIN_REGISTER(FETCHER, soup_fetcher_create),
PLUGIN_PROVIDE(FETCHER, "http://"),
PLUGIN_PROVIDE(FETCHER, "https://"),
};
*features = f;
return countof(f);
}
METHOD(plugin_t, destroy, void, METHOD(plugin_t, destroy, void,
private_soup_plugin_t *this) private_soup_plugin_t *this)
{ {
lib->fetcher->remove_fetcher(lib->fetcher,
(fetcher_constructor_t)soup_fetcher_create);
free(this); free(this);
} }
@@ -65,16 +75,11 @@ plugin_t *soup_plugin_create()
.public = { .public = {
.plugin = { .plugin = {
.get_name = _get_name, .get_name = _get_name,
.reload = (void*)return_false, .get_features = _get_features,
.destroy = _destroy, .destroy = _destroy,
}, },
}, },
); );
lib->fetcher->add_fetcher(lib->fetcher,
(fetcher_constructor_t)soup_fetcher_create, "http://");
lib->fetcher->add_fetcher(lib->fetcher,
(fetcher_constructor_t)soup_fetcher_create, "https://");
return &this->public.plugin; return &this->public.plugin;
} }