aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-11-18 14:43:06 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-11-18 14:43:06 +0100
commitb3e4cbdde1444b134d8b2729f3abcee405ca1241 (patch)
tree3bc2775ba0106e6c39bc8a129d6789d00c3bf841
parentdc16358bcceeb687df7f0a37fdcd3593844dcc7e (diff)
parentea5f8163231a81e4f0769a518db819c8a1fc78f6 (diff)
downloadayatana-indicator-datetime-b3e4cbdde1444b134d8b2729f3abcee405ca1241.tar.gz
ayatana-indicator-datetime-b3e4cbdde1444b134d8b2729f3abcee405ca1241.tar.bz2
ayatana-indicator-datetime-b3e4cbdde1444b134d8b2729f3abcee405ca1241.zip
Merge branch 'tari01-pr/enable-hfd-service-haptic'
Attributes GH PR #78: https://github.com/AyatanaIndicators/ayatana-indicator-datetime/pull/78
-rw-r--r--include/notifications/dbus-shared.h7
-rw-r--r--include/notifications/haptic.h8
-rw-r--r--src/haptic.cpp62
-rw-r--r--src/snap.cpp2
-rw-r--r--tests/manual2
-rw-r--r--tests/notification-fixture.h10
-rw-r--r--tests/test-notification.cpp4
7 files changed, 33 insertions, 62 deletions
diff --git a/include/notifications/dbus-shared.h b/include/notifications/dbus-shared.h
index ea47328..931667e 100644
--- a/include/notifications/dbus-shared.h
+++ b/include/notifications/dbus-shared.h
@@ -31,9 +31,8 @@
#define BUS_POWERD_PATH "/com/lomiri/Repowerd"
#define BUS_POWERD_INTERFACE "com.lomiri.Repowerd"
-//TODO: Reimplement using hfd-service
-//#define BUS_HAPTIC_NAME ""
-//#define BUS_HAPTIC_PATH ""
-//#define BUS_HAPTIC_INTERFACE ""
+#define BUS_HAPTIC_NAME "com.lomiri.hfd"
+#define BUS_HAPTIC_PATH "/com/lomiri/hfd"
+#define BUS_HAPTIC_INTERFACE "com.lomiri.hfd.Vibrator"
#endif /* INDICATOR_NOTIFICATIONS_DBUS_SHARED_H */
diff --git a/include/notifications/haptic.h b/include/notifications/haptic.h
index 2f4008a..ccf5298 100644
--- a/include/notifications/haptic.h
+++ b/include/notifications/haptic.h
@@ -1,5 +1,6 @@
/*
* Copyright 2014 Canonical Ltd.
+ * Copyright 2021 Robert Tari
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
@@ -15,6 +16,7 @@
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
+ * Robert Tari <robert@tari.in>
*/
#ifndef AYATANA_INDICATOR_NOTIFICATIONS_HAPTIC_H
@@ -36,12 +38,8 @@ namespace notifications {
class Haptic
{
public:
- enum Mode
- {
- MODE_PULSE
- };
- explicit Haptic(const Mode& mode = MODE_PULSE, bool repeat = false);
+ explicit Haptic(bool repeat = false);
~Haptic();
private:
diff --git a/src/haptic.cpp b/src/haptic.cpp
index d794ba7..7e09c24 100644
--- a/src/haptic.cpp
+++ b/src/haptic.cpp
@@ -39,8 +39,7 @@ class Haptic::Impl
{
public:
- Impl(const Mode& mode, bool repeat):
- m_mode(mode),
+ Impl(bool repeat):
m_cancellable(g_cancellable_new()),
m_repeat(repeat)
{
@@ -89,70 +88,47 @@ private:
{
g_return_if_fail (m_tag == 0);
- switch (m_mode)
- {
- case MODE_PULSE: // the only mode currently supported... :)
-
- // one second on, one second off.
- m_pattern = std::vector<uint32_t>({1000u, 1000u});
- break;
-
- }
-
if (m_repeat)
{
- // Set up a loop to keep repeating the pattern
- auto msec = std::accumulate(m_pattern.begin(), m_pattern.end(), 0u);
- m_tag = g_timeout_add(msec, call_vibrate_pattern_static, this);
+ // Set up a loop to keep repeating the pattern: one second on, one second off.
+ m_tag = g_timeout_add(2000, call_vibrate_static, this);
}
- call_vibrate_pattern();
+
+ call_vibrate();
}
- static gboolean call_vibrate_pattern_static (gpointer gself)
+ static gboolean call_vibrate_static (gpointer gself)
{
- static_cast<Impl*>(gself)->call_vibrate_pattern();
+ static_cast<Impl*>(gself)->call_vibrate();
return G_SOURCE_CONTINUE;
}
- void call_vibrate_pattern()
+ void call_vibrate()
{
- // build the vibrate pattern
GVariantBuilder builder;
- g_variant_builder_init (&builder, G_VARIANT_TYPE_ARRAY);
- for (const auto& msec : m_pattern)
- g_variant_builder_add_value (&builder, g_variant_new_uint32(msec));
- auto pattern_array = g_variant_builder_end (&builder);
-
- /* Use a repeat_count of 1 here because we handle looping ourselves.
- NB: VibratePattern could do it for us, but doesn't let us cancel
- a running loop -- we could keep vibrating even after "this" was
- destructed */
- auto repeat_count = g_variant_new_uint32 (1u);
-
- g_variant_builder_init (&builder, G_VARIANT_TYPE_TUPLE);
- g_variant_builder_add_value (&builder, pattern_array);
- g_variant_builder_add_value (&builder, repeat_count);
- //TODO: Reimplement using hfd-service
- /*auto vibrate_pattern_args = g_variant_builder_end (&builder);
+ auto duration = g_variant_new_int32 (1000);
+
+ g_variant_builder_init (&builder, G_VARIANT_TYPE_INT32);
+ g_variant_builder_add_value (&builder, duration);
+
+ auto vibrate_arg = g_variant_builder_end (&builder);
g_dbus_connection_call (m_bus,
BUS_HAPTIC_NAME,
BUS_HAPTIC_PATH,
BUS_HAPTIC_INTERFACE,
- "VibratePattern",
- vibrate_pattern_args,
+ "vibrate",
+ vibrate_arg,
nullptr,
G_DBUS_CALL_FLAGS_NONE,
-1,
m_cancellable,
nullptr,
- nullptr);*/
+ nullptr);
}
- const Mode m_mode;
GCancellable * m_cancellable = nullptr;
GDBusConnection * m_bus = nullptr;
- std::vector<uint32_t> m_pattern;
guint m_tag = 0;
bool m_repeat = false;
};
@@ -161,8 +137,8 @@ private:
****
***/
-Haptic::Haptic(const Mode& mode, bool repeat):
- impl(new Impl (mode, repeat))
+Haptic::Haptic(bool repeat):
+ impl(new Impl (repeat))
{
}
diff --git a/src/snap.cpp b/src/snap.cpp
index 37ce741..45cd299 100644
--- a/src/snap.cpp
+++ b/src/snap.cpp
@@ -128,7 +128,7 @@ public:
if (!silent_mode() || vibrate_in_silent_mode_enabled()) {
const auto haptic_mode = m_settings->alarm_haptic.get();
if (haptic_mode == "pulse")
- haptic = std::make_shared<ain::Haptic>(ain::Haptic::MODE_PULSE, appointment.is_alarm());
+ haptic = std::make_shared<ain::Haptic>(appointment.is_alarm());
}
}
diff --git a/tests/manual b/tests/manual
index d9e192c..cafc292 100644
--- a/tests/manual
+++ b/tests/manual
@@ -35,7 +35,7 @@ Test-case ayatana-indicator-datetime/new-alarm-wakeup
<dt>Unplug the phone from any USB connection and put it to sleep</dt>
<dd>Confirm that the alarm sounds on time even if the phone is asleep. (Note: if in doubt about sleep you can see in the syslog whether the device actually suspended or whether the suspend was aborted)</dd>
<dd>Confirm that the screen comes on when the alarm is triggered.<dd>
- <dd>[FIXME: No haptic support right now. Remove this comment after https://github.com/AyatanaIndicators/ayatana-indicator-datetime/issues/67 is resolved] If the device supports haptic feedback, confirm the alarm vibrates.</dd>
+ <dd>If the device supports haptic feedback, confirm the alarm vibrates.</dd>
</dl>
Test-case ayatana-indicator-datetime/disabled-alarms
diff --git a/tests/notification-fixture.h b/tests/notification-fixture.h
index acb3e63..2349bab 100644
--- a/tests/notification-fixture.h
+++ b/tests/notification-fixture.h
@@ -52,7 +52,7 @@ protected:
static constexpr char const * NOTIFY_INTERFACE {"org.freedesktop.Notifications"};
static constexpr char const * NOTIFY_PATH {"/org/freedesktop/Notifications"};
- static constexpr char const * HAPTIC_METHOD_VIBRATE_PATTERN {"VibratePattern"};
+ static constexpr char const * HAPTIC_METHOD_VIBRATE {"vibrate"};
static constexpr int SCREEN_COOKIE {8675309};
static constexpr char const * SCREEN_METHOD_KEEP_DISPLAY_ON {"keepDisplayOn"};
@@ -279,8 +279,6 @@ protected:
g_assert_no_error (error);
dbus_test_service_add_task(service, DBUS_TEST_TASK(screen_mock));
- //TODO: Reimplement using hfd-service
- /*
///
/// Add the haptic mock
///
@@ -292,13 +290,13 @@ protected:
&error);
dbus_test_dbus_mock_object_add_method(haptic_mock,
haptic_obj,
- HAPTIC_METHOD_VIBRATE_PATTERN,
- G_VARIANT_TYPE("(auu)"),
+ HAPTIC_METHOD_VIBRATE,
+ G_VARIANT_TYPE("i"),
nullptr,
"",
&error);
g_assert_no_error (error);
- dbus_test_service_add_task(service, DBUS_TEST_TASK(haptic_mock));*/
+ dbus_test_service_add_task(service, DBUS_TEST_TASK(haptic_mock));
startDbusMock();
}
diff --git a/tests/test-notification.cpp b/tests/test-notification.cpp
index 80eb04c..7dccb96 100644
--- a/tests/test-notification.cpp
+++ b/tests/test-notification.cpp
@@ -158,9 +158,9 @@ TEST_F(NotificationFixture,Notification)
// confirm that the vibration was as expected
if (expected_vibrate_called) {
- EXPECT_METHOD_CALLED_EVENTUALLY(haptic_mock, haptic_obj, HAPTIC_METHOD_VIBRATE_PATTERN);
+ EXPECT_METHOD_CALLED_EVENTUALLY(haptic_mock, haptic_obj, HAPTIC_METHOD_VIBRATE);
} else {
- EXPECT_METHOD_NOT_CALLED_EVENTUALLY(haptic_mock, haptic_obj, HAPTIC_METHOD_VIBRATE_PATTERN);
+ EXPECT_METHOD_NOT_CALLED_EVENTUALLY(haptic_mock, haptic_obj, HAPTIC_METHOD_VIBRATE);
}
// confirm that the notification was as expected