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
;
39 METHOD(plugin_t
, get_name
, char*,
40 private_attr_plugin_t
*this)
45 METHOD(plugin_t
, reload
, bool,
46 private_attr_plugin_t
*this)
48 this->provider
->reload(this->provider
);
52 METHOD(plugin_t
, destroy
, void,
53 private_attr_plugin_t
*this)
55 hydra
->attributes
->remove_provider(hydra
->attributes
, &this->provider
->provider
);
56 this->provider
->destroy(this->provider
);
63 plugin_t
*attr_plugin_create()
65 private_attr_plugin_t
*this;
70 .get_name
= _get_name
,
75 .provider
= attr_provider_create(),
77 hydra
->attributes
->add_provider(hydra
->attributes
, &this->provider
->provider
);
79 return &this->public.plugin
;