summaryrefslogtreecommitdiff
path: root/avmedia/source/vlc/wrapper/SymbolLoader.hxx
blob: e7db7a7cdbb64ee0fb55c6b9f901b51bad9512e1 (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef _SYMBOL_LOADER_HXX
#define _SYMBOL_LOADER_HXX
#if defined( WNT )
# include <windows.h>
# include <winreg.h>
#endif
#include <osl/module.h>
#include <rtl/ustring.hxx>

#define SYM_MAP(a) { #a, (SymbolFunc *)&a }

namespace avmedia
{
namespace vlc
{
namespace wrapper
{
typedef void (*SymbolFunc) (void);

struct ApiMap
{
    const char *symName;
    SymbolFunc *refValue;
};

namespace
{
#if defined( LINUX )
    const char LibName[] = "libvlc.so.5";
#elif defined( MACOSX )
    const char LibName[] = "/Applications/VLC.app/Contents/MacOS/lib/libvlc.dylib";
#elif defined( WNT )
    const char LibName[] = "libvlc.dll";

    OUString GetVLCPath()
    {
        HKEY hKey;
        wchar_t arCurrent[MAX_PATH];
        DWORD dwType, dwCurrentSize = sizeof( arCurrent );

        //TODO: This one will work only with LibreOffice 32-bit + VLC 32-bit on Win x86_64.
        const LONG errorCore = ::RegOpenKeyExW( HKEY_LOCAL_MACHINE, L"SOFTWARE\\Wow6432Node\\VideoLAN\\VLC", 0, KEY_READ | KEY_WOW64_64KEY, &hKey );
        if ( errorCore == ERROR_SUCCESS )
        {
            if ( ::RegQueryValueExW( hKey, L"InstallDir", NULL, &dwType, (LPBYTE) arCurrent, &dwCurrentSize ) == ERROR_SUCCESS &&
                 dwType == REG_SZ )
            {
                ::RegCloseKey( hKey );
                dwCurrentSize -= 2;
                dwCurrentSize /= 2;

                return OUString( arCurrent, dwCurrentSize ) + OUString::createFromAscii("\\");
            }

            ::RegCloseKey( hKey );
        }

        return OUString();
    }
#endif

    template<size_t N>
    bool tryLink( oslModule &aModule, const ApiMap ( &pMap )[N] )
    {
        for (size_t i = 0; i < N; ++i)
        {
            SymbolFunc aMethod = ( SymbolFunc )osl_getFunctionSymbol
                ( aModule, OUString::createFromAscii( pMap[ i ].symName ).pData );
            if ( !aMethod )
            {
                SAL_WARN("avmedia", "Cannot load method " << pMap[ i ].symName);
                *pMap[ i ].refValue = NULL;
                return false;
            }
            else
                *pMap[ i ].refValue = aMethod;
        }

        return true;
    }
}

    template<size_t N>
    bool InitApiMap( const ApiMap ( &pMap )[N]  )
    {
#if defined( LINUX ) || defined( MACOSX )
        const OUString& fullPath = OUString::createFromAscii(LibName);
#elif defined( WNT )
        const OUString& fullPath = GetVLCPath() + OUString::createFromAscii(LibName);
#endif
        SAL_INFO("avmedia", fullPath);

        oslModule aModule = osl_loadModule( fullPath.pData,
                                            SAL_LOADMODULE_DEFAULT );


        if( aModule == NULL)
        {
            SAL_WARN("avmedia", "Cannot load libvlc");
            return false;
        }

        if (tryLink( aModule, pMap ))
        {
            return true;
        }

        SAL_WARN("avmedia", "Cannot load libvlc");
        osl_unloadModule( aModule );

        return false;
    }
}
}
}

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */