summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/evoab2/EApi.cxx
blob: 9ec8e0d44e32c088810486c50576566b657a40f0 (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
/* -*- 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/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */
#include <rtl/ustring.hxx>
#include <osl/module.hxx>
#define  DECLARE_FN_POINTERS 1
#include "EApi.h"
static const char *eBookLibNames[] = {
    "libebook-1.2.so.21", // evolution-data-server 3.45.2+
    "libebook-1.2.so.20", // evolution-data-server 3.33.2+
    "libebook-1.2.so.19", // evolution-data-server 3.24+
    "libebook-1.2.so.16"
};

typedef void (*SymbolFunc) ();

namespace {

struct ApiMap
{
    const char *sym_name;
    SymbolFunc *ref_value;
};

}

const ApiMap aCommonApiMap[] =
{
    { "eds_check_version", reinterpret_cast<SymbolFunc *>(&eds_check_version) },
    { "e_contact_field_name", reinterpret_cast<SymbolFunc *>(&e_contact_field_name) },
    { "e_contact_get", reinterpret_cast<SymbolFunc *>(&e_contact_get) },
    { "e_contact_get_type", reinterpret_cast<SymbolFunc *>(&e_contact_get_type) },
    { "e_contact_field_id", reinterpret_cast<SymbolFunc *>(&e_contact_field_id) },
    { "e_book_new", reinterpret_cast<SymbolFunc *>(&e_book_new) },
    { "e_book_open", reinterpret_cast<SymbolFunc *>(&e_book_open) },
    { "e_book_get_source", reinterpret_cast<SymbolFunc *>(&e_book_get_source) },
    { "e_book_get_contacts", reinterpret_cast<SymbolFunc *>(&e_book_get_contacts) },
    { "e_book_query_field_test", reinterpret_cast<SymbolFunc *>(&e_book_query_field_test) },
    { "e_book_query_and", reinterpret_cast<SymbolFunc *>(&e_book_query_and) },
    { "e_book_query_or", reinterpret_cast<SymbolFunc *>(&e_book_query_or) },
    { "e_book_query_not", reinterpret_cast<SymbolFunc *>(&e_book_query_not) },
    { "e_book_query_ref", reinterpret_cast<SymbolFunc *>(&e_book_query_ref) },
    { "e_book_query_unref", reinterpret_cast<SymbolFunc *>(&e_book_query_unref) },
    { "e_book_query_from_string", reinterpret_cast<SymbolFunc *>(&e_book_query_from_string) },
    { "e_book_query_to_string", reinterpret_cast<SymbolFunc *>(&e_book_query_to_string) },
    { "e_book_query_field_exists", reinterpret_cast<SymbolFunc *>(&e_book_query_field_exists) }
};

const ApiMap aNewApiMap[] =
{
    { "e_source_registry_list_sources", reinterpret_cast<SymbolFunc *>(&e_source_registry_list_sources) },
    { "e_source_registry_new_sync", reinterpret_cast<SymbolFunc *>(&e_source_registry_new_sync) },
    { "e_source_has_extension", reinterpret_cast<SymbolFunc *>(&e_source_has_extension) },
    { "e_source_get_extension", reinterpret_cast<SymbolFunc *>(&e_source_get_extension) },
    { "e_source_backend_get_backend_name", reinterpret_cast<SymbolFunc *>(&e_source_backend_get_backend_name) },
    { "e_source_get_display_name", reinterpret_cast<SymbolFunc *>(&e_source_get_display_name) },
    { "e_source_get_uid", reinterpret_cast<SymbolFunc *>(&e_source_get_uid) },
    { "e_source_registry_ref_source", reinterpret_cast<SymbolFunc *>(&e_source_registry_ref_source) },
    { "e_client_open_sync", reinterpret_cast<SymbolFunc *>(&e_client_open_sync) },
    { "e_client_get_source", reinterpret_cast<SymbolFunc *>(&e_client_get_source) },
    { "e_book_client_get_contacts_sync", reinterpret_cast<SymbolFunc *>(&e_book_client_get_contacts_sync) },
    { "e_client_util_free_object_slist", reinterpret_cast<SymbolFunc *>(&e_client_util_free_object_slist) }
};

//>= direct read access API (>= 3.8)
const ApiMap aClientApiMap38[] =
{
    { "e_book_client_connect_direct_sync", reinterpret_cast<SymbolFunc *>(&e_book_client_connect_direct_sync) }
};

template<size_t N> static bool
tryLink( osl::Module &rModule, const char *pName, const ApiMap (&pMap)[N])
{
    for (size_t i = 0; i < N; ++i)
    {
        SymbolFunc aMethod = reinterpret_cast<SymbolFunc>(
            rModule.getFunctionSymbol(OUString::createFromAscii(pMap[i].sym_name)));
        if( !aMethod )
        {
            fprintf( stderr, "Warning: missing symbol '%s' in '%s'\n",
                 pMap[ i ].sym_name, pName );
            return false;
        }
        *pMap[ i ].ref_value = aMethod;
    }
    return true;
}

bool EApiInit()
{
    for( guint j = 0; j < G_N_ELEMENTS( eBookLibNames ); j++ )
    {
        osl::Module aModule(OUString::createFromAscii(eBookLibNames[j]), SAL_LOADMODULE_DEFAULT);

        if (!aModule.is())
            continue;

        if (tryLink( aModule, eBookLibNames[ j ], aCommonApiMap))
        {
            if (tryLink( aModule, eBookLibNames[ j ], aNewApiMap))
            {
                if (tryLink( aModule, eBookLibNames[ j ], aClientApiMap38))
                {
                    aModule.release();
                    return true;
                }
            }
        }
    }
    fprintf( stderr, "Can find no compliant libebook client libraries\n" );
    return false;
}

ESourceRegistry *get_e_source_registry()
{
    static ESourceRegistry *theInstance = e_source_registry_new_sync(nullptr, nullptr);
    return theInstance;
}

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