AFBClient: use fputs where sensible, more this-> name qualification
[staging/windowmanager.git] / AFBClient.cpp
index 5fadc35..e47e23f 100644 (file)
@@ -44,8 +44,7 @@ class AFBClient::Impl {
     int deactivateSurface(const char *label);
     int endDraw(const char *label);
 
-    void set_event_handler(enum EventType et,
-                           std::function<void(char const *label)> f);
+    void set_event_handler(enum EventType et, handler_fun func);
 
     Impl();
     ~Impl();
@@ -80,7 +79,7 @@ constexpr const char *const wmAPI = "winman";
 struct ScopeTrace {
     thread_local static int indent;
     char const *f{};
-    ScopeTrace(char const *func) : f(func) {
+    explicit ScopeTrace(char const *func) : f(func) {
         fprintf(stderr, "%*s%s -->\n", 2 * indent++, "", this->f);
     }
     ~ScopeTrace() { fprintf(stderr, "%*s%s <--\n", 2 * --indent, "", this->f); }
@@ -111,12 +110,11 @@ void onHangup(void *closure, afb_wsj1 *wsj1) {
     TRACE();
     UNUSED(closure);
     UNUSED(wsj1);
-    printf("ON-HANGUP\n");
-    fflush(stdout);
-    exit(0);
+    fputs("Hangup, the WindowManager vanished\n", stderr);
+    exit(1);
 }
 
-constexpr static struct afb_wsj1_itf itf = {
+constexpr struct afb_wsj1_itf itf = {
     onHangup, onCall, onEvent,
 };
 
@@ -132,7 +130,7 @@ void dispatch_internal(struct sd_event *loop) {
 /// object will be json_object_put
 int api_call(struct sd_event *loop, struct afb_wsj1 *wsj1, const char *verb,
              json_object *object,
-             std::function<void(bool, json_object *)> onReply) {
+             const std::function<void(bool, json_object *)> &onReply) {
     TRACE();
 
     // We need to wrap the actual onReply call once in order to
@@ -141,7 +139,7 @@ int api_call(struct sd_event *loop, struct afb_wsj1 *wsj1, const char *verb,
     // Alternatively we could setup a local struct and use it as
     // closure, but I think it is cleaner this way.
     int call_rc = 0;
-    std::atomic<bool> returned;
+    std::atomic<bool> returned{};
     returned.store(false, std::memory_order_relaxed);
     std::function<void(bool, json_object *)> wrappedOnReply =
         [&returned, &call_rc, &onReply](bool ok, json_object *j) {
@@ -164,7 +162,7 @@ int api_call(struct sd_event *loop, struct afb_wsj1 *wsj1, const char *verb,
             auto *onReply =
                 reinterpret_cast<std::function<void(bool, json_object *)> *>(
                     closure);
-            (*onReply)(!!afb_wsj1_msg_is_reply_ok(msg),
+            (*onReply)(!(afb_wsj1_msg_is_reply_ok(msg) == 0),
                        afb_wsj1_msg_object_j(msg));
         },
         &wrappedOnReply);
@@ -207,7 +205,6 @@ AFBClient::Impl::~Impl() {
     TRACE();
     afb_wsj1_unref(wsj1);
     sd_event_unref(loop);
-    loop = nullptr;
 }
 
 int AFBClient::Impl::init(int port, char const *token) {
@@ -215,28 +212,34 @@ int AFBClient::Impl::init(int port, char const *token) {
     char *uribuf = nullptr;
     int rc = -1;
 
-    if (!token || strlen(token) > token_maxlen) {
-        fprintf(stderr, "Token is invalid\n");
+    if (this->loop != nullptr && this->wsj1 != nullptr) {
+        fputs("AFBClient instance is already initialized!\n", stderr);
+        rc = -EALREADY;
+        goto fail;
+    }
+
+    if ((token == nullptr) || strlen(token) > token_maxlen) {
+        fputs("Token is invalid\n", stderr);
         rc = -EINVAL;
         goto fail;
     }
 
-    for (char const *p = token; *p; p++) {
-        if (!isalnum(*p)) {
-            fprintf(stderr, "Token is invalid\n");
+    for (char const *p = token; *p != 0; p++) {
+        if (isalnum(*p) == 0) {
+            fputs("Token is invalid\n", stderr);
             rc = -EINVAL;
             goto fail;
         }
     }
 
     if (port < 1 && port > 0xffff) {
-        fprintf(stderr, "Port is invalid\n");
+        fputs("Port is invalid\n", stderr);
         rc = -EINVAL;
         goto fail;
     }
 
     /* get the default event loop */
-    rc = sd_event_default(&loop);
+    rc = sd_event_default(&this->loop);
     if (rc < 0) {
         fprintf(stderr, "Connection to default event loop failed: %s\n",
                 strerror(-rc));
@@ -246,10 +249,11 @@ int AFBClient::Impl::init(int port, char const *token) {
     asprintf(&uribuf, "ws://localhost:%d/api?token=%s", port, token);
 
     /* connect the websocket wsj1 to the uri given by the first argument */
-    wsj1 = afb_ws_client_connect_wsj1(
-        loop, uribuf, const_cast<struct afb_wsj1_itf *>(&itf), this);
-    if (wsj1 == nullptr) {
-        sd_event_unref(loop);
+    this->wsj1 = afb_ws_client_connect_wsj1(
+        this->loop, uribuf, const_cast<struct afb_wsj1_itf *>(&itf), this);
+    if (this->wsj1 == nullptr) {
+        sd_event_unref(this->loop);
+        this->loop = nullptr;
         fprintf(stderr, "Connection to %s failed: %m\n", uribuf);
         rc = -errno;
         goto fail;
@@ -263,14 +267,15 @@ fail:
 
 int AFBClient::Impl::dispatch() {
     std::lock_guard<std::recursive_mutex> guard(dispatch_mutex);
-    return sd_event_run(loop, 1);
+    return sd_event_run(this->loop, 1);
+}
 }
 
 int AFBClient::Impl::requestSurface(const char *label) {
     TRACE();
 
     if (this->labels.find(label) != this->labels.end()) {
-        fprintf(stderr, "Surface label already known!\n");
+        fputs("Surface label already known!\n", stderr);
         return -EINVAL;
     }
 
@@ -295,15 +300,16 @@ int AFBClient::Impl::requestSurface(const char *label) {
                 }
             } else {
                 fprintf(stderr, "Could not get surface ID from WM: %s\n",
-                        j ? json_object_to_json_string_ext(
-                                j, JSON_C_TO_STRING_PRETTY)
-                          : "no-info");
+                        j != nullptr ? json_object_to_json_string_ext(
+                                           j, JSON_C_TO_STRING_PRETTY)
+                                     : "no-info");
                 rc = -EINVAL;
             }
         });
 
-    if (rc2 < 0)
+    if (rc2 < 0) {
         rc = rc2;
+    }
 
     if (rc >= 0) {
         this->labels.insert(this->labels.end(), label);
@@ -316,30 +322,30 @@ int AFBClient::Impl::activateSurface(const char *label) {
     TRACE();
     json_object *j = json_object_new_object();
     json_object_object_add(j, "drawing_name", json_object_new_string(label));
-    return api_call(loop, wsj1, "activate_surface", j, [](bool ok,
-                                                          json_object *j) {
-        if (!ok) {
-            fprintf(
-                stderr, "API Call activate_surface() failed: %s\n",
-                j ? json_object_to_json_string_ext(j, JSON_C_TO_STRING_PRETTY)
-                  : "no-info");
-        }
-    });
+    return api_call(
+        loop, wsj1, "activate_surface", j, [](bool ok, json_object *j) {
+            if (!ok) {
+                fprintf(stderr, "API Call activate_surface() failed: %s\n",
+                        j != nullptr ? json_object_to_json_string_ext(
+                                           j, JSON_C_TO_STRING_PRETTY)
+                                     : "no-info");
+            }
+        });
 }
 
 int AFBClient::Impl::deactivateSurface(const char *label) {
     TRACE();
     json_object *j = json_object_new_object();
     json_object_object_add(j, "drawing_name", json_object_new_string(label));
-    return api_call(loop, wsj1, "deactivate_surface", j, [](bool ok,
-                                                            json_object *j) {
-        if (!ok) {
-            fprintf(
-                stderr, "API Call deactivate_surface() failed: %s\n",
-                j ? json_object_to_json_string_ext(j, JSON_C_TO_STRING_PRETTY)
-                  : "no-info");
-        }
-    });
+    return api_call(
+        loop, wsj1, "deactivate_surface", j, [](bool ok, json_object *j) {
+            if (!ok) {
+                fprintf(stderr, "API Call deactivate_surface() failed: %s\n",
+                        j != nullptr ? json_object_to_json_string_ext(
+                                           j, JSON_C_TO_STRING_PRETTY)
+                                     : "no-info");
+            }
+        });
 }
 
 int AFBClient::Impl::endDraw(const char *label) {
@@ -348,18 +354,16 @@ int AFBClient::Impl::endDraw(const char *label) {
     json_object_object_add(j, "drawing_name", json_object_new_string(label));
     return api_call(loop, wsj1, "enddraw", j, [](bool ok, json_object *j) {
         if (!ok) {
-            fprintf(
-                stderr, "API Call endDraw() failed: %s\n",
-                j ? json_object_to_json_string_ext(j, JSON_C_TO_STRING_PRETTY)
-                  : "no-info");
+            fprintf(stderr, "API Call endDraw() failed: %s\n",
+                    j != nullptr ? json_object_to_json_string_ext(
+                                       j, JSON_C_TO_STRING_PRETTY)
+                                 : "no-info");
         }
     });
 }
 
 void AFBClient::Impl::set_event_handler(
     enum EventType et, std::function<void(char const *)> func) {
-    UNUSED(et);
-    UNUSED(func);
     TRACE();
 
     if (et >= 1 && et <= 6) {  // Yeah ... just go with it!
@@ -372,16 +376,16 @@ std::pair<bool, AFBClient::EventType> make_event_type(char const *et) {
     // Event have the form "$API/$EVENT", just try to find the first / and
     // get on with it.
     char const *et2 = strchr(et, '/');
-    if (et2) {
+    if (et2 != nullptr) {
         et = et2 + 1;
     }
 
-#define ET(N, A)                                               \
-    do {                                                       \
-        if (strcasecmp(et, N) == 0)                            \
-            return std::make_pair<bool, AFBClient::EventType>( \
-                true, CONCAT(AFBClient::Event_, A));           \
-    } while (0)
+#define ET(N, A)                                          \
+    do {                                                  \
+        if (strcasecmp(et, N) == 0)                       \
+            return std::pair<bool, AFBClient::EventType>( \
+                true, CONCAT(AFBClient::Event_, A));      \
+    } while (false)
 
     ET("activated", Active);
     ET("deactivated", Inactive);
@@ -391,8 +395,8 @@ std::pair<bool, AFBClient::EventType> make_event_type(char const *et) {
     ET("flushdraw", FlushDraw);
 #undef ET
 
-    return std::make_pair<bool, AFBClient::EventType>(false,
-                                                      AFBClient::Event_Active);
+    return std::pair<bool, AFBClient::EventType>(false,
+                                                 AFBClient::Event_Active);
 }
 }  // namespace
 
@@ -406,7 +410,9 @@ void AFBClient::Impl::event(char const *et, char const *label) {
 
     auto i = this->handlers.find(oet.second);
     if (i != this->handlers.end()) {
-        i->second(label);
+        if (this->labels.find(label) != this->labels.end()) {
+            i->second(label);
+        }
     }
 }