cc8d88cc64
Fix GetObjectPath() in integration tests
2020-07-18 20:30:51 +02:00
bded067496
Fix #43 : Clean up integration tests
2020-07-18 20:21:47 +02:00
c1c4512f9f
Fix build with gcc8.3
...
sdbus::ObjectPath and sdbus::Signature copy constructors are implicitly
declared as deleted when compiling with Linaro's ARM toolchain [1] gcc8.3.
Explicitly listing the copy constructors for affected classes fixes the problem.
[1] https://www.linaro.org/
2020-07-16 18:53:18 +02:00
175c43ec53
Bump revision up to v0.8.2
v0.8.2
2020-06-17 15:29:46 +02:00
c137dfa213
Fix potential data race in Proxy's condition variable
2020-06-17 09:13:30 +02:00
a0dadcc6fe
Fix integration tests after getObjectPath() introduction failed them
2020-06-16 17:25:01 +02:00
0d010440c5
Fix build with clang 9.0.1 and libcxx
...
This should not be required in C++17 because there is an appropriate
class template deduction rule [1] which infers that it's going to be a
weak_ptr<T> when constructing from a shared_ptr<T>. However, in
clang/LLVM's libcxx C++ STL implementation this only got implemented in
May 2020 [2].
[1] https://en.cppreference.com/w/cpp/memory/weak_ptr/deduction_guides
[2] https://reviews.llvm.org/D69603
2020-06-16 16:51:53 +02:00
ae8849e545
Implement #104 : add getObjectPath() for classes ( #105 )
...
* Implement #104 : add getObjectPath() for classes
* Implement #104 : changes requested in review
Co-authored-by: Christian Schneider <cschneider@radiodata.biz >
2020-05-28 15:36:58 +02:00
fb35a9a196
Fix integration test cases failing in specific situations
2020-05-17 15:06:29 +02:00
6cbd49ddaa
Install proper public sd-bus headers in internal libsystemd build
2020-05-17 15:05:24 +02:00
fb0a70a831
Fix #101 : sanitize names of namespaces/methods/signals/properties/arguments ( #102 )
...
- add a list of c++ keywords and common defines
- sanitize names so that there are no functions/args with names that are reserved in c++
Co-authored-by: Christian Schneider <cschneider@radiodata.biz >
2020-05-16 22:57:37 +02:00
9af20af001
Fixed integration tests for libsystemd older than 242
2020-05-09 22:02:57 +02:00
63bbb07ef0
Fixup for 00d0837d98
...
* Add PendingAsyncCall return value to all relevant overloads of
IProxy::callMethod().
2020-04-08 16:41:29 +02:00
00d0837d98
Introduce support for cancellable async calls
2020-04-04 16:30:56 +02:00
e91bedd4cb
Fix #92 : CallData race condition in Proxy::callMethod
2020-04-02 20:46:38 +02:00
dc66efbbcb
Fix #93 : Get signals working for multiple proxies.
...
* Proxy::sdbus_signal_handler() needs to return 0 instead of 1 in
order to allow multiple proxies listening to a signal all being
triggered.
* Add test for emitting a signal to multiple proxies on same
connection.
2020-03-26 21:19:18 +01:00
a23aadbe5e
Fix required CMake version to v3.13
...
Fixes #86
2020-02-14 14:31:14 +01:00
ae57c6760b
sdbus-c++-xml2cpp: fixed file existence condition
...
fixes issue: https://github.com/Kistler-Group/sdbus-cpp/issues/83
2020-02-04 12:18:50 +01:00
21820f7529
Update using-sdbus-c++.md
2020-02-02 23:03:24 +01:00
3a4f343fb9
Provide better names to event loop-related IConnection methods
v0.8.1
2020-02-02 22:22:26 +01:00
dee6adce02
Bump revision up to v0.8.1
2020-02-02 02:31:39 +01:00
3e68fee4cd
Switch to more modern CMake
2020-02-02 02:29:32 +01:00
8dfd29b0f0
Fix clang-9 warnings
2020-02-01 23:26:27 +01:00
db71707be4
Update tutorial for for full use of C++17
2020-02-01 23:03:44 +01:00
c9583f2887
Update README for full usage of C++17
2020-02-01 23:01:09 +01:00
975f1bf07f
Switch to fully supported C++17
2020-02-01 22:58:34 +01:00
d591b69f92
Bump revision up to 0.8.0
v0.8.0
2020-02-01 13:56:13 +01:00
49586001d6
Try to better explain the design and how to use connections in objects and proxies
2020-02-01 13:38:51 +01:00
aa8e9123de
Update the tutorial for new method parameter names feature
2020-02-01 12:38:39 +01:00
eade6a0e44
Add support for method and signal parameter names in introspection
2020-02-01 12:38:39 +01:00
10977c6137
Bump revision up to 0.7.8
v0.7.8
2020-01-25 23:38:54 +01:00
1e455b8ef3
Fix inline variable since in v0.7 version line we still support gcc 6
2020-01-25 22:31:41 +01:00
75709e31f1
Fix sporadic race condition between Variant and underlying bus
...
The underlying bus was thread_local, but the design assumption that Variants built on top of that instance won't outlive the thread was incorrect. In stress tests, Variants were moved (and this is completely legal) to a different thread.
2020-01-25 22:31:41 +01:00
245db893b8
Remove obsolete section on Yocto recipes for sdbus-c++
2020-01-23 16:58:48 +01:00
477c5dd714
Update section on Yocto recipes for sdbus-c++
2020-01-23 16:57:42 +01:00
b25534013f
Fix lock_guard variable declaration (don't yet use newer C++17 features)
v0.7.7
2020-01-19 19:17:04 +01:00
68b5eac9e9
Bump revision up to 0.7.7
2020-01-19 18:59:36 +01:00
4310a3bd17
Little fix of order of destruction in stress tests
2020-01-19 18:57:14 +01:00
f41d9bc395
Fix issue of event loop thread and synchronous method call thread polling on the same D-Bus connection
...
Synchronous D-Bus method calls are now done in terms of blocking asynchronous calls.
2020-01-19 18:51:19 +01:00
5121d46eed
Bump revision up to 0.7.6
v0.7.6
2020-01-05 22:49:26 +01:00
121ed1a975
Fix clang-8 compilation errors and warnings
2020-01-05 12:52:37 +01:00
cc495811f9
Bump revision up to 0.7.5
v0.7.5
2019-11-10 17:43:14 +01:00
839bc13625
Make Connection const-correct and fix integration tests build error
2019-11-10 17:40:33 +01:00
5fe0f503ca
Add a method to retrieve the unique name of a connection
2019-11-10 17:34:57 +01:00
d50a15b2a2
Move C++17 uncaught_exceptions to public API
2019-11-10 17:31:58 +01:00
3a76e9c120
Bump revision up to 0.7.4
v0.7.4
2019-11-03 20:40:13 +01:00
304b69dd8b
Use tag dispatching to construct various types of Connection, refactor Connection unit tests
2019-11-03 20:30:52 +01:00
099bc857ad
Add support for opening a connection to a remote system bus using ssh ( #77 )
2019-11-03 20:21:39 +01:00
c139110112
Add support for custom timeout value for D-Bus method calls ( #72 )
2019-11-03 13:54:13 +01:00
e7155c5506
Bump revision up to 0.7.3
v0.7.3
2019-10-13 15:39:32 +02:00