Refactor: Move & Rename functions to atutil.c
authorZhenhua Zhang <zhenhua.zhang@intel.com>
Wed, 28 Oct 2009 17:22:06 +0000 (01:22 +0800)
committerDenis Kenzior <denkenz@gmail.com>
Wed, 28 Oct 2009 22:30:02 +0000 (17:30 -0500)
Move and rename call_compare and call_compare_by_status to atutil.c.
These will be utilized by other drivers, including hfpmodem.

drivers/atmodem/atutil.c
drivers/atmodem/atutil.h
drivers/atmodem/voicecall.c

index 5d9ceb8..578522f 100644 (file)
@@ -55,3 +55,29 @@ void decode_at_error(struct ofono_error *error, const char *final)
                error->error = 0;
        }
 }
+
+gint at_util_call_compare_by_status(gconstpointer a, gconstpointer b)
+{
+       const struct ofono_call *call = a;
+       int status = GPOINTER_TO_INT(b);
+
+       if (status != call->status)
+               return 1;
+
+       return 0;
+}
+
+gint at_util_call_compare(gconstpointer a, gconstpointer b)
+{
+       const struct ofono_call *ca = a;
+       const struct ofono_call *cb = b;
+
+       if (ca->id < cb->id)
+               return -1;
+
+       if (ca->id > cb->id)
+               return 1;
+
+       return 0;
+}
+
index c30c70b..ab9db05 100644 (file)
@@ -21,6 +21,8 @@
 
 void decode_at_error(struct ofono_error *error, const char *final);
 void dump_response(const char *func, gboolean ok, GAtResult *result);
+gint at_util_call_compare_by_status(gconstpointer a, gconstpointer b);
+gint at_util_call_compare(gconstpointer a, gconstpointer b);
 
 struct cb_data {
        void *cb;
index 22a802f..f0c8d93 100644 (file)
@@ -109,31 +109,6 @@ static void release_id(struct voicecall_data *d, unsigned int id)
        d->id_list &= ~(0x1 << id);
 }
 
-static gint call_compare_by_status(gconstpointer a, gconstpointer b)
-{
-       const struct ofono_call *call = a;
-       int status = GPOINTER_TO_INT(b);
-
-       if (status != call->status)
-               return 1;
-
-       return 0;
-}
-
-static gint call_compare(gconstpointer a, gconstpointer b)
-{
-       const struct ofono_call *ca = a;
-       const struct ofono_call *cb = b;
-
-       if (ca->id < cb->id)
-               return -1;
-
-       if (ca->id > cb->id)
-               return 1;
-
-       return 0;
-}
-
 static struct ofono_call *create_call(struct voicecall_data *d, int type,
                                        int direction, int status,
                                        const char *num, int num_type, int clip)
@@ -159,7 +134,7 @@ static struct ofono_call *create_call(struct voicecall_data *d, int type,
 
        call->clip_validity = clip;
 
-       d->calls = g_slist_insert_sorted(d->calls, call, call_compare);
+       d->calls = g_slist_insert_sorted(d->calls, call, at_util_call_compare);
 
        return call;
 }
@@ -213,7 +188,7 @@ static GSList *parse_clcc(GAtResult *result)
                else
                        call->clip_validity = 2;
 
-               l = g_slist_insert_sorted(l, call, call_compare);
+               l = g_slist_insert_sorted(l, call, at_util_call_compare);
        }
 
        return l;
@@ -729,12 +704,12 @@ static void ring_notify(GAtResult *result, gpointer user_data)
 
        /* See comment in CRING */
        if (g_slist_find_custom(vd->calls, GINT_TO_POINTER(5),
-                               call_compare_by_status))
+                               at_util_call_compare_by_status))
                return;
 
        /* RING can repeat, ignore if we already have an incoming call */
        if (g_slist_find_custom(vd->calls, GINT_TO_POINTER(4),
-                               call_compare_by_status))
+                               at_util_call_compare_by_status))
                return;
 
        /* Generate an incoming call of unknown type */
@@ -768,12 +743,12 @@ static void cring_notify(GAtResult *result, gpointer user_data)
         * when a waiting call exists (cannot have waiting + incoming in GSM)
         */
        if (g_slist_find_custom(vd->calls, GINT_TO_POINTER(5),
-                               call_compare_by_status))
+                               at_util_call_compare_by_status))
                return;
 
        /* CRING can repeat, ignore if we already have an incoming call */
        if (g_slist_find_custom(vd->calls, GINT_TO_POINTER(4),
-                               call_compare_by_status))
+                               at_util_call_compare_by_status))
                return;
 
        g_at_result_iter_init(&iter, result);
@@ -818,7 +793,7 @@ static void clip_notify(GAtResult *result, gpointer user_data)
        dump_response("clip_notify", TRUE, result);
 
        l = g_slist_find_custom(vd->calls, GINT_TO_POINTER(4),
-                               call_compare_by_status);
+                               at_util_call_compare_by_status);
 
        if (l == NULL) {
                ofono_error("CLIP for unknown call");