metaproxy  1.3.55
factory_filter.cpp
Go to the documentation of this file.
1 /* This file is part of Metaproxy.
2  Copyright (C) 2005-2013 Index Data
3 
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8 
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 for more details.
13 
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18 
19 #include "config.hpp"
20 
21 #include "factory_filter.hpp"
22 
23 #if HAVE_DLFCN_H
24 #include <dlfcn.h>
25 #endif
26 #include <stdexcept>
27 #include <iostream>
28 #include <string>
29 #include <map>
30 
31 namespace mp = metaproxy_1;
32 
33 namespace metaproxy_1 {
35  typedef std::map<std::string, CreateFilterCallback> CallbackMap;
36  typedef std::map<std::string, CreateFilterCallback>::iterator
38  public:
39  friend class FactoryFilter;
41  Rep();
42  ~Rep();
43  };
44 }
45 
46 mp::FactoryFilter::NotFound::NotFound(const std::string message)
47  : std::runtime_error(message)
48 {
49 }
50 
51 mp::FactoryFilter::Rep::Rep()
52 {
53 }
54 
55 mp::FactoryFilter::Rep::~Rep()
56 {
57 }
58 
60 {
61 
62 }
63 
65 {
66 
67 }
68 
69 bool mp::FactoryFilter::add_creator(const std::string &fi,
70  CreateFilterCallback cfc)
71 {
72  return m_p->m_fcm.insert(Rep::CallbackMap::value_type(fi, cfc)).second;
73 }
74 
75 
76 bool mp::FactoryFilter::drop_creator(std::string fi)
77 {
78  return m_p->m_fcm.erase(fi) == 1;
79 }
80 
81 bool mp::FactoryFilter::exist(std::string fi)
82 {
83  Rep::CallbackMap::const_iterator it = m_p->m_fcm.find(fi);
84 
85  if (it == m_p->m_fcm.end())
86  {
87  return false;
88  }
89  return true;
90 }
91 
92 mp::filter::Base* mp::FactoryFilter::create(std::string fi)
93 {
94  Rep::CallbackMap::const_iterator it = m_p->m_fcm.find(fi);
95 
96  if (it == m_p->m_fcm.end()){
97  std::string msg = "filter type '" + fi + "' not found";
98  throw NotFound(msg);
99  }
100  // call create function
101  return (it->second());
102 }
103 
105 {
106 #if HAVE_DLFCN_H
107  return true;
108 #else
109  return false;
110 #endif
111 }
112 
113 bool mp::FactoryFilter::add_creator_dl(const std::string &fi,
114  const std::string &path)
115 {
116 #if HAVE_DLFCN_H
117  if (m_p->m_fcm.find(fi) != m_p->m_fcm.end())
118  {
119  return true;
120  }
121 
122  std::string full_path = path + "/metaproxy_filter_" + fi + ".so";
123  void *dl_handle = dlopen(full_path.c_str(), RTLD_GLOBAL|RTLD_NOW);
124  if (!dl_handle)
125  {
126  const char *dl = dlerror();
127  std::cout << "dlopen " << full_path << " failed. dlerror=" << dl <<
128  std::endl;
129  return false;
130  }
131 
132  std::string full_name = "metaproxy_1_filter_" + fi;
133 
134  void *dlsym_ptr = dlsym(dl_handle, full_name.c_str());
135  if (!dlsym_ptr)
136  {
137  std::cout << "dlsym " << full_name << " failed\n";
138  return false;
139  }
140  struct metaproxy_1_filter_struct *s = (struct metaproxy_1_filter_struct *) dlsym_ptr;
141  return add_creator(fi, s->creator);
142 #else
143  return false;
144 #endif
145 }
146 
147 /*
148  * Local variables:
149  * c-basic-offset: 4
150  * c-file-style: "Stroustrup"
151  * indent-tabs-mode: nil
152  * End:
153  * vim: shiftwidth=4 tabstop=8 expandtab
154  */
155