fluid_list.c
上传用户:tjmskj2
上传日期:2020-08-17
资源大小:577k
文件大小:5k
源码类别:

midi

开发平台:

C/C++

  1. /* GLIB - Library of useful routines for C programming
  2.  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Library General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Library General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Library General Public
  15.  * License along with this library; if not, write to the
  16.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.  * Boston, MA 02111-1307, USA.
  18.  */
  19. /*
  20.  * Modified by the GLib Team and others 1997-1999.  See the AUTHORS
  21.  * file for a list of people on the GLib Team.  See the ChangeLog
  22.  * files for a list of changes.  These files are distributed with
  23.  * GLib at ftp://ftp.gtk.org/pub/gtk/.
  24.  */
  25. #include "fluid_list.h"
  26. fluid_list_t*
  27. new_fluid_list(void)
  28. {
  29.   fluid_list_t* list;
  30.   list = (fluid_list_t*) FLUID_MALLOC(sizeof(fluid_list_t));
  31.   list->data = NULL;
  32.   list->next = NULL;
  33.   return list;
  34. }
  35. void
  36. delete_fluid_list(fluid_list_t *list)
  37. {
  38.   fluid_list_t *next;
  39.   while (list) {
  40.     next = list->next;
  41.     FLUID_FREE(list);
  42.     list = next;
  43.   }
  44. }
  45. void
  46. delete1_fluid_list(fluid_list_t *list)
  47. {
  48.   if (list) {
  49.     FLUID_FREE(list);
  50.   }
  51. }
  52. fluid_list_t*
  53. fluid_list_append(fluid_list_t *list, void*  data)
  54. {
  55.   fluid_list_t *new_list;
  56.   fluid_list_t *last;
  57.   new_list = new_fluid_list();
  58.   new_list->data = data;
  59.   if (list)
  60.     {
  61.       last = fluid_list_last(list);
  62.       /* g_assert (last != NULL); */
  63.       last->next = new_list;
  64.       return list;
  65.     }
  66.   else
  67.       return new_list;
  68. }
  69. fluid_list_t*
  70. fluid_list_prepend(fluid_list_t *list, void* data)
  71. {
  72.   fluid_list_t *new_list;
  73.   new_list = new_fluid_list();
  74.   new_list->data = data;
  75.   new_list->next = list;
  76.   return new_list;
  77. }
  78. fluid_list_t*
  79. fluid_list_nth(fluid_list_t *list, int n)
  80. {
  81.   while ((n-- > 0) && list) {
  82.     list = list->next;
  83.   }
  84.   return list;
  85. }
  86. fluid_list_t*
  87. fluid_list_remove(fluid_list_t *list, void* data)
  88. {
  89.   fluid_list_t *tmp;
  90.   fluid_list_t *prev;
  91.   prev = NULL;
  92.   tmp = list;
  93.   while (tmp) {
  94.     if (tmp->data == data) {
  95.       if (prev) {
  96. prev->next = tmp->next;
  97.       }
  98.       if (list == tmp) {
  99. list = list->next;
  100.       }
  101.       tmp->next = NULL;
  102.       delete_fluid_list(tmp);
  103.       break;
  104.     }
  105.     prev = tmp;
  106.     tmp = tmp->next;
  107.   }
  108.   return list;
  109. }
  110. fluid_list_t*
  111. fluid_list_remove_link(fluid_list_t *list, fluid_list_t *link)
  112. {
  113.   fluid_list_t *tmp;
  114.   fluid_list_t *prev;
  115.   prev = NULL;
  116.   tmp = list;
  117.   while (tmp) {
  118.     if (tmp == link) {
  119.       if (prev) {
  120. prev->next = tmp->next;
  121.       }
  122.       if (list == tmp) {
  123. list = list->next;
  124.       }
  125.       tmp->next = NULL;
  126.       break;
  127.     }
  128.     prev = tmp;
  129.     tmp = tmp->next;
  130.   }
  131.   return list;
  132. }
  133. static fluid_list_t*
  134. fluid_list_sort_merge(fluid_list_t *l1, fluid_list_t *l2, fluid_compare_func_t compare_func)
  135. {
  136.   fluid_list_t list, *l;
  137.   l = &list;
  138.   while (l1 && l2) {
  139.     if (compare_func(l1->data,l2->data) < 0) {
  140.       l = l->next = l1;
  141.       l1 = l1->next;
  142.     } else {
  143.       l = l->next = l2;
  144.       l2 = l2->next;
  145.     }
  146.   }
  147.   l->next= l1 ? l1 : l2;
  148.   return list.next;
  149. }
  150. fluid_list_t*
  151. fluid_list_sort(fluid_list_t *list, fluid_compare_func_t compare_func)
  152. {
  153.   fluid_list_t *l1, *l2;
  154.   if (!list) {
  155.     return NULL;
  156.   }
  157.   if (!list->next) {
  158.     return list;
  159.   }
  160.   l1 = list;
  161.   l2 = list->next;
  162.   while ((l2 = l2->next) != NULL) {
  163.     if ((l2 = l2->next) == NULL)
  164.       break;
  165.     l1=l1->next;
  166.   }
  167.   l2 = l1->next;
  168.   l1->next = NULL;
  169.   return fluid_list_sort_merge(fluid_list_sort(list, compare_func),
  170.       fluid_list_sort(l2, compare_func),
  171.       compare_func);
  172. }
  173. fluid_list_t*
  174. fluid_list_last(fluid_list_t *list)
  175. {
  176.   if (list) {
  177.     while (list->next)
  178.       list = list->next;
  179.   }
  180.   return list;
  181. }
  182. int
  183. fluid_list_size(fluid_list_t *list)
  184. {
  185.   int n = 0;
  186.   while (list) {
  187.     n++;
  188.     list = list->next;
  189.   }
  190.   return n;
  191. }
  192. fluid_list_t* fluid_list_insert_at(fluid_list_t *list, int n, void* data)
  193. {
  194.   fluid_list_t *new_list;
  195.   fluid_list_t *cur;
  196.   fluid_list_t *prev = NULL;
  197.   new_list = new_fluid_list();
  198.   new_list->data = data;
  199.   cur = list;
  200.   while ((n-- > 0) && cur) {
  201.     prev = cur;
  202.     cur = cur->next;
  203.   }
  204.   new_list->next = cur;
  205.   if (prev) {
  206.     prev->next = new_list;
  207.     return list;
  208.   } else {
  209.     return new_list;
  210.   }
  211. }
  212. /* Compare function to sort strings alphabetically,
  213.  * for use with fluid_list_sort(). */
  214. int
  215. fluid_list_str_compare_func (void *a, void *b)
  216. {
  217.   if (a && b) return FLUID_STRCMP ((char *)a, (char *)b);
  218.   if (!a && !b) return 0;
  219.   if (a) return -1;
  220.   return 1;
  221. }