bootstrap: clean up commands
authorWonki Kim <wonki_.kim@samsung.com>
Mon, 23 Mar 2020 09:59:32 +0000 (18:59 +0900)
committerWonki Kim <wonki_.kim@samsung.com>
Mon, 23 Mar 2020 12:43:09 +0000 (21:43 +0900)
this patch
removes a warning,
and a crappy comment.

Change-Id: Ibff7c66ca8347fd3b61db65044ca3f70d549ce39

bootstrap/server/src/BootstrapServer.cc
bootstrap/server/src/Commands/SyncCommand.cc

index ae6c63c..e053a49 100644 (file)
 using namespace grpc;
 
 static gpointer
-_grpc_thread_func (gpointer data)
+_grpc_thread_func (gpointer data __attribute__((unused)))
 {
-    GMainLoop *loop = (GMainLoop*)data;
-
     std::string binding("0.0.0.0:50051");
     aurumServiceImpl service;
     ServerBuilder builder;
@@ -40,7 +38,8 @@ int main(int argc, char **argv)
     LOG_SCOPE_F(INFO, "Log : %s", logPath);
 
     loop = g_main_loop_new ( NULL , FALSE );
-    g_thread_new("grpc_thread", _grpc_thread_func, loop); //, TRUE, NULL);
+    g_thread_new("grpc_thread", _grpc_thread_func, loop);
+
     g_main_loop_run (loop);
     g_main_loop_unref(loop);
 
index 84ce694..9d09214 100644 (file)
@@ -15,14 +15,9 @@ SyncCommand::SyncCommand(const ::aurum::ReqEmpty *request,
     LOG_SCOPE_F(INFO, "Sync Command ");
     const AccessibleWatcher *accObj = AccessibleWatcher::getInstance();
 
-    AccessibleNode *root = accObj->getRootNode();
-    AccessibleNode *top = accObj->getTopNode();
-    LOG_F(INFO, "%p(%p) %p(%p)", root, root->getAccessible(), top,
-          top->getAccessible());
-
+    auto root = accObj->getRootNode();
+    LOG_F(INFO, "root node tree / depth : 2");
     root->print(0, 2);
-    LOG_F(INFO, "---------");
-    top->print(0, 2);
 
     return grpc::Status::OK;
 }
\ No newline at end of file