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
39 /* control structure */
41 struct mpdm_control
*mpdm
= NULL
;
47 static void cleanup_value(mpdm_t v
)
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((void *)v
->data
);
63 int mpdm_destroy(mpdm_t v
)
64 /* destroys a value */
66 /* if still referenced or deleted, do nothing */
67 if (v
->ref
|| v
->flags
& MPDM_DELETED
)
71 v
->next
->prev
= v
->prev
;
72 v
->prev
->next
= v
->next
;
74 /* if it's the current one, move to next */
78 /* account one value less */
81 /* add to the deleted values queue */
88 v
->flags
|= MPDM_DELETED
;
95 * mpdm_new - Creates a new value.
97 * @data: pointer to real data
100 * Creates a new value. @flags is an or-ed set of flags, @data is a
101 * pointer to the data the value will store and @size the size of these
102 * data (if value is to be a multiple one, @size is a number of elements,
103 * or a number of bytes otherwise).
105 * This function is normally not directly used; use any of the type
106 * creation macros instead.
109 mpdm_t
mpdm_new(int flags
, const void *data
, int size
)
114 if ((v
= mpdm
->del
) != NULL
)
117 if ((v
= malloc(sizeof(struct mpdm_val
))) == NULL
)
120 /* add to the circular list */
121 if (mpdm
->cur
== NULL
)
122 v
->next
= v
->prev
= v
;
125 v
->next
= mpdm
->cur
->next
;
127 v
->prev
->next
= v
->next
->prev
= v
;
132 /* account one value more */
135 /* count memory if data is dynamic */
136 if (flags
& MPDM_FREE
)
137 mpdm
->memory_usage
+= size
;
149 * mpdm_ref - Increments the reference count of a value.
152 * Increments the reference count of a value.
155 mpdm_t
mpdm_ref(mpdm_t v
)
164 * mpdm_unref - Decrements the reference count of a value.
167 * Decrements the reference count of a value.
170 mpdm_t
mpdm_unref(mpdm_t v
)
179 * mpdm_sweep - Sweeps unreferenced values.
180 * @count: number of values to be swept
182 * Destroys values with a reference count of 0. @count is the
183 * number of values to be checked for deletion; special values of
184 * @count are -1, that forces a check of all currently known values
185 * (can be time-consuming) and 0, which tells mpdm_sweep() to check a
186 * small group of them on each call.
189 void mpdm_sweep(int count
)
191 /* if count is zero, sweep 'some' values */
193 if (mpdm
->default_sweep
< 0)
194 count
= mpdm
->count
/ -mpdm
->default_sweep
;
196 count
= mpdm
->default_sweep
;
199 /* if count is -1, sweep all */
203 for (; count
> 0 && mpdm
->count
> mpdm
->low_threshold
; count
--) {
204 /* destroy it or skip it */
205 if (!mpdm_destroy(mpdm
->cur
))
206 mpdm
->cur
= mpdm
->cur
->next
;
212 * mpdm_size - Returns the size of an element.
215 * Returns the size of an element.
218 int mpdm_size(const mpdm_t v
)
220 /* NULL values have no size */
229 * mpdm_clone - Creates a clone of a value.
232 * Creates a clone of a value. If the value is multiple, a new value will
233 * be created containing clones of all its elements; otherwise,
234 * the same unchanged value is returned.
237 mpdm_t
mpdm_clone(const mpdm_t v
)
239 if (MPDM_IS_ARRAY(v
))
240 return mpdm_aclone(v
);
247 * mpdm_root - Returns the root hash.
249 * Returns the root hash. This hash is stored internally and can be used
250 * as a kind of global symbol table.
253 mpdm_t
mpdm_root(void)
255 if (mpdm
->root
== NULL
)
256 mpdm
->root
= mpdm_ref(MPDM_H(0));
262 mpdm_t
mpdm_set_ival(mpdm_t v
, int ival
)
263 /* sets an integer value to a value */
265 v
->flags
|= MPDM_IVAL
;
272 mpdm_t
mpdm_set_rval(mpdm_t v
, double rval
)
273 /* sets a real value to a value */
275 v
->flags
|= MPDM_RVAL
;
283 * mpdm_exec - Executes an executable value.
285 * @args: the arguments
287 * Executes an executable value. If @c is a scalar value, its data
288 * should be a pointer to a directly executable C function with a
289 * prototype of mpdm_t func(mpdm_t args); if it's a multiple one,
290 * the first value's data should be a pointer to a directly executable C
291 * function with a prototype of mpdm_t func(mpdm_t b, mpdm_t args) and
292 * the second value will be passed as the @b argument. This value is used
293 * to store bytecode or so when implementing virtual machines or compilers.
295 * Returns the return value of the code. If @c is NULL or not executable,
299 mpdm_t
mpdm_exec(mpdm_t c
, mpdm_t args
)
303 if (c
!= NULL
&& (c
->flags
& MPDM_EXEC
)) {
307 if (c
->flags
& MPDM_MULTIPLE
) {
309 mpdm_t(*func
) (mpdm_t
, mpdm_t
);
311 /* value is multiple; first element is the
312 2 argument version of the executable function,
313 next its optional additional information and
314 finally the arguments */
317 if ((func
= (mpdm_t(*)(mpdm_t
, mpdm_t
)) (x
->data
)) != NULL
)
318 r
= func(mpdm_aget(c
, 1), args
);
321 mpdm_t(*func
) (mpdm_t
);
323 /* value is scalar; c is the 1 argument
324 version of the executable function */
325 if ((func
= (mpdm_t(*)(mpdm_t
)) (c
->data
)) != NULL
)
337 mpdm_t
mpdm_exec_1(mpdm_t c
, mpdm_t a1
)
340 mpdm_t a
= MPDM_A(1);
349 mpdm_t
mpdm_exec_2(mpdm_t c
, mpdm_t a1
, mpdm_t a2
)
352 mpdm_t a
= MPDM_A(2);
362 mpdm_t
mpdm_exec_3(mpdm_t c
, mpdm_t a1
, mpdm_t a2
, mpdm_t a3
)
365 mpdm_t a
= MPDM_A(3);
376 mpdm_t
mpdm_xnew(mpdm_t(*a1
) (mpdm_t
, mpdm_t
), mpdm_t a2
)
381 x
->flags
|= MPDM_EXEC
;
383 mpdm_aset(x
, MPDM_X(a1
), 0);
390 static mpdm_t
MPDM(const mpdm_t args
)
391 /* accesor / mutator for MPDM internal data */
393 mpdm_t v
= mpdm_aget(args
, 0);
400 if ((w
= mpdm_hget_s(v
, L
"low_threshold")) != NULL
&& mpdm_ival(w
) > 0)
401 mpdm
->low_threshold
= mpdm_ival(w
);
403 if ((w
= mpdm_hget_s(v
, L
"default_sweep")) != NULL
)
404 mpdm
->default_sweep
= mpdm_ival(w
);
406 if ((w
= mpdm_hget_s(v
, L
"hash_buckets")) != NULL
)
407 mpdm
->hash_buckets
= mpdm_ival(w
);
410 /* loop all values counting the references ones */
411 for (n
= mpdm
->count
, v
= mpdm
->cur
; n
> 0; n
--, v
= v
->next
)
415 /* now collect all information */
418 mpdm_hset_s(v
, L
"version", MPDM_MBS(VERSION
));
419 mpdm_hset_s(v
, L
"count", MPDM_I(mpdm
->count
));
420 mpdm_hset_s(v
, L
"low_threshold", MPDM_I(mpdm
->low_threshold
));
421 mpdm_hset_s(v
, L
"default_sweep", MPDM_I(mpdm
->default_sweep
));
422 mpdm_hset_s(v
, L
"memory_usage", MPDM_I(mpdm
->memory_usage
));
423 mpdm_hset_s(v
, L
"hash_buckets", MPDM_I(mpdm
->hash_buckets
));
424 mpdm_hset_s(v
, L
"unreferenced", MPDM_I(c
));
429 extern char **environ
;
431 static mpdm_t
build_env(void)
432 /* builds a hash with the environment */
435 mpdm_t e
= MPDM_H(0);
437 for (ptr
= environ
; *ptr
!= NULL
; ptr
++) {
438 char *eq
= strchr(*ptr
, '=');
443 k
= MPDM_NMBS((*ptr
), eq
- (*ptr
));
444 v
= MPDM_MBS(eq
+ 1);
455 * mpdm_startup - Initializes MPDM.
457 * Initializes the Minimum Profit Data Manager. Returns 0 if
458 * everything went OK.
460 int mpdm_startup(void)
462 /* do the startup only unless done beforehand */
465 if ((mpdm
= malloc(sizeof(struct mpdm_control
))) == NULL
)
469 memset(mpdm
, '\0', sizeof(struct mpdm_control
));
471 /* sets the defaults */
472 mpdm
->low_threshold
= 16;
473 mpdm
->default_sweep
= -50000;
474 mpdm
->hash_buckets
= 31;
476 /* sets the locale */
477 if (setlocale(LC_ALL
, "") == NULL
)
478 setlocale(LC_ALL
, "C");
482 /* store the MPDM() function */
483 mpdm_hset_s(mpdm_root(), L
"MPDM", MPDM_X(MPDM
));
485 /* store the ENV hash */
486 mpdm_hset_s(mpdm_root(), L
"ENV", build_env());
489 /* everything went OK */
495 * mpdm_shutdown - Shuts down MPDM.
497 * Shuts down MPDM. No MPDM functions should be used from now on.
499 void mpdm_shutdown(void)
505 * MPDM_A - Creates an array value.
506 * @n: Number of elements
508 * Creates a new array value with @n elements.
511 /** mpdm_t MPDM_A(int n); */
515 * MPDM_H - Creates a hash value.
516 * @n: Number of buckets in the hash (0: use default)
518 * Creates a new hash value with @n buckets. The number
519 * of buckets must be a prime number. If @n is 0, an
520 * optimal number of buckets will be used.
523 /** mpdm_t MPDM_H(int n); */
527 * MPDM_LS - Creates a string value from a literal string.
528 * @wcs: the wide character string
530 * Creates a new string value from a literal, wide character string.
531 * A pointer to the string will be stored in the value (not a copy).
534 /** mpdm_t MPDM_LS(wchar_t * wcs); */
538 * MPDM_S - Creates a string value from a string.
539 * @wcs: the wide character string
541 * Creates a new string value from a wide character string. The value
542 * will store a copy of the string that will be freed on destruction.
545 /** mpdm_t MPDM_S(wchar_t * wcs); */
549 * MPDM_NS - Creates a string value from a string, with size.
550 * @wcs: the wide character string
551 * @s: the size in chars the string will hold
553 * Creates a new string value with a copy of the first @s characters
554 * from the @wcs string.
557 /** mpdm_t MPDM_NS(wchar_t * wcs, int s); */
561 * MPDM_ENS - Creates a string value from an external string, with size.
562 * @wcs: the external wide character string
563 * @s: the size in chars the string will hold
565 * Creates a new string value with size @s. The @wcs string must be
566 * a dynamic value (i.e. allocated by malloc()) that will be freed on
570 /** mpdm_t MPDM_ENS(wchar_t * wcs, int s); */
574 * MPDM_I - Creates an integer value.
577 * Creates a new integer value. MPDM integers are strings.
580 /** mpdm_t MPDM_I(int i); */
584 * MPDM_R - Creates a real value.
585 * @r: the real number
587 * Creates a new real value. MPDM integers are strings.
590 /** mpdm_t MPDM_R(double r); */
594 * MPDM_F - Creates a file value.
595 * @f: the file descriptor
597 * Creates a new file value.
600 /** mpdm_t MPDM_F(FILE * f); */
604 * MPDM_MBS - Creates a string value from a multibyte string.
605 * @mbs: the multibyte string
607 * Creates a new string value from a multibyte string, that will be
608 * converted to wcs by mpdm_mbstowcs().
611 /** mpdm_t MPDM_MBS(char * mbs); */
615 * MPDM_NMBS - Creates a string value from a multibyte string, with size.
616 * @mbs: the multibyte string
619 * Creates a new string value with the first @s characters from the @mbs
620 * multibyte string, that will be converted to wcs by mpdm_mbstowcs().
623 /** mpdm_t MPDM_NMBS(char * mbs, int s); */
627 * MPDM_2MBS - Creates a multibyte string value from a wide char string.
628 * @wcs: the wide char string
630 * Creates a multibyte string value from the @wcs wide char string,
631 * converting it by mpdm_wcstombs(). Take note that multibyte string values
632 * are not properly strings, so they cannot be used for string comparison
636 /** mpdm_t MPDM_2MBS(wchar_t * wcs); */
640 * MPDM_X - Creates a new executable value.
641 * @func: the C code function
643 * Creates a new executable value given a pointer to the @func C code function.
644 * The function must receive an mpdm_t array value (that will hold their
645 * arguments) and return another one.
648 /** mpdm_t MPDM_X(mpdm_t (* func)(mpdm_t args)); */
652 * MPDM_IS_ARRAY - Tests if a value is an array.
655 * Returns non-zero if @v is an array.
657 /** int MPDM_IS_ARRAY(mpdm_t v); */
661 * MPDM_IS_HASH - Tests if a value is a hash.
664 * Returns non-zero if @v is a hash.
666 /** int MPDM_IS_HASH(mpdm_t v); */
670 * MPDM_IS_EXEC - Tests if a value is executable.
673 * Returns non-zero if @v is executable.
675 /** int MPDM_IS_EXEC(mpdm_t v); */
679 * MPDM_IS_STRING - Tests if a value is a string.
682 * Returns non-zero if @v is a string.
684 /** int MPDM_IS_STRING(mpdm_t v); */