/* do not edit automatically generated by mc from Lists. */ /* Lists.mod provides an unordered list manipulation package. Copyright (C) 2001-2025 Free Software Foundation, Inc. Contributed by Gaius Mulley . This file is part of GNU Modula-2. GNU Modula-2 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. GNU Modula-2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Modula-2; see the file COPYING3. If not see . */ #include # if !defined (PROC_D) # define PROC_D typedef void (*PROC_t) (void); typedef struct { PROC_t proc; } PROC; # endif # if !defined (TRUE) # define TRUE (1==1) # endif # if !defined (FALSE) # define FALSE (1==0) # endif #include # include "GStorage.h" #if defined(__cplusplus) # undef NULL # define NULL 0 #endif #define _Lists_C #include "GLists.h" # include "GStorage.h" typedef struct SymbolKey_PerformOperation_p SymbolKey_PerformOperation; # define MaxNoOfElements 5 typedef struct Lists_list_r Lists_list; typedef struct Lists__T1_a Lists__T1; typedef Lists_list *Lists_List__opaque; struct Lists__T1_a { unsigned int array[MaxNoOfElements-1+1]; }; struct Lists_list_r { unsigned int NoOfElements; Lists__T1 Elements; Lists_List__opaque Next; }; /* InitList - creates a new list, l. */ extern "C" void Lists_InitList (Lists_List *l); /* KillList - deletes the complete list, l. */ extern "C" void Lists_KillList (Lists_List *l); /* PutItemIntoList - places a WORD, c, into list, l. */ extern "C" void Lists_PutItemIntoList (Lists_List l, unsigned int c); extern "C" unsigned int Lists_GetItemFromList (Lists_List l, unsigned int n); /* GetIndexOfList - returns the index for WORD, c, in list, l. If more than one WORD, c, exists the index for the first is returned. */ extern "C" unsigned int Lists_GetIndexOfList (Lists_List l, unsigned int c); /* NoOfItemsInList - returns the number of items in list, l. (iterative algorithm of the above). */ extern "C" unsigned int Lists_NoOfItemsInList (Lists_List l); /* IncludeItemIntoList - adds a WORD, c, into a list providing the value does not already exist. */ extern "C" void Lists_IncludeItemIntoList (Lists_List l, unsigned int c); /* RemoveItemFromList - removes a WORD, c, from a list. It assumes that this value only appears once. */ extern "C" void Lists_RemoveItemFromList (Lists_List l, unsigned int c); /* IsItemInList - returns true if a WORD, c, was found in list, l. */ extern "C" bool Lists_IsItemInList (Lists_List l, unsigned int c); /* ForeachItemInListDo - calls procedure, P, foreach item in list, l. */ extern "C" void Lists_ForeachItemInListDo (Lists_List l, SymbolKey_PerformOperation P); /* DuplicateList - returns a duplicate list derived from, l. */ extern "C" Lists_List Lists_DuplicateList (Lists_List l); /* RemoveItem - remove an element at index, i, from the list data type. */ static void RemoveItem (Lists_List__opaque p, Lists_List__opaque l, unsigned int i); /* RemoveItem - remove an element at index, i, from the list data type. */ static void RemoveItem (Lists_List__opaque p, Lists_List__opaque l, unsigned int i) { l->NoOfElements -= 1; while (i <= l->NoOfElements) { l->Elements.array[i-1] = l->Elements.array[i+1-1]; i += 1; } if ((l->NoOfElements == 0) && (p != NULL)) { p->Next = l->Next; Storage_DEALLOCATE ((void **) &l, sizeof (Lists_list)); } } /* InitList - creates a new list, l. */ extern "C" void Lists_InitList (Lists_List *l) { Storage_ALLOCATE ((void **) &(*l), sizeof (Lists_list)); static_cast ((*l))->NoOfElements = 0; static_cast ((*l))->Next = static_cast (NULL); } /* KillList - deletes the complete list, l. */ extern "C" void Lists_KillList (Lists_List *l) { if ((*l) != NULL) { if (static_cast ((*l))->Next != NULL) { Lists_KillList (reinterpret_cast (&static_cast ((*l))->Next)); } Storage_DEALLOCATE ((void **) &(*l), sizeof (Lists_list)); } } /* PutItemIntoList - places a WORD, c, into list, l. */ extern "C" void Lists_PutItemIntoList (Lists_List l, unsigned int c) { if (static_cast (l)->NoOfElements < MaxNoOfElements) { static_cast (l)->NoOfElements += 1; static_cast (l)->Elements.array[static_cast (l)->NoOfElements-1] = c; } else if (static_cast (l)->Next != NULL) { /* avoid dangling else. */ Lists_PutItemIntoList (static_cast (static_cast (l)->Next), c); } else { /* avoid dangling else. */ Lists_InitList (reinterpret_cast (&static_cast (l)->Next)); Lists_PutItemIntoList (static_cast (static_cast (l)->Next), c); } } extern "C" unsigned int Lists_GetItemFromList (Lists_List l, unsigned int n) { /* iterative solution */ while (l != NULL) { if (n <= static_cast (l)->NoOfElements) { return static_cast (l)->Elements.array[n-1]; } else { n -= static_cast (l)->NoOfElements; } l = static_cast (static_cast (l)->Next); } return static_cast (0); /* static analysis guarentees a RETURN statement will be used before here. */ __builtin_unreachable (); } /* GetIndexOfList - returns the index for WORD, c, in list, l. If more than one WORD, c, exists the index for the first is returned. */ extern "C" unsigned int Lists_GetIndexOfList (Lists_List l, unsigned int c) { unsigned int i; if (l == NULL) { return 0; } else { i = 1; while (i <= static_cast (l)->NoOfElements) { if (static_cast (l)->Elements.array[i-1] == c) { return i; } else { i += 1; } } return static_cast (l)->NoOfElements+(Lists_GetIndexOfList (static_cast (static_cast (l)->Next), c)); } /* static analysis guarentees a RETURN statement will be used before here. */ __builtin_unreachable (); } /* NoOfItemsInList - returns the number of items in list, l. (iterative algorithm of the above). */ extern "C" unsigned int Lists_NoOfItemsInList (Lists_List l) { unsigned int t; if (l == NULL) { return 0; } else { t = 0; do { t += static_cast (l)->NoOfElements; l = static_cast (static_cast (l)->Next); } while (! (l == NULL)); return t; } /* static analysis guarentees a RETURN statement will be used before here. */ __builtin_unreachable (); } /* IncludeItemIntoList - adds a WORD, c, into a list providing the value does not already exist. */ extern "C" void Lists_IncludeItemIntoList (Lists_List l, unsigned int c) { if (! (Lists_IsItemInList (l, c))) { Lists_PutItemIntoList (l, c); } } /* RemoveItemFromList - removes a WORD, c, from a list. It assumes that this value only appears once. */ extern "C" void Lists_RemoveItemFromList (Lists_List l, unsigned int c) { Lists_List__opaque p; unsigned int i; bool Found; if (l != NULL) { Found = false; p = static_cast (NULL); do { i = 1; while ((i <= static_cast (l)->NoOfElements) && (static_cast (l)->Elements.array[i-1] != c)) { i += 1; } if ((i <= static_cast (l)->NoOfElements) && (static_cast (l)->Elements.array[i-1] == c)) { Found = true; } else { p = static_cast (l); l = static_cast (static_cast (l)->Next); } } while (! ((l == NULL) || Found)); if (Found) { RemoveItem (p, static_cast (l), i); } } } /* IsItemInList - returns true if a WORD, c, was found in list, l. */ extern "C" bool Lists_IsItemInList (Lists_List l, unsigned int c) { unsigned int i; do { i = 1; while (i <= static_cast (l)->NoOfElements) { if (static_cast (l)->Elements.array[i-1] == c) { return true; } else { i += 1; } } l = static_cast (static_cast (l)->Next); } while (! (l == NULL)); return false; /* static analysis guarentees a RETURN statement will be used before here. */ __builtin_unreachable (); } /* ForeachItemInListDo - calls procedure, P, foreach item in list, l. */ extern "C" void Lists_ForeachItemInListDo (Lists_List l, SymbolKey_PerformOperation P) { unsigned int i; unsigned int n; n = Lists_NoOfItemsInList (l); i = 1; while (i <= n) { (*P.proc) (Lists_GetItemFromList (l, i)); i += 1; } } /* DuplicateList - returns a duplicate list derived from, l. */ extern "C" Lists_List Lists_DuplicateList (Lists_List l) { Lists_List__opaque m; unsigned int n; unsigned int i; Lists_InitList (reinterpret_cast (&m)); n = Lists_NoOfItemsInList (l); i = 1; while (i <= n) { Lists_PutItemIntoList (static_cast (m), Lists_GetItemFromList (l, i)); i += 1; } return static_cast (m); /* static analysis guarentees a RETURN statement will be used before here. */ __builtin_unreachable (); } extern "C" void _M2_Lists_init (__attribute__((unused)) int argc,__attribute__((unused)) char *argv[],__attribute__((unused)) char *envp[]) { } extern "C" void _M2_Lists_fini (__attribute__((unused)) int argc,__attribute__((unused)) char *argv[],__attribute__((unused)) char *envp[]) { }