summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Huss <dirk_huss@mentor.com>2015-12-09 14:30:44 +0100
committerDirk Huss <dirk_huss@mentor.com>2015-12-09 14:30:44 +0100
commit77d9cdaf6acee03a1e360e0e1a3cd0b01a95b407 (patch)
tree4ed26f279ad0ae147af50d4a85072ebed751ce26
parentb545ed39392a73c1f3c432ec6ae3558f6ab161d5 (diff)
downloadgenivi-common-api-runtime-77d9cdaf6acee03a1e360e0e1a3cd0b01a95b407.tar.gz
CommonAPI 3.1.5list
-rw-r--r--CMakeLists.txt4
-rw-r--r--README2
-rw-r--r--include/CommonAPI/ProxyManager.hpp6
-rw-r--r--include/CommonAPI/Variant.hpp4
-rw-r--r--src/CommonAPI/Runtime.cpp16
5 files changed, 16 insertions, 16 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7b212df..961674f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -10,7 +10,7 @@ PROJECT(libcommonapi)
# version of CommonAPI
SET( LIBCOMMONAPI_MAJOR_VERSION 3 )
SET( LIBCOMMONAPI_MINOR_VERSION 1 )
-SET( LIBCOMMONAPI_PATCH_VERSION 4 )
+SET( LIBCOMMONAPI_PATCH_VERSION 5 )
message(STATUS "Project name: ${PROJECT_NAME}")
@@ -229,7 +229,7 @@ endif()
# create pkg-config file
if(NOT WIN32 AND PKG_CONFIG_FOUND)
configure_file(CommonAPI.pc.in ${PROJECT_BINARY_DIR}/CommonAPI.pc @ONLY)
- install(FILES ${PROJECT_BINARY_DIR}/CommonAPI.pc DESTINATION lib/pkconfig)
+ install(FILES ${PROJECT_BINARY_DIR}/CommonAPI.pc DESTINATION lib/pkgconfig)
endif()
##############################################################################
diff --git a/README b/README
index 02f1a3b..c790ed2 100644
--- a/README
+++ b/README
@@ -1,3 +1,3 @@
-This is CommonAPI 3.1.4
+This is CommonAPI 3.1.5
Please refer to INSTALL for further information. \ No newline at end of file
diff --git a/include/CommonAPI/ProxyManager.hpp b/include/CommonAPI/ProxyManager.hpp
index d7bcada..52d666c 100644
--- a/include/CommonAPI/ProxyManager.hpp
+++ b/include/CommonAPI/ProxyManager.hpp
@@ -18,6 +18,7 @@
#include <CommonAPI/Event.hpp>
#include <CommonAPI/Proxy.hpp>
#include <CommonAPI/Types.hpp>
+#include <CommonAPI/Runtime.hpp>
namespace CommonAPI {
@@ -52,13 +53,12 @@ public:
template<template<typename ...> class ProxyClass_, typename ... AttributeExtensions_>
std::shared_ptr<ProxyClass_<AttributeExtensions_...> >
- buildProxy(const std::string &_instance) {
- std::shared_ptr<Proxy> proxy = createProxy(getDomain(), getInterface(), _instance, getConnectionId());
+ buildProxy(const std::string &_instance, const ConnectionId_t& _connectionId = DEFAULT_CONNECTION_ID) {
+ std::shared_ptr<Proxy> proxy = createProxy(getDomain(), getInterface(), _instance, (DEFAULT_CONNECTION_ID == _connectionId) ? getConnectionId() : _connectionId);
if (proxy) {
return std::make_shared<ProxyClass_<AttributeExtensions_...>>(proxy);
}
return NULL;
-
}
protected:
diff --git a/include/CommonAPI/Variant.hpp b/include/CommonAPI/Variant.hpp
index 34304b9..4500aae 100644
--- a/include/CommonAPI/Variant.hpp
+++ b/include/CommonAPI/Variant.hpp
@@ -197,6 +197,10 @@ public:
return valueType_;
}
+ uint8_t getMaxValueType() const {
+ return uint8_t(TypesTupleSize::value);
+ }
+
private:
template<typename Type_>
void set(const Type_ &_value, const bool clear);
diff --git a/src/CommonAPI/Runtime.cpp b/src/CommonAPI/Runtime.cpp
index b2cab99..7d075a2 100644
--- a/src/CommonAPI/Runtime.cpp
+++ b/src/CommonAPI/Runtime.cpp
@@ -213,8 +213,7 @@ Runtime::createProxy(
// ...it seems do not, lets try to load a library that does...
std::lock_guard<std::mutex> itsGuard(loadMutex_);
std::string library = getLibrary(_domain, _interface, _instance, true);
- loadLibrary(library);
- {
+ if (loadLibrary(library) || defaultFactory_) {
proxy = createProxyHelper(_domain, _interface, _instance, _connectionId, true);
}
}
@@ -232,8 +231,7 @@ Runtime::createProxy(
// ...it seems do not, lets try to load a library that does...
std::lock_guard<std::mutex> itsGuard(loadMutex_);
std::string library = getLibrary(_domain, _interface, _instance, true);
- loadLibrary(library);
- {
+ if (loadLibrary(library) || defaultFactory_) {
proxy = createProxyHelper(_domain, _interface, _instance, _context, true);
}
}
@@ -249,8 +247,7 @@ Runtime::registerStub(const std::string &_domain, const std::string &_interface,
if (!isRegistered) {
std::string library = getLibrary(_domain, _interface, _instance, false);
std::lock_guard<std::mutex> itsGuard(loadMutex_);
- loadLibrary(library);
- {
+ if (loadLibrary(library) || defaultFactory_) {
isRegistered = registerStubHelper(_domain, _interface, _instance, _stub, _connectionId, true);
}
}
@@ -265,8 +262,7 @@ Runtime::registerStub(const std::string &_domain, const std::string &_interface,
if (!isRegistered) {
std::string library = getLibrary(_domain, _interface, _instance, false);
std::lock_guard<std::mutex> itsGuard(loadMutex_);
- loadLibrary(library);
- {
+ if (loadLibrary(library) || defaultFactory_) {
isRegistered = registerStubHelper(_domain, _interface, _instance, _stub, _context, true);
}
}
@@ -342,7 +338,7 @@ Runtime::loadLibrary(const std::string &_library) {
loadedLibraries_.insert(itsLibrary);
COMMONAPI_DEBUG("Loading interface library \"", itsLibrary, "\" succeeded.");
} else {
- //COMMONAPI_ERROR("Loading interface library \"", itsLibrary, "\" failed (", GetLastError(), ")");
+ COMMONAPI_DEBUG("Loading interface library \"", itsLibrary, "\" failed (", GetLastError(), ")");
isLoaded = false;
}
#else
@@ -351,7 +347,7 @@ Runtime::loadLibrary(const std::string &_library) {
COMMONAPI_DEBUG("Loading interface library \"", itsLibrary, "\" succeeded.");
}
else {
- //COMMONAPI_ERROR("Loading interface library \"", itsLibrary, "\" failed (", dlerror(), ")");
+ COMMONAPI_DEBUG("Loading interface library \"", itsLibrary, "\" failed (", dlerror(), ")");
isLoaded = false;
}
#endif