summaryrefslogtreecommitdiff
path: root/shared/dllLoader.cpp
blob: 1ecfcb763e040eb621ddffaf412de948238b0621 (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
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html       *
// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de)                    *
// **************************************************************************
//
#include "dllLoader.h"
#include <wx/msw/wrapwin.h> //includes "windows.h"
#include <map>
#include <assert.h>

namespace
{
class DllHandler //dynamically load "kernel32.dll"
{
public:
    static DllHandler& getInstance()
    {
        static DllHandler instance;
        return instance;
    }

    HINSTANCE getHandle(const std::wstring& libraryName)
    {
        HandleMap::const_iterator foundEntry = handles.find(libraryName);
        if (foundEntry == handles.end())
        {
            HINSTANCE newHandle = ::LoadLibrary(libraryName.c_str());
            handles.insert(std::make_pair(libraryName, newHandle));

            assert(handles.find(libraryName) != handles.end());
            return newHandle;
        }
        else
            return foundEntry->second;
    }

private:
    DllHandler() {}

    ~DllHandler()
    {
        for (HandleMap::const_iterator i = handles.begin(); i != handles.end(); ++i)
            if (i->second != NULL) ::FreeLibrary(i->second);
    }

    typedef std::map<std::wstring, HINSTANCE> HandleMap;
    HandleMap handles;
};
}


void* Utility::loadSymbol(const std::wstring& libraryName, const std::string& functionName)
{
    const HINSTANCE libHandle = DllHandler::getInstance().getHandle(libraryName);

    if (libHandle != NULL)
        return reinterpret_cast<void*>(::GetProcAddress(libHandle, functionName.c_str()));
    else
        return NULL;
}
bgstack15