code cleaning 91/10491/2
authorjy910.yun <jy910.yun@samsung.com>
Wed, 2 Oct 2013 12:10:40 +0000 (21:10 +0900)
committerjy910.yun <jy910.yun@samsung.com>
Wed, 2 Oct 2013 12:19:07 +0000 (21:19 +0900)
change the internal header file name to make it simple
revise warning issues

Change-Id: Icea301ae95781a5fa73966cf49e17ee2f71c447b
Signed-off-by: jy910.yun <jy910.yun@samsung.com>
CMakeLists.txt
include/common.h [moved from include/feedback-internal.h with 86% similarity]
include/log.h [moved from include/feedback-log.h with 91% similarity]
src/devices.c
src/feedback.c
src/sound.c
src/str.c [moved from include/feedback-str.h with 93% similarity]
src/vibrator.c
src/xmlparser.c

index 3bcfaa4..69fe1c2 100644 (file)
@@ -15,7 +15,8 @@ SET(SRCS
        src/sound.c
        src/vibrator.c
        src/xmlparser.c
-       src/feedback.c)
+       src/feedback.c
+       src/str.c)
 
 SET(HEADERS
        SLP_FEEDBACK_PG.h
similarity index 86%
rename from include/feedback-internal.h
rename to include/common.h
index a4f34bd..0113c02 100644 (file)
  */
 
 
-#ifndef __FEEDBACK_INTERNAL_H__
-#define __FEEDBACK_INTERNAL_H__
-
-#include "feedback-ids.h"
+#ifndef __COMMON_H__
+#define __COMMON_H__
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
 /**
- * @file feedback-internal.h
+ * @file common.h
  * @brief This file contains the common information
  */
 
@@ -37,8 +35,11 @@ extern "C" {
 
 extern int callstatus;
 
+extern const char *str_type[];
+extern const char *str_pattern[];
+
 #ifdef __cplusplus
 }
 #endif
 
-#endif //__FEEDBACK_INTERNAL_H__
+#endif
similarity index 91%
rename from include/feedback-log.h
rename to include/log.h
index f11dfbd..7237f82 100644 (file)
@@ -16,8 +16,8 @@
  */
 
 
-#ifndef __FEEDBACK_LOG_H__
-#define __FEEDBACK_LOG_H__
+#ifndef __LOG_H__
+#define __LOG_H__
 
 #define FEATURE_FEEDBACK_DLOG
 
@@ -31,4 +31,4 @@
        #define FEEDBACK_ERROR(x, ...)
 #endif
 
-#endif //__FEEDBACK_LOG_H__
+#endif //__LOG_H__
index ac7fbbf..970de55 100644 (file)
@@ -21,8 +21,8 @@
 #include <glib.h>
 
 #include "devices.h"
-#include "feedback-str.h"
-#include "feedback-log.h"
+#include "common.h"
+#include "log.h"
 
 #define DD_LIST_PREPEND(a, b)          \
        a = g_list_prepend(a, b)
index 1ef742e..5243924 100644 (file)
@@ -23,9 +23,8 @@
 #include <vconf.h>
 
 #include "feedback.h"
-#include "feedback-internal.h"
-#include "feedback-str.h"
-#include "feedback-log.h"
+#include "common.h"
+#include "log.h"
 #include "devices.h"
 
 #ifndef API
@@ -63,8 +62,6 @@ static feedback_pattern_e get_alert_on_call_key(feedback_pattern_e pattern)
 
 API int feedback_initialize()
 {
-       int err = -1;
-
        if (binit)
                return FEEDBACK_ERROR_NONE;
 
index 39d9b4b..d903e3a 100644 (file)
 #include <vconf.h>
 #include <mm_sound_private.h>
 
-#include "feedback.h"
-#include "feedback-internal.h"
-#include "feedback-str.h"
-#include "feedback-log.h"
+#include "feedback-ids.h"
+#include "common.h"
+#include "log.h"
 #include "devices.h"
 
 #define FEEDBACK_SOUND_DIR                     FEEDBACK_DATA_DIR"/sound"
similarity index 93%
rename from include/feedback-str.h
rename to src/str.c
index 0e41857..fb70365 100644 (file)
+++ b/src/str.c
  */
 
 
-#ifndef __FEEDBACK_STR_H__
-#define __FEEDBACK_STR_H__
+#include <stdio.h>
 
-static const char *str_type[] =
+const char *str_type[] =
 {
        "FEEDBACK_TYPE_NONE",
        "FEEDBACK_TYPE_SOUND",
@@ -27,7 +26,7 @@ static const char *str_type[] =
        "FEEDBACK_TYPE_END",
 };
 
-static const char *str_pattern[] =
+const char *str_pattern[] =
 {
        "FEEDBACK_PATTERN_TAP",
        "FEEDBACK_PATTERN_SIP",
@@ -80,5 +79,3 @@ static const char *str_pattern[] =
        "FEEDBACK_PATTERN_SLIDER_SWEEP",
        "FEEDBACK_PATTERN_VOLUME_KEY",
 };
-
-#endif //__FEEDBACK_STR_H__
index 815145d..2e8cfdf 100644 (file)
 #include <vconf.h>
 #include <haptic.h>
 
-#include "feedback.h"
-#include "feedback-internal.h"
-#include "feedback-str.h"
-#include "feedback-log.h"
-#include "xmlparser.h"
+#include "feedback-ids.h"
+#include "common.h"
+#include "log.h"
 #include "devices.h"
+#include "xmlparser.h"
 
 #define FEEDBACK_HAPTIC_DIR                    FEEDBACK_DATA_DIR"/haptic"
 #define FEEDBACK_HAPTIC_TOUCH_DIR      FEEDBACK_HAPTIC_DIR"/touch"
index d7d1837..39a7666 100644 (file)
@@ -21,9 +21,9 @@
 #include <glib.h>
 
 #include "xmlparser.h"
-#include "feedback-log.h"
+#include "log.h"
 
-static const xmlChar* data_str[] = {
+static const char* data_str[] = {
        [XML_LABEL] = "label",
        [XML_DATA]  = "data",
 };
@@ -57,7 +57,7 @@ static int xml_compare(xmlDocPtr doc, xmlNodePtr cur, const xmlChar* expr)
        assert(expr);
 
        for (node = cur->children; node != NULL; node = node->next) {
-               if (xmlStrcmp(node->name, data_str[XML_LABEL]))
+               if (xmlStrcmp(node->name, (const xmlChar*)data_str[XML_LABEL]))
                        continue;
 
                key = xmlNodeListGetString(doc, node->children, 1);
@@ -105,7 +105,7 @@ struct xmlData *xml_parse(xmlDocPtr doc, xmlNodePtr cur)
        xmlNodePtr node;
        struct xmlData *data;
        char *b64_data;
-       int len;
+       unsigned int len;
 
        assert(doc);
        assert(cur);
@@ -118,10 +118,10 @@ struct xmlData *xml_parse(xmlDocPtr doc, xmlNodePtr cur)
 
        memset(data, 0, sizeof(struct xmlData));
        for (node = cur->children; node != NULL; node = node->next) {
-               if (!xmlStrcmp(node->name, data_str[XML_LABEL])) {
+               if (!xmlStrcmp(node->name, (const xmlChar*)data_str[XML_LABEL])) {
                        data->label = (char*)xmlNodeListGetString(doc, node->children, 1);
                        FEEDBACK_LOG("label : %s", data->label);
-               } else if (!xmlStrcmp(node->name, data_str[XML_DATA])) {
+               } else if (!xmlStrcmp(node->name, (const xmlChar*)data_str[XML_DATA])) {
                        b64_data = (char *)xmlNodeListGetString(doc, node->children, 1);
                        if (b64_data != NULL) {
                                FEEDBACK_LOG("b64_data : %s", b64_data);