2 * Copyright (C) 2009 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "attr_plugin.h"
17 #include "attr_provider.h"
21 typedef struct private_attr_plugin_t private_attr_plugin_t
;
24 * private data of attr plugin
26 struct private_attr_plugin_t
{
29 * implements plugin interface
34 * CFG attributes provider
36 attr_provider_t
*provider
;
40 * Implementation of plugin_t.destroy
42 static void destroy(private_attr_plugin_t
*this)
44 hydra
->attributes
->remove_provider(hydra
->attributes
, &this->provider
->provider
);
45 this->provider
->destroy(this->provider
);
52 plugin_t
*attr_plugin_create()
54 private_attr_plugin_t
*this = malloc_thing(private_attr_plugin_t
);
56 this->public.plugin
.destroy
= (void(*)(plugin_t
*))destroy
;
58 this->provider
= attr_provider_create();
59 hydra
->attributes
->add_provider(hydra
->attributes
, &this->provider
->provider
);
61 return &this->public.plugin
;