rename about module : mmi-core to mmi-client 91/281591/1
authordyamy-lee <dyamy.lee@samsung.com>
Mon, 5 Sep 2022 05:05:12 +0000 (14:05 +0900)
committerSuyeon Hwang <stom.hwang@samsung.com>
Tue, 20 Sep 2022 04:45:08 +0000 (13:45 +0900)
this module's role is more related saving client data.
So, changed module name from mmi-core to mmi-client

Change-Id: Iaa90457d8bc60996c26789e79ec32c62804048eb

src/meson.build
src/mmi-client.c [moved from src/mmi-core.c with 95% similarity]
src/mmi-client.h [moved from src/mmi-core.h with 91% similarity]
src/mmi.c
tests/mmi-main-test.cpp

index 13c5ee4..aea3c8b 100644 (file)
@@ -6,8 +6,8 @@ mmi_srcs = [
        'mmi-dbg.h',
        'mmi_proxy.h',
        'mmi_proxy.c',
-       'mmi-core.h',
-       'mmi-core.c',
+       'mmi-client.h',
+       'mmi-client.c',
        ]
 
 install_headers(
similarity index 95%
rename from src/mmi-core.c
rename to src/mmi-client.c
index 35b8e3a..f6ae932 100644 (file)
 
 #include "mmi-ipc.h"
 #include "mmi-dbg.h"
-#include "mmi-core.h"
+#include "mmi-client.h"
 
 static mmi_handle mmi_h = NULL;
 
-int mmi_core_create(void)
+int mmi_client_create(void)
 {
        mmi_h = (mmi_handle)calloc(1, sizeof(mmi_struct_s));
 
@@ -52,7 +52,7 @@ int mmi_core_create(void)
        return MMI_ERROR_NONE;
 }
 
-int mmi_core_destroy(void)
+int mmi_client_destroy(void)
 {
        if (mmi_h == NULL) {
                LOGE("A mmi_h is already NULL");
similarity index 91%
rename from src/mmi-core.h
rename to src/mmi-client.h
index 2d86325..aa0248a 100644 (file)
@@ -21,8 +21,8 @@
 * DEALINGS IN THE SOFTWARE.
 */
 
-#ifndef __MMI_CORE_H__
-#define __MMI_CORE_H__
+#ifndef __MMI_CLIENT_H__
+#define __MMI_CLIENT_H__
 
 #include "mmi-common.h"
 
@@ -40,11 +40,11 @@ typedef mmi_struct_s* mmi_handle;
 extern "C" {
 #endif
 
-int mmi_core_create(void);
-int mmi_core_destroy(void);
+int mmi_client_create(void);
+int mmi_client_destroy(void);
 
 #ifdef __cplusplus
 }
 #endif
 
-#endif //__MMI_CORE_H__
\ No newline at end of file
+#endif //__MMI_CLIENT_H__
\ No newline at end of file
index 54370a7..022974c 100644 (file)
--- a/src/mmi.c
+++ b/src/mmi.c
 */
 
 #include "mmi.h"
-#include "mmi-core.h"
+#include "mmi-client.h"
 #include "mmi-dbg.h"
 
 MMI_API int mmi_init(void)
 {
-       int ret = mmi_core_create();
+       int ret = mmi_client_create();
        if(ret != MMI_ERROR_NONE) {
-               LOGE("Fail to create mmi handle instance(%d)", ret);
+               LOGE("Fail to create mmi client(%d)", ret);
                return MMI_ERROR_NOT_SUPPORTED;
        }
 
@@ -38,9 +38,9 @@ MMI_API int mmi_init(void)
 
 MMI_API int mmi_shutdown(void)
 {
-       int ret = mmi_core_destroy();
+       int ret = mmi_client_destroy();
        if(ret != MMI_ERROR_NONE) {
-               LOGE("Fail to destroy mmi handle instance(%d)", ret);
+               LOGE("Fail to destroy mmi client(%d)", ret);
                return MMI_ERROR_NOT_SUPPORTED;
        }
 
index ca59c5a..fced459 100644 (file)
@@ -22,7 +22,7 @@
 */
 
 #include "mmi.h"
-#include "mmi-core.h"
+#include "mmi-client.h"
 #include "mmi-tests.h"
 #include "mmi-ipc.h"
 
@@ -52,11 +52,11 @@ TEST_F(MMIMainTest, MMIMainInit)
        mmi_shutdown();
 }
 
-TEST_F(MMIMainTest, MmiInstanceCreateSuccess)
+TEST_F(MMIMainTest, MmiClientCreateSuccess)
 {
-       int res = mmi_core_create();
+       int res = mmi_client_create();
 
        EXPECT_EQ(res, MMI_ERROR_NONE);
 
-       mmi_core_destroy();
+       mmi_client_destroy();
 }