Changed the way the documents are installed.
[mpdm.git] / mpdm_v.c
blob35f5b9cb2f7aee1edbec0c861bad6c0ef77c190c
1 /*
3 MPDM - Minimum Profit Data Manager
4 Copyright (C) 2003/2007 Angel Ortega <angel@triptico.com>
6 mpdm_t.c - Basic value management
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 http://www.triptico.com
26 #include "config.h"
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <locale.h>
33 #include "mpdm.h"
35 /*******************
36 Data
37 ********************/
39 /* control structure */
41 struct mpdm_control *mpdm = NULL;
43 /*******************
44 Code
45 ********************/
47 static void cleanup_value(mpdm_t v)
48 /* cleans a value */
50 /* collapse multiple values */
51 if (v->flags & MPDM_MULTIPLE)
52 mpdm_collapse(v, 0, v->size);
54 /* free data if needed */
55 if (v->data != NULL && v->flags & MPDM_FREE) {
56 mpdm->memory_usage -= v->size;
57 free(v->data);
62 int mpdm_destroy(mpdm_t v)
63 /* destroys a value */
65 /* if still referenced, don't do it */
66 if (v->ref)
67 return 0;
69 /* dequeue */
70 v->next->prev = v->prev;
71 v->prev->next = v->next;
73 /* if it's the current one, move to next */
74 if (mpdm->cur == v)
75 mpdm->cur = v->next;
77 /* account one value less */
78 mpdm->count--;
80 /* add to the deleted values queue */
81 v->next = mpdm->del;
82 mpdm->del = v;
84 cleanup_value(v);
86 return 1;
90 /**
91 * mpdm_new - Creates a new value.
92 * @flags: flags
93 * @data: pointer to real data
94 * @size: size of data
96 * Creates a new value. @flags is an or-ed set of flags, @data is a
97 * pointer to the data the value will store and @size the size of these
98 * data (if value is to be a multiple one, @size is a number of elements,
99 * or a number of bytes otherwise).
101 * This function is normally not directly used; use any of the type
102 * creation macros instead.
103 * [Value Creation]
105 mpdm_t mpdm_new(int flags, void *data, int size)
107 mpdm_t v = NULL;
109 /* alloc */
110 if ((v = mpdm->del) != NULL)
111 mpdm->del = v->next;
112 else
113 if ((v = malloc(sizeof(struct mpdm_val))) == NULL)
114 return NULL;
116 /* add to the circular list */
117 if (mpdm->cur == NULL)
118 v->next = v->prev = v;
119 else {
120 v->prev = mpdm->cur;
121 v->next = mpdm->cur->next;
123 v->prev->next = v->next->prev = v;
126 mpdm->cur = v->next;
128 /* account one value more */
129 mpdm->count++;
131 /* count memory if data is dynamic */
132 if (flags & MPDM_FREE)
133 mpdm->memory_usage += size;
135 v->flags = flags;
136 v->ref = 0;
137 v->data = data;
138 v->size = size;
140 return v;
145 * mpdm_ref - Increments the reference count of a value.
146 * @v: the value
148 * Increments the reference count of a value.
149 * [Value Management]
151 mpdm_t mpdm_ref(mpdm_t v)
153 if (v != NULL)
154 v->ref++;
155 return v;
160 * mpdm_unref - Decrements the reference count of a value.
161 * @v: the value
163 * Decrements the reference count of a value.
164 * [Value Management]
166 mpdm_t mpdm_unref(mpdm_t v)
168 if (v != NULL)
169 v->ref--;
170 return v;
175 * mpdm_sweep - Sweeps unreferenced values.
176 * @count: number of values to be swept
178 * Destroys values with a reference count of 0. @count is the
179 * number of values to be checked for deletion; special values of
180 * @count are -1, that forces a check of all currently known values
181 * (can be time-consuming) and 0, which tells mpdm_sweep() to check a
182 * small group of them on each call.
183 * [Value Management]
185 void mpdm_sweep(int count)
187 /* if count is zero, sweep 'some' values */
188 if (count == 0) {
189 if (mpdm->default_sweep < 0)
190 count = mpdm->count / -mpdm->default_sweep;
191 else
192 count = mpdm->default_sweep;
195 /* if count is -1, sweep all */
196 if (count == -1)
197 count = mpdm->count;
199 for (; count > 0 && mpdm->count > mpdm->low_threshold; count--) {
200 /* destroy it or skip it */
201 if (!mpdm_destroy(mpdm->cur))
202 mpdm->cur = mpdm->cur->next;
208 * mpdm_size - Returns the size of an element.
209 * @v: the element
211 * Returns the size of an element.
212 * [Value Management]
214 int mpdm_size(mpdm_t v)
216 /* NULL values have no size */
217 if (v == NULL)
218 return 0;
220 return v->size;
225 * mpdm_clone - Creates a clone of a value.
226 * @v: the value
228 * Creates a clone of a value. If the value is multiple, a new value will
229 * be created containing clones of all its elements; otherwise,
230 * the same unchanged value is returned.
231 * [Value Management]
233 mpdm_t mpdm_clone(mpdm_t v)
235 if (MPDM_IS_ARRAY(v))
236 v = mpdm_aclone(v);
238 return v;
243 * mpdm_root - Returns the root hash.
245 * Returns the root hash. This hash is stored internally and can be used
246 * as a kind of global symbol table.
247 * [Value Management]
249 mpdm_t mpdm_root(void)
251 if (mpdm->root == NULL)
252 mpdm->root = mpdm_ref(MPDM_H(0));
254 return mpdm->root;
258 mpdm_t mpdm_set_ival(mpdm_t v, int ival)
259 /* sets an integer value to a value */
261 v->flags |= MPDM_IVAL;
262 v->ival = ival;
264 return v;
268 mpdm_t mpdm_set_rval(mpdm_t v, double rval)
269 /* sets a real value to a value */
271 v->flags |= MPDM_RVAL;
272 v->rval = rval;
274 return v;
279 * mpdm_exec - Executes an executable value.
280 * @c: the code value
281 * @args: the arguments
283 * Executes an executable value. If @c is a scalar value, its data
284 * should be a pointer to a directly executable C function with a
285 * prototype of mpdm_t func(mpdm_t args); if it's a multiple one,
286 * the first value's data should be a pointer to a directly executable C
287 * function with a prototype of mpdm_t func(mpdm_t b, mpdm_t args) and
288 * the second value will be passed as the @b argument. This value is used
289 * to store bytecode or so when implementing virtual machines or compilers.
291 * Returns the return value of the code. If @c is NULL or not executable,
292 * returns NULL.
293 * [Value Management]
295 mpdm_t mpdm_exec(mpdm_t c, mpdm_t args)
297 mpdm_t r = NULL;
299 if (c != NULL && (c->flags & MPDM_EXEC)) {
300 mpdm_ref(c);
301 mpdm_ref(args);
303 if (c->flags & MPDM_MULTIPLE) {
304 mpdm_t x;
305 mpdm_t(*func) (mpdm_t, mpdm_t);
307 /* value is multiple; first element is the
308 2 argument version of the executable function,
309 next its optional additional information and
310 finally the arguments */
311 x = mpdm_aget(c, 0);
313 if ((func = (mpdm_t(*)(mpdm_t, mpdm_t)) (x->data)) != NULL)
314 r = func(mpdm_aget(c, 1), args);
316 else {
317 mpdm_t(*func) (mpdm_t);
319 /* value is scalar; c is the 1 argument
320 version of the executable function */
321 if ((func = (mpdm_t(*)(mpdm_t)) (c->data)) != NULL)
322 r = func(args);
325 mpdm_unref(args);
326 mpdm_unref(c);
329 return r;
333 mpdm_t mpdm_exec_1(mpdm_t c, mpdm_t a1)
335 mpdm_t r;
336 mpdm_t a = MPDM_A(1);
338 mpdm_aset(a, a1, 0);
339 r = mpdm_exec(c, a);
340 mpdm_destroy(a);
341 return r;
345 mpdm_t mpdm_exec_2(mpdm_t c, mpdm_t a1, mpdm_t a2)
347 mpdm_t r;
348 mpdm_t a = MPDM_A(2);
350 mpdm_aset(a, a1, 0);
351 mpdm_aset(a, a2, 1);
352 r = mpdm_exec(c, a);
353 mpdm_destroy(a);
354 return r;
358 mpdm_t mpdm_exec_3(mpdm_t c, mpdm_t a1, mpdm_t a2, mpdm_t a3)
360 mpdm_t r;
361 mpdm_t a = MPDM_A(3);
363 mpdm_aset(a, a1, 0);
364 mpdm_aset(a, a2, 1);
365 mpdm_aset(a, a3, 2);
366 r = mpdm_exec(c, a);
367 mpdm_destroy(a);
368 return r;
372 mpdm_t mpdm_xnew(mpdm_t(*a1) (mpdm_t, mpdm_t), mpdm_t a2)
374 mpdm_t x;
376 x = MPDM_A(2);
377 x->flags |= MPDM_EXEC;
379 mpdm_aset(x, MPDM_X(a1), 0);
380 mpdm_aset(x, a2, 1);
382 return x;
386 static mpdm_t MPDM(mpdm_t args)
387 /* accesor / mutator for MPDM internal data */
389 mpdm_t v = mpdm_aget(args, 0);
390 int n, c = 0;
392 if (v != NULL) {
393 mpdm_t w;
395 /* do changes */
396 if ((w = mpdm_hget_s(v, L"low_threshold")) != NULL && mpdm_ival(w) > 0)
397 mpdm->low_threshold = mpdm_ival(w);
399 if ((w = mpdm_hget_s(v, L"default_sweep")) != NULL)
400 mpdm->default_sweep = mpdm_ival(w);
402 if ((w = mpdm_hget_s(v, L"hash_buckets")) != NULL)
403 mpdm->hash_buckets = mpdm_ival(w);
406 /* loop all values counting the references ones */
407 for (n = mpdm->count, v = mpdm->cur; n > 0; n--, v = v->next)
408 if (v->ref == 0)
409 c++;
411 /* now collect all information */
412 v = MPDM_H(0);
414 mpdm_hset_s(v, L"version", MPDM_MBS(VERSION));
415 mpdm_hset_s(v, L"count", MPDM_I(mpdm->count));
416 mpdm_hset_s(v, L"low_threshold", MPDM_I(mpdm->low_threshold));
417 mpdm_hset_s(v, L"default_sweep", MPDM_I(mpdm->default_sweep));
418 mpdm_hset_s(v, L"memory_usage", MPDM_I(mpdm->memory_usage));
419 mpdm_hset_s(v, L"hash_buckets", MPDM_I(mpdm->hash_buckets));
420 mpdm_hset_s(v, L"unreferenced", MPDM_I(c));
422 return v;
427 * mpdm_startup - Initializes MPDM.
429 * Initializes the Minimum Profit Data Manager. Returns 0 if
430 * everything went OK.
432 int mpdm_startup(void)
434 /* do the startup only unless done beforehand */
435 if (mpdm == NULL) {
436 /* alloc space */
437 if ((mpdm = malloc(sizeof(struct mpdm_control))) == NULL)
438 return -1;
440 /* cleans it */
441 memset(mpdm, '\0', sizeof(struct mpdm_control));
443 /* sets the defaults */
444 mpdm->low_threshold = 16;
445 mpdm->default_sweep = -50000;
446 mpdm->hash_buckets = 31;
448 /* sets the locale */
449 if (setlocale(LC_ALL, "") == NULL)
450 setlocale(LC_ALL, "C");
452 /* store the MPDM() function */
453 mpdm_hset_s(mpdm_root(), L"MPDM", MPDM_X(MPDM));
456 /* everything went OK */
457 return 0;
462 * mpdm_shutdown - Shuts down MPDM.
464 * Shuts down MPDM. No MPDM functions should be used from now on.
466 void mpdm_shutdown(void)
468 /* dummy, by now */
472 * MPDM_A - Creates an array value.
473 * @n: Number of elements
475 * Creates a new array value with @n elements.
476 * [Value Creation]
478 /** mpdm_t MPDM_A(int n); */
479 /* ; */
482 * MPDM_H - Creates a hash value.
483 * @n: Number of buckets in the hash (0: use default)
485 * Creates a new hash value with @n buckets. The number
486 * of buckets must be a prime number. If @n is 0, an
487 * optimal number of buckets will be used.
488 * [Value Creation]
490 /** mpdm_t MPDM_H(int n); */
491 /* ; */
494 * MPDM_LS - Creates a string value from a literal string.
495 * @wcs: the wide character string
497 * Creates a new string value from a literal, wide character string.
498 * A pointer to the string will be stored in the value (not a copy).
499 * [Value Creation]
501 /** mpdm_t MPDM_LS(wchar_t * wcs); */
502 /* ; */
505 * MPDM_S - Creates a string value from a string.
506 * @wcs: the wide character string
508 * Creates a new string value from a wide character string. The value
509 * will store a copy of the string that will be freed on destruction.
510 * [Value Creation]
512 /** mpdm_t MPDM_S(wchar_t * wcs); */
513 /* ; */
516 * MPDM_NS - Creates a string value from a string, with size.
517 * @wcs: the wide character string
518 * @s: the size in chars the string will hold
520 * Creates a new string value with a copy of the first @s characters
521 * from the @wcs string.
522 * [Value Creation]
524 /** mpdm_t MPDM_NS(wchar_t * wcs, int s); */
525 /* ; */
528 * MPDM_ENS - Creates a string value from an external string, with size.
529 * @wcs: the external wide character string
530 * @s: the size in chars the string will hold
532 * Creates a new string value with size @s. The @wcs string must be
533 * a dynamic value (i.e. allocated by malloc()) that will be freed on
534 * destruction.
535 * [Value Creation]
537 /** mpdm_t MPDM_ENS(wchar_t * wcs, int s); */
538 /* ; */
541 * MPDM_I - Creates an integer value.
542 * @i: the integer
544 * Creates a new integer value. MPDM integers are strings.
545 * [Value Creation]
547 /** mpdm_t MPDM_I(int i); */
548 /* ; */
551 * MPDM_R - Creates a real value.
552 * @r: the real number
554 * Creates a new real value. MPDM integers are strings.
555 * [Value Creation]
557 /** mpdm_t MPDM_R(double r); */
558 /* ; */
561 * MPDM_F - Creates a file value.
562 * @f: the file descriptor
564 * Creates a new file value.
565 * [Value Creation]
567 /** mpdm_t MPDM_F(FILE * f); */
568 /* ; */
571 * MPDM_MBS - Creates a string value from a multibyte string.
572 * @mbs: the multibyte string
574 * Creates a new string value from a multibyte string, that will be
575 * converted to wcs by mpdm_mbstowcs().
576 * [Value Creation]
578 /** mpdm_t MPDM_MBS(char * mbs); */
579 /* ; */
582 * MPDM_NMBS - Creates a string value from a multibyte string, with size.
583 * @mbs: the multibyte string
584 * @s: the size
586 * Creates a new string value with the first @s characters from the @mbs
587 * multibyte string, that will be converted to wcs by mpdm_mbstowcs().
588 * [Value Creation]
590 /** mpdm_t MPDM_NMBS(char * mbs, int s); */
591 /* ; */
594 * MPDM_2MBS - Creates a multibyte string value from a wide char string.
595 * @wcs: the wide char string
597 * Creates a multibyte string value from the @wcs wide char string,
598 * converting it by mpdm_wcstombs(). Take note that multibyte string values
599 * are not properly strings, so they cannot be used for string comparison
600 * and such.
601 * [Value Creation]
603 /** mpdm_t MPDM_2MBS(wchar_t * wcs); */
604 /* ; */
607 * MPDM_X - Creates a new executable value.
608 * @func: the C code function
610 * Creates a new executable value given a pointer to the @func C code function.
611 * The function must receive an mpdm_t array value (that will hold their
612 * arguments) and return another one.
613 * [Value Creation]
615 /** mpdm_t MPDM_X(mpdm_t (* func)(mpdm_t args)); */
616 /* ; */
619 * MPDM_IS_ARRAY - Tests if a value is an array.
620 * @v: the value
622 * Returns non-zero if @v is an array.
624 /** int MPDM_IS_ARRAY(mpdm_t v); */
625 /* ; */
628 * MPDM_IS_HASH - Tests if a value is a hash.
629 * @v: the value
631 * Returns non-zero if @v is a hash.
633 /** int MPDM_IS_HASH(mpdm_t v); */
634 /* ; */
637 * MPDM_IS_EXEC - Tests if a value is executable.
638 * @v: the value
640 * Returns non-zero if @v is executable.
642 /** int MPDM_IS_EXEC(mpdm_t v); */
643 /* ; */
646 * MPDM_IS_STRING - Tests if a value is a string.
647 * @v: the value
649 * Returns non-zero if @v is a string.
651 /** int MPDM_IS_STRING(mpdm_t v); */
652 /* ; */