1 ////////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxList implementation
4 // Author: Julian Smart
5 // Modified by: VZ at 16/11/98: WX_DECLARE_LIST() and typesafe lists added
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 ////////////////////////////////////////////////////////////////////////////////
12 // =============================================================================
14 // =============================================================================
16 // -----------------------------------------------------------------------------
18 // -----------------------------------------------------------------------------
21 #pragma implementation "list.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
41 #include "wx/utils.h" // for copystring() (beurk...)
44 // =============================================================================
46 // =============================================================================
48 // -----------------------------------------------------------------------------
50 // -----------------------------------------------------------------------------
52 wxListKey wxDefaultListKey
;
54 bool wxListKey::operator==(wxListKeyValue value
) const
59 wxFAIL_MSG(wxT("bad key type."));
60 // let compiler optimize the line above away in release build
61 // by not putting return here...
64 return wxStrcmp(m_key
.string
, value
.string
) == 0;
67 return m_key
.integer
== value
.integer
;
71 // -----------------------------------------------------------------------------
73 // -----------------------------------------------------------------------------
75 wxNodeBase::wxNodeBase(wxListBase
*list
,
76 wxNodeBase
*previous
, wxNodeBase
*next
,
77 void *data
, const wxListKey
& key
)
81 m_previous
= previous
;
84 switch ( key
.GetKeyType() )
90 m_key
.integer
= key
.GetNumber();
94 // to be free()d later
95 m_key
.string
= wxStrdup(key
.GetString());
99 wxFAIL_MSG(wxT("invalid key type"));
103 previous
->m_next
= this;
106 next
->m_previous
= this;
109 wxNodeBase::~wxNodeBase()
111 // handle the case when we're being deleted from the list by the user (i.e.
112 // not by the list itself from DeleteNode) - we must do it for
113 // compatibility with old code
114 if ( m_list
!= NULL
)
116 if ( m_list
->m_keyType
== wxKEY_STRING
)
121 m_list
->DetachNode(this);
125 int wxNodeBase::IndexOf() const
127 wxCHECK_MSG( m_list
, wxNOT_FOUND
, wxT("node doesn't belong to a list in IndexOf"));
129 // It would be more efficient to implement IndexOf() completely inside
130 // wxListBase (only traverse the list once), but this is probably a more
131 // reusable way of doing it. Can always be optimized at a later date (since
132 // IndexOf() resides in wxListBase as well) if efficiency is a problem.
134 wxNodeBase
*prev
= m_previous
;
136 for( i
= 0; prev
; i
++ )
138 prev
= prev
->m_previous
;
144 // -----------------------------------------------------------------------------
146 // -----------------------------------------------------------------------------
148 void wxListBase::Init(wxKeyType keyType
)
151 m_nodeLast
= (wxNodeBase
*) NULL
;
157 wxListBase::wxListBase(size_t count
, void *elements
[])
161 for ( size_t n
= 0; n
< count
; n
++ )
167 void wxListBase::DoCopy(const wxListBase
& list
)
169 wxASSERT_MSG( !list
.m_destroy
,
170 wxT("copying list which owns it's elements is a bad idea") );
172 m_destroy
= list
.m_destroy
;
173 m_keyType
= list
.m_keyType
;
175 m_nodeLast
= (wxNodeBase
*) NULL
;
182 for ( wxNodeBase
*node
= list
.GetFirst(); node
; node
= node
->GetNext() )
184 key
= node
->GetKeyInteger();
185 Append(key
, node
->GetData());
193 for ( wxNodeBase
*node
= list
.GetFirst(); node
; node
= node
->GetNext() )
195 key
= node
->GetKeyString();
196 Append(key
, node
->GetData());
203 for ( wxNodeBase
*node
= list
.GetFirst(); node
; node
= node
->GetNext() )
205 Append(node
->GetData());
211 wxASSERT_MSG( m_count
== list
.m_count
, _T("logic error in wxList::DoCopy") );
214 wxListBase::~wxListBase()
216 wxNodeBase
*each
= m_nodeFirst
;
217 while ( each
!= NULL
)
219 wxNodeBase
*next
= each
->GetNext();
225 wxNodeBase
*wxListBase::AppendCommon(wxNodeBase
*node
)
230 m_nodeLast
= m_nodeFirst
;
234 m_nodeLast
->m_next
= node
;
243 wxNodeBase
*wxListBase::Append(void *object
)
245 // all objects in a keyed list should have a key
246 wxCHECK_MSG( m_keyType
== wxKEY_NONE
, (wxNodeBase
*)NULL
,
247 wxT("need a key for the object to append") );
249 // we use wxDefaultListKey even though it is the default parameter value
250 // because gcc under Mac OS X seems to miscompile this call otherwise
251 wxNodeBase
*node
= CreateNode(m_nodeLast
, (wxNodeBase
*)NULL
, object
,
254 return AppendCommon(node
);
257 wxNodeBase
*wxListBase::Append(long key
, void *object
)
259 wxCHECK_MSG( (m_keyType
== wxKEY_INTEGER
) ||
260 (m_keyType
== wxKEY_NONE
&& m_count
== 0),
262 wxT("can't append object with numeric key to this list") );
264 wxNodeBase
*node
= CreateNode(m_nodeLast
, (wxNodeBase
*)NULL
, object
, key
);
265 return AppendCommon(node
);
268 wxNodeBase
*wxListBase::Append (const wxChar
*key
, void *object
)
270 wxCHECK_MSG( (m_keyType
== wxKEY_STRING
) ||
271 (m_keyType
== wxKEY_NONE
&& m_count
== 0),
273 wxT("can't append object with string key to this list") );
275 wxNodeBase
*node
= CreateNode(m_nodeLast
, (wxNodeBase
*)NULL
, object
, key
);
276 return AppendCommon(node
);
279 wxNodeBase
*wxListBase::Insert(wxNodeBase
*position
, void *object
)
281 // all objects in a keyed list should have a key
282 wxCHECK_MSG( m_keyType
== wxKEY_NONE
, (wxNodeBase
*)NULL
,
283 wxT("need a key for the object to insert") );
285 wxCHECK_MSG( !position
|| position
->m_list
== this, (wxNodeBase
*)NULL
,
286 wxT("can't insert before a node from another list") );
288 // previous and next node for the node being inserted
289 wxNodeBase
*prev
, *next
;
292 prev
= position
->GetPrevious();
297 // inserting in the beginning of the list
298 prev
= (wxNodeBase
*)NULL
;
302 // wxDefaultListKey: see comment in Append() above
303 wxNodeBase
*node
= CreateNode(prev
, next
, object
, wxDefaultListKey
);
319 wxNodeBase
*wxListBase::Item(size_t n
) const
321 for ( wxNodeBase
*current
= GetFirst(); current
; current
= current
->GetNext() )
329 wxFAIL_MSG( wxT("invalid index in wxListBase::Item") );
331 return (wxNodeBase
*)NULL
;
334 wxNodeBase
*wxListBase::Find(const wxListKey
& key
) const
336 wxASSERT_MSG( m_keyType
== key
.GetKeyType(),
337 wxT("this list is not keyed on the type of this key") );
339 for ( wxNodeBase
*current
= GetFirst(); current
; current
= current
->GetNext() )
341 if ( key
== current
->m_key
)
348 return (wxNodeBase
*)NULL
;
351 wxNodeBase
*wxListBase::Find(void *object
) const
353 for ( wxNodeBase
*current
= GetFirst(); current
; current
= current
->GetNext() )
355 if ( current
->GetData() == object
)
360 return (wxNodeBase
*)NULL
;
363 int wxListBase::IndexOf(void *object
) const
365 wxNodeBase
*node
= Find( object
);
367 return node
? node
->IndexOf() : wxNOT_FOUND
;
370 void wxListBase::DoDeleteNode(wxNodeBase
*node
)
373 if ( m_keyType
== wxKEY_STRING
)
375 free(node
->m_key
.string
);
383 // so that the node knows that it's being deleted by the list
388 wxNodeBase
*wxListBase::DetachNode(wxNodeBase
*node
)
390 wxCHECK_MSG( node
, NULL
, wxT("detaching NULL wxNodeBase") );
391 wxCHECK_MSG( node
->m_list
== this, NULL
,
392 wxT("detaching node which is not from this list") );
395 wxNodeBase
**prevNext
= node
->GetPrevious() ? &node
->GetPrevious()->m_next
397 wxNodeBase
**nextPrev
= node
->GetNext() ? &node
->GetNext()->m_previous
400 *prevNext
= node
->GetNext();
401 *nextPrev
= node
->GetPrevious();
405 // mark the node as not belonging to this list any more
411 bool wxListBase::DeleteNode(wxNodeBase
*node
)
413 if ( !DetachNode(node
) )
421 bool wxListBase::DeleteObject(void *object
)
423 for ( wxNodeBase
*current
= GetFirst(); current
; current
= current
->GetNext() )
425 if ( current
->GetData() == object
)
436 void wxListBase::Clear()
438 wxNodeBase
*current
= m_nodeFirst
;
441 wxNodeBase
*next
= current
->GetNext();
442 DoDeleteNode(current
);
447 m_nodeLast
= (wxNodeBase
*)NULL
;
452 void wxListBase::ForEach(wxListIterateFunction F
)
454 for ( wxNodeBase
*current
= GetFirst(); current
; current
= current
->GetNext() )
456 (*F
)(current
->GetData());
460 void *wxListBase::FirstThat(wxListIterateFunction F
)
462 for ( wxNodeBase
*current
= GetFirst(); current
; current
= current
->GetNext() )
464 if ( (*F
)(current
->GetData()) )
465 return current
->GetData();
468 return (wxNodeBase
*)NULL
;
471 void *wxListBase::LastThat(wxListIterateFunction F
)
473 for ( wxNodeBase
*current
= GetLast(); current
; current
= current
->GetPrevious() )
475 if ( (*F
)(current
->GetData()) )
476 return current
->GetData();
479 return (wxNodeBase
*)NULL
;
482 // (stefan.hammes@urz.uni-heidelberg.de)
484 // function for sorting lists. the concept is borrowed from 'qsort'.
485 // by giving a sort function, arbitrary lists can be sorted.
487 // - put wxObject pointers into an array
488 // - sort the array with qsort
489 // - put back the sorted wxObject pointers into the list
491 // CAVE: the sort function receives pointers to wxObject pointers (wxObject **),
492 // so dereference right!
494 // int listcompare(const void *arg1, const void *arg2)
496 // return(compare(**(wxString **)arg1,
497 // **(wxString **)arg2));
504 // list.Append(new wxString("DEF"));
505 // list.Append(new wxString("GHI"));
506 // list.Append(new wxString("ABC"));
507 // list.Sort(listcompare);
510 void wxListBase::Sort(const wxSortCompareFunction compfunc
)
512 // allocate an array for the wxObject pointers of the list
513 const size_t num
= GetCount();
514 void **objArray
= new void *[num
];
515 void **objPtr
= objArray
;
517 // go through the list and put the pointers into the array
519 for ( node
= GetFirst(); node
; node
= node
->Next() )
521 *objPtr
++ = node
->Data();
525 qsort((void *)objArray
,num
,sizeof(wxObject
*),compfunc
);
527 // put the sorted pointers back into the list
529 for ( node
= GetFirst(); node
; node
= node
->Next() )
531 node
->SetData(*objPtr
++);
538 // ============================================================================
539 // compatibility section from now on
540 // ============================================================================
542 #ifdef wxLIST_COMPATIBILITY
544 // -----------------------------------------------------------------------------
545 // wxList (a.k.a. wxObjectList)
546 // -----------------------------------------------------------------------------
548 IMPLEMENT_DYNAMIC_CLASS(wxList
, wxObject
)
550 void wxObjectListNode::DeleteData()
552 delete (wxObject
*)GetData();
555 // -----------------------------------------------------------------------------
557 // -----------------------------------------------------------------------------
559 IMPLEMENT_DYNAMIC_CLASS(wxStringList
, wxObject
)
561 // instead of WX_DEFINE_LIST(wxStringListBase) we define this function
563 void wxStringListNode::DeleteData()
565 delete [] (char *)GetData();
568 bool wxStringList::Delete(const wxChar
*s
)
570 wxStringListNode
*current
;
572 for ( current
= GetFirst(); current
; current
= current
->GetNext() )
574 if ( wxStrcmp(current
->GetData(), s
) == 0 )
585 void wxStringList::DoCopy(const wxStringList
& other
)
587 wxASSERT( GetCount() == 0 ); // this list must be empty before copying!
589 size_t count
= other
.GetCount();
590 for ( size_t n
= 0; n
< count
; n
++ )
592 Add(other
.Item(n
)->GetData());
596 // Variable argument list, terminated by a zero
597 // Makes new storage for the strings
598 wxStringList::wxStringList (const wxChar
*first
, ...)
600 DeleteContents(TRUE
);
607 const wxChar
*s
= first
;
612 s
= va_arg(ap
, const wxChar
*);
615 if ((int)(long) s
== 0)
625 // Only makes new strings if arg is TRUE
626 wxChar
**wxStringList::ListToArray(bool new_copies
) const
628 wxChar
**string_array
= new wxChar
*[GetCount()];
629 wxStringListNode
*node
= GetFirst();
630 for (size_t i
= 0; i
< GetCount(); i
++)
632 wxChar
*s
= node
->GetData();
634 string_array
[i
] = copystring(s
);
637 node
= node
->GetNext();
643 // Checks whether s is a member of the list
644 bool wxStringList::Member(const wxChar
*s
) const
646 for ( wxStringListNode
*node
= GetFirst(); node
; node
= node
->GetNext() )
648 const wxChar
*s1
= node
->GetData();
649 if (s
== s1
|| wxStrcmp (s
, s1
) == 0)
656 extern "C" int LINKAGEMODE
657 wx_comparestrings(const void *arg1
, const void *arg2
)
659 wxChar
**s1
= (wxChar
**) arg1
;
660 wxChar
**s2
= (wxChar
**) arg2
;
662 return wxStrcmp (*s1
, *s2
);
665 // Sort a list of strings - deallocates old nodes, allocates new
666 void wxStringList::Sort()
668 size_t N
= GetCount();
669 wxChar
**array
= new wxChar
*[N
];
670 wxStringListNode
*node
;
673 for ( node
= GetFirst(); node
; node
= node
->GetNext() )
675 array
[i
++] = node
->GetData();
678 qsort (array
, N
, sizeof (wxChar
*), wx_comparestrings
);
681 for ( node
= GetFirst(); node
; node
= node
->GetNext() )
682 node
->SetData( array
[i
++] );
687 #endif // wxLIST_COMPATIBILITY