summaryrefslogtreecommitdiffstats
path: root/akode/lib/pluginhandler.cpp
blob: 5aaea56425d12d14948adf1c32c415988863f01b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*  aKode: PluginHandler

    Copyright (C) 2004 Allan Sandfeld Jensen <kde@carewolf.com>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library 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
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/

#include "akodelib.h"
#include "pluginhandler.h"
#include <dirent.h>
#include <iostream>

#ifdef HAVE_LIBLTDL
  #include <ltdl.h>
#else
  #include <dlfcn.h>
#endif

#ifdef HAVE_LIBLTDL
  #define DLCLOSE(x) lt_dlclose((lt_dlhandle)(x))
  #define DLERROR() lt_dlerror()
  #define DLSYM(x, y) lt_dlsym((lt_dlhandle)(x), (y))
  #define DLINIT() lt_dlinit()
  #define DLEXIT() lt_dlexit()
#else
  #define DLCLOSE dlclose
  #define DLERROR dlerror
  #define DLSYM dlsym
  #define DLINIT()
  #define DLEXIT()
#endif


namespace aKode {

PluginHandler::PluginHandler() : library_loaded(false), handle(0)
{
    DLINIT();
  #ifdef HAVE_LIBLTDL
    lt_dlsetsearchpath(AKODE_SEARCHDIR);
  #endif
}

PluginHandler::PluginHandler(const string lib) : library_loaded(false), handle(0)
{
    DLINIT();
    if (lib.size() > 0)
        load(lib);
}

PluginHandler::~PluginHandler()
{
    unload();
    DLEXIT();
}

list<string> PluginHandler::listPlugins() {
    DIR *dir = opendir(AKODE_SEARCHDIR);
    dirent *dp;

    if (!dir) return list<string>();

    list<string> out;

    while ((dp = readdir (dir)) != 0) {
        string name(dp->d_name);
        if (name.length() < 15) continue;
        if (name.substr(0,9) != "libakode_") continue;
  #ifdef HAVE_LIBLTDL
        int p = name.find(".la", 9);
  #else
        int p = name.find(".so", 9);
  #endif
        if (p == -1) continue;
        string plugin = name.substr(9,p-9);
        out.push_back(plugin);
    }
    return out;
}

bool PluginHandler::load(const string lib)
{
    if (library_loaded) return false;

  #ifdef HAVE_LIBLTDL
    const string library = string("libakode_") + lib;
    handle = lt_dlopenext(library.c_str());
  #else
    string library = "libakode_" + lib + ".so";
    handle = dlopen(library.c_str(), RTLD_NOW);
    if (!handle) { // this seems the simplest way to extent the search-path
        library = string(AKODE_SEARCHDIR) +"/"+ library;
        handle = dlopen(library.c_str(), RTLD_NOW);
    }
  #endif
    if (!handle) {
        return false;
    }

    library_loaded = true;
    return true;
}

void PluginHandler::unload()
{
    if (library_loaded) {
        DLCLOSE(handle);
        library_loaded = false;
    }
}

void* PluginHandler::loadPlugin(const string name) {
    void *plugin;
    if (!handle) return 0;

    DLERROR(); // clear errors
    plugin = DLSYM(handle, name.c_str());
    if (DLERROR()) return 0;

    return plugin;
}

} //namespace