aboutsummaryrefslogtreecommitdiff
path: root/src/objectlist.h
blob: ebadf4b9ec31e2846250debd7c4a0c06a63c5980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/******************************************************
 *
 * This file is based on iem_objlist.h by IOhannes m zmölnig
 *
 * Original copyleft (c):
 *   IOhannes m zmölnig
 *
 *   2008:forum::für::umläute:2008
 *
 *   institute of electronic music and acoustics (iem)
 *
 ******************************************************
 *
 * license: GNU General Public License v.2
 *
 ******************************************************/

/* this file implements some helperr functions for dealing with lists of
 * objects (containing other objects)
 *
 * used for callbacks to enumerated objects without $0 tricks
 */



//#include "m_pd.h"

/*
 The basic element is a parent.
 Elements can then be added/removed to/from this parent.
 
 */


/* ------------------------- helper methods for callbacks ---------------------------- */

typedef struct _objectlist_element {
  const t_pd* obj;
  struct _objectlist_element* next;
} t_objectlist_element;

typedef struct _objectlist_list {
  const t_pd* parent;
  t_objectlist_element* obj;

  struct _objectlist_list *next;
} t_objectlist_list;

static t_objectlist_list* static_list=0;


// Find a list with the specified parent
static t_objectlist_list* getList(const t_pd*parent) {
  t_objectlist_list* list = static_list;
  if(0==parent  || 0==list)
    return 0;

  for(list=static_list; list; list=list->next) {
    if(parent == list->parent) {
      return list;
    }
  }
  return 0; 
}

static t_objectlist_list* addList(const t_pd* parent)
{
  t_objectlist_list* list=getList(parent);
  if(!list) {
    list=(t_objectlist_list*)getbytes(sizeof(t_objectlist_list));
    list->parent=parent;
    list->obj=0;
    list->next=0;

    if(0==static_list) {
      /* new list */
      static_list=list;
    } else {
      /* add to the end of existing list */
      t_objectlist_list* dummy=static_list;
      while(dummy->next)
        dummy=dummy->next;
      dummy->next = list;
    }
  }
  return list;
}

static t_objectlist_element* getElements (const t_pd*parent) {
  t_objectlist_list* list = getList(parent);
  if(list)
    return list->obj;

  return 0;
}

// Add element to a list
static void addElement (const t_pd*parent, const t_pd*obj) {
  t_objectlist_list* p=addList(parent);
  t_objectlist_element* list=0;
  t_objectlist_element* entry=0;
  if(!p || !obj)
    return;
  list=p->obj;

  if(list&&obj==list->obj)
    return;

  while(list && list->next) {
    if(obj==list->obj) /* obj already in list */
      return;
    list=list->next;
  }

  /* we are at the end of the list that does not contain obj yet, so add it */
  entry=(t_objectlist_element*)getbytes(sizeof(t_objectlist_element));
  entry->obj=obj;
  entry->next=0;
  if(list) {
    list->next=entry;
  } else {
    p->obj=entry;
  }
}

// Remove element from list
static void removeElement(const t_pd*parent, const t_pd*obj) {
  t_objectlist_list* p=getList(parent);
  t_objectlist_element* list=0, *last=0, *next=0;
  if(!p || !obj)return;
  list=p->obj;
  if(!list)
    return;

  while(list && obj!=list->obj) {
    last=list;
    list=list->next;
  }

  if(!list) /* couldn't find this object */
    return;

  next=list->next;

  if(last)
    last->next=next;
  else
    p->obj=next;

  freebytes((void*)list, sizeof(t_objectlist_element));
  list=0;
}

// Remove element from all lists!
static void removeElementFromLists(const t_pd*obj) {
   t_objectlist_list* parents=static_list;

  while(parents) {
    removeElement(parents->parent, obj);
    parents=parents->next;
  }
}