From 267c6f2ac71f92999e969232431ba04678e7437e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 07:54:39 +0200 Subject: Adding upstream version 4:24.2.0. Signed-off-by: Daniel Baumann --- connectivity/source/drivers/evoab2/EApi.cxx | 135 ++++++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 connectivity/source/drivers/evoab2/EApi.cxx (limited to 'connectivity/source/drivers/evoab2/EApi.cxx') diff --git a/connectivity/source/drivers/evoab2/EApi.cxx b/connectivity/source/drivers/evoab2/EApi.cxx new file mode 100644 index 0000000000..9ec8e0d44e --- /dev/null +++ b/connectivity/source/drivers/evoab2/EApi.cxx @@ -0,0 +1,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 +#include +#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(&eds_check_version) }, + { "e_contact_field_name", reinterpret_cast(&e_contact_field_name) }, + { "e_contact_get", reinterpret_cast(&e_contact_get) }, + { "e_contact_get_type", reinterpret_cast(&e_contact_get_type) }, + { "e_contact_field_id", reinterpret_cast(&e_contact_field_id) }, + { "e_book_new", reinterpret_cast(&e_book_new) }, + { "e_book_open", reinterpret_cast(&e_book_open) }, + { "e_book_get_source", reinterpret_cast(&e_book_get_source) }, + { "e_book_get_contacts", reinterpret_cast(&e_book_get_contacts) }, + { "e_book_query_field_test", reinterpret_cast(&e_book_query_field_test) }, + { "e_book_query_and", reinterpret_cast(&e_book_query_and) }, + { "e_book_query_or", reinterpret_cast(&e_book_query_or) }, + { "e_book_query_not", reinterpret_cast(&e_book_query_not) }, + { "e_book_query_ref", reinterpret_cast(&e_book_query_ref) }, + { "e_book_query_unref", reinterpret_cast(&e_book_query_unref) }, + { "e_book_query_from_string", reinterpret_cast(&e_book_query_from_string) }, + { "e_book_query_to_string", reinterpret_cast(&e_book_query_to_string) }, + { "e_book_query_field_exists", reinterpret_cast(&e_book_query_field_exists) } +}; + +const ApiMap aNewApiMap[] = +{ + { "e_source_registry_list_sources", reinterpret_cast(&e_source_registry_list_sources) }, + { "e_source_registry_new_sync", reinterpret_cast(&e_source_registry_new_sync) }, + { "e_source_has_extension", reinterpret_cast(&e_source_has_extension) }, + { "e_source_get_extension", reinterpret_cast(&e_source_get_extension) }, + { "e_source_backend_get_backend_name", reinterpret_cast(&e_source_backend_get_backend_name) }, + { "e_source_get_display_name", reinterpret_cast(&e_source_get_display_name) }, + { "e_source_get_uid", reinterpret_cast(&e_source_get_uid) }, + { "e_source_registry_ref_source", reinterpret_cast(&e_source_registry_ref_source) }, + { "e_client_open_sync", reinterpret_cast(&e_client_open_sync) }, + { "e_client_get_source", reinterpret_cast(&e_client_get_source) }, + { "e_book_client_get_contacts_sync", reinterpret_cast(&e_book_client_get_contacts_sync) }, + { "e_client_util_free_object_slist", reinterpret_cast(&e_client_util_free_object_slist) } +}; + +//>= direct read access API (>= 3.8) +const ApiMap aClientApiMap38[] = +{ + { "e_book_client_connect_direct_sync", reinterpret_cast(&e_book_client_connect_direct_sync) } +}; + +template 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( + 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: */ -- cgit v1.2.3