os/ossrv/glib/tests/asyncqueue-test.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Portions copyright (c) 2006-2009 Nokia Corporation.  All rights reserved.
     3 */
     4 #undef G_DISABLE_ASSERT
     5 #undef G_LOG_DOMAIN
     6 
     7 #include <time.h>
     8 #include <stdlib.h>
     9 
    10 #include <glib.h>
    11 
    12 #define DEBUG_MSG(args)
    13 /* #define DEBUG_MSG(args) g_printerr args ; g_printerr ("\n");  */
    14 #define PRINT_MSG(args)
    15 /* #define PRINT_MSG(args) g_print args ; g_print ("\n"); */
    16 
    17 #define MAX_THREADS            50
    18 #define MAX_SORTS              5    /* only applies if
    19 				       ASYC_QUEUE_DO_SORT is set to 1 */ 
    20 #define MAX_TIME               20   /* seconds */
    21 #define MIN_TIME               5    /* seconds */
    22 
    23 #define SORT_QUEUE_AFTER       1
    24 #define SORT_QUEUE_ON_PUSH     1    /* if this is done, the
    25 				       SORT_QUEUE_AFTER is ignored */
    26 #define QUIT_WHEN_DONE         1
    27 
    28 
    29 #if SORT_QUEUE_ON_PUSH == 1
    30 #  undef SORT_QUEUE_AFTER
    31 #  define SORT_QUEUE_AFTER     0
    32 #endif
    33 
    34 #ifdef __SYMBIAN32__
    35 #include "mrt2_glib2_test.h"
    36 #endif /*__SYMBIAN32__*/
    37 
    38 
    39 static GMainLoop   *main_loop = NULL;
    40 static GThreadPool *thread_pool = NULL;
    41 static GAsyncQueue *async_queue = NULL;
    42 
    43 
    44 static gint
    45 sort_compare (gconstpointer p1, gconstpointer p2, gpointer user_data)
    46 {
    47   gint32 id1;
    48   gint32 id2;
    49 
    50   id1 = GPOINTER_TO_INT (p1);
    51   id2 = GPOINTER_TO_INT (p2);
    52 
    53   DEBUG_MSG (("comparing #1:%d and #2:%d, returning %d", 
    54 	     id1, id2, (id1 > id2 ? +1 : id1 == id2 ? 0 : -1)));
    55 
    56   return (id1 > id2 ? +1 : id1 == id2 ? 0 : -1);
    57 }
    58 
    59 static gboolean
    60 sort_queue (gpointer user_data)
    61 {
    62   static gint     sorts = 0;
    63   static gpointer last_p = NULL;
    64   gpointer        p;
    65   gboolean        can_quit = FALSE;
    66   gint            sort_multiplier;
    67   gint            len;
    68   gint            i;
    69 
    70   sort_multiplier = GPOINTER_TO_INT (user_data);
    71 
    72   if (SORT_QUEUE_AFTER) {
    73     PRINT_MSG (("sorting async queue...")); 
    74     g_async_queue_sort (async_queue, sort_compare, NULL);
    75 
    76     sorts++;
    77 
    78     if (sorts >= sort_multiplier) {
    79       can_quit = TRUE;
    80     }
    81     
    82     g_async_queue_sort (async_queue, sort_compare, NULL);
    83     len = g_async_queue_length (async_queue);
    84 
    85     PRINT_MSG (("sorted queue (for %d/%d times, size:%d)...", sorts, MAX_SORTS, len)); 
    86   } else {
    87     can_quit = TRUE;
    88     len = g_async_queue_length (async_queue);
    89     DEBUG_MSG (("printing queue (size:%d)...", len)); 
    90   }
    91 
    92   for (i = 0, last_p = NULL; i < len; i++) {
    93     p = g_async_queue_pop (async_queue);
    94     DEBUG_MSG (("item %d ---> %d", i, GPOINTER_TO_INT (p))); 
    95 
    96     if (last_p) {
    97       g_assert (GPOINTER_TO_INT (last_p) <= GPOINTER_TO_INT (p));
    98     }
    99 
   100     last_p = p;
   101   }
   102   
   103   if (can_quit && QUIT_WHEN_DONE) {
   104     g_main_loop_quit (main_loop);
   105   }
   106 
   107   return !can_quit;
   108 }
   109 
   110 static void
   111 enter_thread (gpointer data, gpointer user_data)
   112 {
   113   gint   len;
   114   gint   id;
   115   gulong ms;
   116 
   117   id = GPOINTER_TO_INT (data);
   118   
   119   ms = g_random_int_range (MIN_TIME * 1000, MAX_TIME * 1000);
   120   DEBUG_MSG (("entered thread with id:%d, adding to queue in:%ld ms", id, ms));
   121 
   122   g_usleep (ms * 1000);
   123 
   124   if (SORT_QUEUE_ON_PUSH) {
   125     g_async_queue_push_sorted (async_queue, GINT_TO_POINTER (id), sort_compare, NULL);
   126   } else {
   127     g_async_queue_push (async_queue, GINT_TO_POINTER (id));
   128   }
   129 
   130   len = g_async_queue_length (async_queue);
   131 
   132   DEBUG_MSG (("thread id:%d added to async queue (size:%d)", 
   133 	     id, len));
   134 }
   135 
   136 int 
   137 main (int argc, char *argv[])
   138 {
   139 #if defined(G_THREADS_ENABLED) && ! defined(G_THREADS_IMPL_NONE)
   140   gint   i;
   141   gint   max_threads = MAX_THREADS;
   142   gint   max_unused_threads = MAX_THREADS;
   143   gint   sort_multiplier = MAX_SORTS;
   144   gint   sort_interval;
   145   gchar *msg;
   146   
   147   #ifdef __SYMBIAN32__
   148   g_log_set_handler (NULL,  G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
   149   g_set_print_handler(mrtPrintHandler);
   150   #endif /*__SYMBIAN32__*/
   151   g_thread_init (NULL);
   152 
   153   PRINT_MSG (("creating async queue..."));
   154   async_queue = g_async_queue_new ();
   155 
   156   g_return_val_if_fail (async_queue != NULL, EXIT_FAILURE);
   157 
   158   PRINT_MSG (("creating thread pool with max threads:%d, max unused threads:%d...",
   159 	     max_threads, max_unused_threads));
   160   thread_pool = g_thread_pool_new (enter_thread,
   161 				   async_queue,
   162 				   max_threads,
   163 				   FALSE,
   164 				   NULL);
   165 
   166   g_return_val_if_fail (thread_pool != NULL, EXIT_FAILURE);
   167 
   168   g_thread_pool_set_max_unused_threads (max_unused_threads);
   169 
   170   PRINT_MSG (("creating threads..."));
   171   for (i = 1; i <= max_threads; i++) {
   172     GError *error = NULL;
   173   
   174     g_thread_pool_push (thread_pool, GINT_TO_POINTER (i), &error);
   175     
   176     g_assert_no_error (error);
   177   }
   178 
   179   if (!SORT_QUEUE_AFTER) {
   180     sort_multiplier = 1;
   181   }
   182   
   183   sort_interval = ((MAX_TIME / sort_multiplier) + 2)  * 1000;
   184   g_timeout_add (sort_interval, sort_queue, GINT_TO_POINTER (sort_multiplier));
   185 
   186   if (SORT_QUEUE_ON_PUSH) {
   187     msg = "sorting when pushing into the queue, checking queue is sorted";
   188   } else {
   189     msg = "sorting";
   190   }
   191 
   192   PRINT_MSG (("%s %d %s %d ms",
   193 	      msg,
   194 	      sort_multiplier, 
   195 	      sort_multiplier == 1 ? "time in" : "times, once every",
   196 	      sort_interval));
   197 
   198   DEBUG_MSG (("entering main event loop"));
   199 
   200   main_loop = g_main_loop_new (NULL, FALSE);
   201   g_main_loop_run (main_loop);
   202  #endif
   203   
   204   #if __SYMBIAN32__
   205   testResultXml("asyncqueue-test");
   206   #endif /* EMULATOR */
   207   
   208   return EXIT_SUCCESS;
   209 }