binding: add ping() API call
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>
Tue, 12 Sep 2017 09:29:27 +0000 (11:29 +0200)
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>
Tue, 12 Sep 2017 09:29:27 +0000 (11:29 +0200)
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
generate-binding-glue.py
src/afb_binding_api.cpp

index 7e003a5..db0b546 100644 (file)
@@ -49,7 +49,10 @@ def emit_func_impl(api, f):
 
 def emit_func(api, f):
     p('void %(impl_name)s(afb_req req) noexcept {' % f)
-    p('   std::lock_guard<std::mutex> guard(binding_m);')
+    #p('   std::lock_guard<std::mutex> guard(binding_m);')
+    p('   #ifdef ST')
+    p('   ST();')
+    p('   #endif')
     p('   if (g_afb_instance == nullptr) {',
       '      afb_req_fail(req, "failed", "Binding not initialized, did the compositor die?");',
       '      return;',
@@ -127,6 +130,7 @@ API = {
                 ],
             },
             { 'name': 'list_drawing_names', },
+            { 'name': 'ping' },
 
             { 'name': 'debug_status', },
             { 'name': 'debug_layers', },
index d0df3b6..7e6aa89 100644 (file)
@@ -99,4 +99,9 @@ binding_api::result_type binding_api::debug_terminate() {
    return Ok(json_object_new_object());
 }
 
+binding_api::result_type binding_api::ping() {
+   this->app->dispatch_events();
+   return Ok(json_object_new_object());
+}
+
 }  // namespace wm