00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082 #include "bc_machdefs.h"
00083 #include "bc_util.h"
00084
00085 typedef struct CCbigchunk
00086 {
00087 char space[CC_BIGCHUNK];
00088 CCbigchunkptr ptr;
00089 }
00090 CCbigchunk;
00091
00092 void *CCutil_allocrus (size_t size)
00093 {
00094 void *mem = (void *) NULL;
00095
00096 if (size == 0)
00097 {
00098 fprintf (stderr, "Warning: 0 bytes allocated\n");
00099 }
00100
00101 mem = (void *) malloc (size);
00102 if (mem == (void *) NULL)
00103 {
00104 fprintf (stderr, "Out of memory. Asked for %d bytes\n", (int) size);
00105 }
00106 return mem;
00107 }
00108
00109 void CCutil_freerus (void *p)
00110 {
00111 if (!p)
00112 {
00113 fprintf (stderr, "Warning: null pointer freed\n");
00114 return;
00115 }
00116
00117 free (p);
00118 }
00119
00120 void *CCutil_reallocrus (void *ptr,
00121 size_t size)
00122 {
00123 void *newptr;
00124
00125 if (!ptr)
00126 {
00127 return CCutil_allocrus (size);
00128 }
00129 else
00130 {
00131 newptr = (void *) realloc (ptr, size);
00132 if (!newptr)
00133 {
00134 fprintf (stderr, "Out of memory. Tried to grow to %d bytes\n",
00135 (int) size);
00136 }
00137 return newptr;
00138 }
00139 }
00140
00141 int CCutil_reallocrus_scale (void **pptr,
00142 int *pnnum,
00143 int count,
00144 double scale,
00145 size_t size)
00146 {
00147 int newsize = (int) (((double) *pnnum) * scale);
00148 void *p;
00149
00150 if (newsize < *pnnum + 1000)
00151 newsize = *pnnum + 1000;
00152 if (newsize < count)
00153 newsize = count;
00154 p = CCutil_reallocrus (*pptr, newsize * size);
00155 if (!p)
00156 {
00157 return 1;
00158 }
00159 else
00160 {
00161 *pptr = p;
00162 *pnnum = newsize;
00163 return 0;
00164 }
00165 }
00166
00167 int CCutil_reallocrus_count (void **pptr,
00168 int count,
00169 size_t size)
00170 {
00171 void *p = CCutil_reallocrus (*pptr, count * size);
00172
00173 if (!p)
00174 {
00175 return 1;
00176 }
00177 else
00178 {
00179 *pptr = p;
00180 return 0;
00181 }
00182 }
00183
00184
00185 CCbigchunkptr *CCutil_bigchunkalloc (void)
00186 {
00187 CCbigchunk *p = CC_SAFE_MALLOC (1, CCbigchunk);
00188
00189 if (p == (CCbigchunk *) NULL)
00190 {
00191 fprintf (stderr, "Out of memory in CCutil_bigchunkalloc\n");
00192 return (CCbigchunkptr *) NULL;
00193 }
00194 p->ptr.this_chunk = p;
00195 p->ptr.this_one = (void *) p->space;
00196 return &(p->ptr);
00197 }
00198
00199 void CCutil_bigchunkfree (CCbigchunkptr * bp)
00200 {
00201
00202 CCbigchunk *p = bp->this_chunk;
00203
00204 CC_FREE (p, CCbigchunk);
00205 }
00206
00207 void CCptrworld_init (CCptrworld * world)
00208 {
00209 world->refcount = 1;
00210 world->freelist = (void *) NULL;
00211 world->chunklist = (CCbigchunkptr *) NULL;
00212 }
00213
00214 void CCptrworld_add (CCptrworld * world)
00215 {
00216 world->refcount++;
00217 }
00218
00219 void CCptrworld_delete (CCptrworld * world)
00220 {
00221 world->refcount--;
00222 if (world->refcount <= 0)
00223 {
00224 CCbigchunkptr *bp,
00225 *bpnext;
00226
00227 for (bp = world->chunklist; bp; bp = bpnext)
00228 {
00229 bpnext = bp->next;
00230 CCutil_bigchunkfree (bp);
00231 }
00232 world->chunklist = (CCbigchunkptr *) NULL;
00233 world->freelist = (void *) NULL;
00234 world->refcount = 0;
00235 }
00236 }