3 MPDM - Minimum Profit Data Manager
4 Copyright (C) 2003/2007 Angel Ortega <angel@triptico.com>
6 mpdm_d.c - Debugging utilities
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
43 static wchar_t *dump_1(const mpdm_t v
, int l
, wchar_t * ptr
, int *size
)
49 for (n
= 0; n
< l
; n
++)
50 ptr
= mpdm_poke(ptr
, size
, L
" ", 2, sizeof(wchar_t));
56 sprintf(tmp
, "%d,%c%c%c%c:", v
->ref
,
57 v
->flags
& MPDM_FILE
? 'F' :
58 (v
->flags
& MPDM_STRING
? 'S' :
59 (v
->flags
& MPDM_EXEC
? 'X' : '-')),
60 v
->flags
& MPDM_HASH
? 'H' :
61 (v
->flags
& MPDM_MULTIPLE
? 'M' : '-'),
62 v
->flags
& MPDM_FREE
? 'A' : '-',
63 v
->flags
& MPDM_IVAL
? 'I' : (v
->flags
& MPDM_RVAL
? 'R' : '-')
66 wptr
= mpdm_mbstowcs(tmp
, &s
, -1);
67 ptr
= mpdm_poke(ptr
, size
, wptr
, s
, sizeof(wchar_t));
70 /* if it's a multiple value, add also the number
72 if (v
->flags
& MPDM_MULTIPLE
) {
73 sprintf(tmp
, "[%d] ", mpdm_size(v
));
74 wptr
= mpdm_mbstowcs(tmp
, &s
, -1);
75 ptr
= mpdm_poke(ptr
, size
, wptr
, s
, sizeof(wchar_t));
80 /* add the visual representation of the value */
81 wptr
= mpdm_string(v
);
82 ptr
= mpdm_poke(ptr
, size
, wptr
, wcslen(wptr
), sizeof(wchar_t));
83 ptr
= mpdm_poke(ptr
, size
, L
"\n", 1, sizeof(wchar_t));
86 /* if it's a hash, iterate it using hkeys
87 (and not assuming a hash is an array) */
88 if (v
->flags
& MPDM_HASH
) {
94 for (n
= 0; n
< mpdm_size(w
); n
++) {
97 ptr
= dump_1(t
, l
+ 1, ptr
, size
);
98 ptr
= dump_1(mpdm_hget(v
, t
), l
+ 2, ptr
, size
);
102 if (v
->flags
& MPDM_MULTIPLE
) {
103 for (n
= 0; n
< mpdm_size(v
); n
++)
104 ptr
= dump_1(mpdm_aget(v
, n
), l
+ 1, ptr
, size
);
113 * mpdm_dumper - Returns a visual representation of a complex value
116 * Returns a visual representation of a complex value.
118 mpdm_t
mpdm_dumper(const mpdm_t v
)
123 ptr
= dump_1(v
, 0, NULL
, &size
);
124 ptr
= mpdm_poke(ptr
, &size
, L
"", 1, sizeof(wchar_t));
126 return MPDM_ENS(ptr
, size
);
131 * mpdm_dump - Dumps a value to stdin.
134 * Dumps a value to stdin. The value can be complex. This function
135 * is for debugging purposes only.
137 void mpdm_dump(const mpdm_t v
)
142 mpdm_write_wcs(stdout
, mpdm_string(w
));
148 * mpdm_dump_unref - Dumps all unreferenced values.
150 * Dumps all unreferenced values.
152 void mpdm_dump_unref(void)
157 /* loop all values */
162 printf("** Unreferenced values:\n");
173 printf("** Total unreferenced: %d\n", unref
);