X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Ffactory_filter.cpp;h=a7516bbbb8df046033365b0bb29725e1937743d0;hb=637a685d61a9ff0e3f398a59da426979815c4d68;hp=d48d2dda580f2901e51cff0d60f9c4d397cf64c7;hpb=0e4bd2f722c9cf0a83e7e4ef3d936c60c9419add;p=metaproxy-moved-to-github.git diff --git a/src/factory_filter.cpp b/src/factory_filter.cpp index d48d2dd..a7516bb 100644 --- a/src/factory_filter.cpp +++ b/src/factory_filter.cpp @@ -1,7 +1,22 @@ -/* $Id: factory_filter.cpp,v 1.2 2006-01-05 16:39:37 adam Exp $ - Copyright (c) 2005, Index Data. +/* $Id: factory_filter.cpp,v 1.8 2007-05-09 21:23:09 adam Exp $ + Copyright (c) 2005-2007, Index Data. -%LICENSE% +This file is part of Metaproxy. + +Metaproxy is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Metaproxy; see the file LICENSE. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. */ #include "config.hpp" @@ -16,7 +31,9 @@ #include #include -namespace yp2 { +namespace mp = metaproxy_1; + +namespace metaproxy_1 { class FactoryFilter::Rep { typedef std::map CallbackMap; typedef std::map::iterator @@ -29,42 +46,53 @@ namespace yp2 { }; } -yp2::FactoryFilter::NotFound::NotFound(const std::string message) +mp::FactoryFilter::NotFound::NotFound(const std::string message) : std::runtime_error(message) { } -yp2::FactoryFilter::Rep::Rep() +mp::FactoryFilter::Rep::Rep() { } -yp2::FactoryFilter::Rep::~Rep() +mp::FactoryFilter::Rep::~Rep() { } -yp2::FactoryFilter::FactoryFilter() : m_p(new yp2::FactoryFilter::Rep) +mp::FactoryFilter::FactoryFilter() : m_p(new mp::FactoryFilter::Rep) { } -yp2::FactoryFilter::~FactoryFilter() +mp::FactoryFilter::~FactoryFilter() { } -bool yp2::FactoryFilter::add_creator(std::string fi, +bool mp::FactoryFilter::add_creator(std::string fi, CreateFilterCallback cfc) { return m_p->m_fcm.insert(Rep::CallbackMap::value_type(fi, cfc)).second; } -bool yp2::FactoryFilter::drop_creator(std::string fi) +bool mp::FactoryFilter::drop_creator(std::string fi) { return m_p->m_fcm.erase(fi) == 1; } -yp2::filter::Base* yp2::FactoryFilter::create(std::string fi) +bool mp::FactoryFilter::exist(std::string fi) +{ + Rep::CallbackMap::const_iterator it = m_p->m_fcm.find(fi); + + if (it == m_p->m_fcm.end()) + { + return false; + } + return true; +} + +mp::filter::Base* mp::FactoryFilter::create(std::string fi) { Rep::CallbackMap::const_iterator it = m_p->m_fcm.find(fi); @@ -76,16 +104,25 @@ yp2::filter::Base* yp2::FactoryFilter::create(std::string fi) return (it->second()); } +bool mp::FactoryFilter::have_dl_support() +{ #if HAVE_DLFCN_H -bool yp2::FactoryFilter::add_creator_dyn(const std::string &fi, - const std::string &path) + return true; +#else + return false; +#endif +} + +bool mp::FactoryFilter::add_creator_dl(const std::string &fi, + const std::string &path) { +#if HAVE_DLFCN_H if (m_p->m_fcm.find(fi) != m_p->m_fcm.end()) { return true; } - std::string full_path = path + "/yp2_filter_" + fi + ".so"; + std::string full_path = path + "/metaproxy_filter_" + fi + ".so"; void *dl_handle = dlopen(full_path.c_str(), RTLD_GLOBAL|RTLD_NOW); if (!dl_handle) { @@ -95,7 +132,7 @@ bool yp2::FactoryFilter::add_creator_dyn(const std::string &fi, return false; } - std::string full_name = "yp2_filter_" + fi; + std::string full_name = "metaproxy_1_filter_" + fi; void *dlsym_ptr = dlsym(dl_handle, full_name.c_str()); if (!dlsym_ptr) @@ -103,10 +140,12 @@ bool yp2::FactoryFilter::add_creator_dyn(const std::string &fi, std::cout << "dlsym " << full_name << " failed\n"; return false; } - struct yp2_filter_struct *s = (struct yp2_filter_struct *) dlsym_ptr; + struct metaproxy_1_filter_struct *s = (struct metaproxy_1_filter_struct *) dlsym_ptr; return add_creator(fi, s->creator); -} +#else + return false; #endif +} /* * Local variables: