lineagehw: hidl: touch: run clang-format
authorJan Altensen <info@stricted.net>
Fri, 19 Jul 2019 23:00:46 +0000 (01:00 +0200)
committerPaul Keith <javelinanddart@gmail.com>
Sun, 21 Jul 2019 03:24:12 +0000 (05:24 +0200)
Change-Id: If7126936fc4e0804c29061c7ecc706228654af15

lineagehw/hidl/touch/.clang-format [new file with mode: 0644]
lineagehw/hidl/touch/GloveMode.cpp
lineagehw/hidl/touch/GloveMode.h
lineagehw/hidl/touch/KeyDisabler.h
lineagehw/hidl/touch/StylusMode.cpp
lineagehw/hidl/touch/StylusMode.h
lineagehw/hidl/touch/TouchscreenGesture.cpp
lineagehw/hidl/touch/TouchscreenGesture.h
lineagehw/hidl/touch/service.cpp

diff --git a/lineagehw/hidl/touch/.clang-format b/lineagehw/hidl/touch/.clang-format
new file mode 100644 (file)
index 0000000..ae4a451
--- /dev/null
@@ -0,0 +1,11 @@
+BasedOnStyle: Google
+AccessModifierOffset: -2
+AllowShortFunctionsOnASingleLine: Inline
+ColumnLimit: 100
+CommentPragmas: NOLINT:.*
+DerivePointerAlignment: false
+IndentWidth: 4
+PointerAlignment: Left
+TabWidth: 4
+UseTab: Never
+PenaltyExcessCharacter: 32
index dcac846a3d493195718b01e70af6d742a3350aae..f059b61eab479ec6038f8c13205bb2a609e7b79b 100644 (file)
@@ -29,8 +29,7 @@ bool GloveMode::isSupported() {
     if (file.is_open()) {
         std::string line;
         while (getline(file, line)) {
-            if (!line.compare("glove_mode"))
-                return true;
+            if (!line.compare("glove_mode")) return true;
         }
         file.close();
     }
@@ -43,8 +42,7 @@ Return<bool> GloveMode::isEnabled() {
     if (file.is_open()) {
         std::string line;
         getline(file, line);
-        if (!line.compare("glove_mode,1:OK"))
-            return true;
+        if (!line.compare("glove_mode,1:OK")) return true;
         file.close();
     }
     return false;
index 7208a8d76632bb13164ff9c861df307464b538cf..25489bc4e993f5b0b70c0277111b8b3fa3d050d1 100644 (file)
@@ -17,9 +17,9 @@
 #ifndef VENDOR_LINEAGE_TOUCH_V1_0_GLOVEMODE_H
 #define VENDOR_LINEAGE_TOUCH_V1_0_GLOVEMODE_H
 
-#include <vendor/lineage/touch/1.0/IGloveMode.h>
 #include <hidl/MQDescriptor.h>
 #include <hidl/Status.h>
+#include <vendor/lineage/touch/1.0/IGloveMode.h>
 
 namespace vendor {
 namespace lineage {
@@ -46,7 +46,6 @@ class GloveMode : public IGloveMode {
     Return<bool> setEnabled(bool enabled) override;
 
     // Methods from ::android::hidl::base::V1_0::IBase follow.
-
 };
 
 }  // namespace samsung
index 3b56b469eb81da8b3e3d9c0b630d922134496c62..9cab414d2e4a83a1588f3be697ed6039406a6ac5 100644 (file)
@@ -17,9 +17,9 @@
 #ifndef VENDOR_LINEAGE_TOUCH_V1_0_KEYDISABLER_H
 #define VENDOR_LINEAGE_TOUCH_V1_0_KEYDISABLER_H
 
-#include <vendor/lineage/touch/1.0/IKeyDisabler.h>
 #include <hidl/MQDescriptor.h>
 #include <hidl/Status.h>
+#include <vendor/lineage/touch/1.0/IKeyDisabler.h>
 
 namespace vendor {
 namespace lineage {
@@ -46,7 +46,6 @@ class KeyDisabler : public IKeyDisabler {
     Return<bool> setEnabled(bool enabled) override;
 
     // Methods from ::android::hidl::base::V1_0::IBase follow.
-
 };
 
 }  // namespace samsung
index aa86e7abeef1c85b688fffc125599e1c17d29749..e3190dbd3f4227be20f06caeb5536669fc5496c4 100644 (file)
@@ -29,8 +29,7 @@ bool StylusMode::isSupported() {
     if (file.is_open()) {
         std::string line;
         while (getline(file, line)) {
-            if (!line.compare("hover_enable"))
-                return true;
+            if (!line.compare("hover_enable")) return true;
         }
         file.close();
     }
@@ -43,8 +42,7 @@ Return<bool> StylusMode::isEnabled() {
     if (file.is_open()) {
         std::string line;
         getline(file, line);
-        if (!line.compare("hover_enable,1:OK"))
-            return true;
+        if (!line.compare("hover_enable,1:OK")) return true;
         file.close();
     }
     return false;
index 2eae6c8fac65e2684be47e863d885aa4ec8f7857..6226ca5adca735f1f362cb05af3de3d5920e3e82 100644 (file)
@@ -17,9 +17,9 @@
 #ifndef VENDOR_LINEAGE_TOUCH_V1_0_STYLUSMODE_H
 #define VENDOR_LINEAGE_TOUCH_V1_0_STYLUSMODE_H
 
-#include <vendor/lineage/touch/1.0/IStylusMode.h>
 #include <hidl/MQDescriptor.h>
 #include <hidl/Status.h>
+#include <vendor/lineage/touch/1.0/IStylusMode.h>
 
 namespace vendor {
 namespace lineage {
@@ -46,7 +46,6 @@ class StylusMode : public IStylusMode {
     Return<bool> setEnabled(bool enabled) override;
 
     // Methods from ::android::hidl::base::V1_0::IBase follow.
-
 };
 
 }  // namespace samsung
index 1f47115eac3e7f8e6c0c22ce9d73e174cd5e11da..c0091a6d57d7bf37a671f7bc70d481873b8349af 100644 (file)
@@ -27,14 +27,15 @@ namespace samsung {
 static constexpr const char* kGeasturePath = "/sys/class/sec/sec_epen/epen_gestures";
 
 const std::map<int32_t, TouchscreenGesture::GestureInfo> TouchscreenGesture::kGestureInfoMap = {
+    // clang-format off
     {0, {0x2f1, "Swipe up stylus"}},
     {1, {0x2f2, "Swipe down stylus"}},
     {2, {0x2f3, "Swipe left stylus"}},
     {3, {0x2f4, "Swipe right stylus"}},
     {4, {0x2f5, "Long press stylus"}},
+    // clang-format on
 };
 
-
 bool TouchscreenGesture::isSupported() {
     std::ifstream file(kGeasturePath);
     return file.good();
@@ -57,7 +58,7 @@ Return<bool> TouchscreenGesture::setGestureEnabled(
     std::fstream file(kGeasturePath);
     int gestureMode;
     int mask = 1 << gesture.id;
-    
+
     file >> gestureMode;
 
     if (enabled)
@@ -70,7 +71,6 @@ Return<bool> TouchscreenGesture::setGestureEnabled(
     return !file.fail();
 }
 
-
 // Methods from ::android::hidl::base::V1_0::IBase follow.
 
 }  // namespace samsung
index c1d7c708d294919bd02e50ff168caab414b74465..35517f1b2a15bad97404c34f413c86bedbd1c132 100644 (file)
@@ -17,9 +17,9 @@
 #ifndef VENDOR_LINEAGE_TOUCH_V1_0_TOUCHSCREENGESTURE_H
 #define VENDOR_LINEAGE_TOUCH_V1_0_TOUCHSCREENGESTURE_H
 
-#include <vendor/lineage/touch/1.0/ITouchscreenGesture.h>
 #include <hidl/MQDescriptor.h>
 #include <hidl/Status.h>
+#include <vendor/lineage/touch/1.0/ITouchscreenGesture.h>
 
 namespace vendor {
 namespace lineage {
@@ -50,7 +50,6 @@ class TouchscreenGesture : public ITouchscreenGesture {
         const char* name;
     } GestureInfo;
     static const std::map<int32_t, GestureInfo> kGestureInfoMap;  // id -> info
-
 };
 
 // FIXME: most likely delete, this is only for passthrough implementations
index 1bdc66fc3dc32418350c5b59a949e63b3ae5d0e8..e12326c3725fb66d08ef02a1fe57f822e625b694 100644 (file)
@@ -74,9 +74,8 @@ int main() {
     if (gloveMode->isSupported()) {
         status = gloveMode->registerAsService();
         if (status != OK) {
-            LOG(ERROR)
-                << "Could not register service for Touch HAL GloveMode Iface ("
-                << status << ")";
+            LOG(ERROR) << "Could not register service for Touch HAL GloveMode Iface (" << status
+                       << ")";
             goto shutdown;
         }
     }
@@ -84,9 +83,8 @@ int main() {
     if (keyDisabler->isSupported()) {
         status = keyDisabler->registerAsService();
         if (status != OK) {
-            LOG(ERROR)
-                << "Could not register service for Touch HAL KeyDisabler Iface ("
-                << status << ")";
+            LOG(ERROR) << "Could not register service for Touch HAL KeyDisabler Iface (" << status
+                       << ")";
             goto shutdown;
         }
     }
@@ -94,9 +92,8 @@ int main() {
     if (stylusMode->isSupported()) {
         status = stylusMode->registerAsService();
         if (status != OK) {
-            LOG(ERROR)
-                << "Could not register service for Touch HAL StylusMode Iface ("
-                << status << ")";
+            LOG(ERROR) << "Could not register service for Touch HAL StylusMode Iface (" << status
+                       << ")";
             goto shutdown;
         }
     }
@@ -104,16 +101,15 @@ int main() {
     if (touchscreenGesture->isSupported()) {
         status = touchscreenGesture->registerAsService();
         if (status != OK) {
-            LOG(ERROR)
-                << "Could not register service for Touch HAL TouchscreenGesture Iface ("
-                << status << ")";
+            LOG(ERROR) << "Could not register service for Touch HAL TouchscreenGesture Iface ("
+                       << status << ")";
             goto shutdown;
         }
     }
 
     LOG(INFO) << "Touch HAL service is ready.";
     joinRpcThreadpool();
-    // Should not pass this line
+// Should not pass this line
 
 shutdown:
     // In normal operation, we don't expect the thread pool to shutdown