-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxynDisp.c
207 lines (177 loc) · 3.94 KB
/
xynDisp.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
* xynDisp.c
*
* Created on: Feb 6, 2011
* Author: mousomer
*/
#include "libxyn.h"
#define PRNT_LINE_LEN 10
#define PRINT_FMT_ARRAY(fmt,digits,y) \
for ( int i=0; i<len; i++ ) { \
fprintf(fp, fmt, digits, y ); \
if ( (i+1)%lineLen == 0 ) NL;}
#define PRINT_FMT_PREC_ARRAY(fmt,digits, precision,y) \
for ( int i=0; i<len; i++ ) { \
fprintf(fp, fmt, precision, digits, y ); \
if ( (i+1)%lineLen == 0 ) NL; }
/* debugger printing information */
/*int debugPrint = DEBUG_FUNCTION + DEBUG_HEADER + DEBUG_TIME +DEBUG_COEFF + DEBUG_PROCESS;*/
int debugPrint = DEBUG_FUNCTION + DEBUG_HEADER + DEBUG_TIME +DEBUG_COEFF + DEBUG_PROCESS + DEBUG_DETAIL;
extern inline void XYN_DPRINTF(int level, char *format, ...);
void disp_i( int* num)
{
printf(" %6d ", *num );
}
void disp_c( char* num)
{
printf(" %4c ", *num );
}
void disp_f( float* num)
{
printf(" %f ", *num );
}
void disp_e( double* num)
{
printf(" %lf ", *num );
}
int displayArray ( char* arr, int nBytes, int len, void(*dispNumber)(void*) )
{
assert ( arr!=NULL && nBytes>0 && len>=0 );
printf ("\nDisplaying array... \n");
while ( len-- > 0 )
{
if ( (len+1)%PRNT_LINE_LEN == 0 ) NL;
dispNumber ( arr );
arr += nBytes;
}
NL;
return OK;
}
int displayArrayFormat ( void* arr, int nBytes, int len, char type, int digits, int precision, int lineLen, FILE* fp )
{
assert ( arr!=NULL && nBytes>0 && len>=0 );
XYN_DPRINTF(DEBUG_HEADER,"\nDisplaying array... %p, %dX%d, type %c, %d.%d at %d \n", arr, nBytes, len, type, digits, precision, lineLen);
int* int_arr;
char* char_arr;
float* float_arr;
long* long_arr;
double* double_arr;
if ( !lineLen ) lineLen = PRNT_LINE_LEN;
switch (type)
{
case 'd':
int_arr = (int*) (arr);
PRINT_FMT_ARRAY(" %*d ", digits, *int_arr++);
break;
case 'l':
long_arr = (long*) (arr);
PRINT_FMT_ARRAY(" %*ld ", digits, *long_arr++);
break;
case 'c':
char_arr = (char*) (arr);
PRINT_FMT_ARRAY(" %*c ", digits, *char_arr++);
break;
case 'f':
float_arr = (float*) (arr);
PRINT_FMT_PREC_ARRAY(" %*.*f ", precision, digits, *float_arr++);
break;
case 'g':
double_arr = (double*) (arr);
PRINT_FMT_PREC_ARRAY(" %*.*lg ", precision, digits, *double_arr++);
break;
default:
perror ( "data type unknown ");
}
NL;
return OK;
}
int displayArray_i ( int* arr, int len, FILE* fp )
{
assert ( arr!=NULL && fp && len>=0 );
while ( len-- > 0 )
{
if ( (len+1)%PRNT_LINE_LEN == 0 ) NL;
fprintf(fp, " %5d ", *arr++);
}
NL;
return OK;
}
int displayArray_d ( double* arr, int len, FILE* fp )
{
assert ( arr!=NULL && fp && len>=0 );
while ( len-- > 0 )
{
if ( (len+1)%PRNT_LINE_LEN == 0 ) NL;
fprintf(fp, " %12.4f ", *arr++);
}
NL;
return OK;
}
int displayArray_f ( float* arr, int len, FILE* fp )
{
assert ( arr!=NULL && fp && len>=0 );
while ( len-- > 0 )
{
if ( (len+1)%PRNT_LINE_LEN == 0 ) NL;
fprintf(fp, " %12.4f ", *arr++);
}
NL;
return OK;
}
int displayArrayJump_f ( float* arr, int jmp, int len, FILE* fp )
{
assert ( arr!=NULL && fp && len>=0 );
while ( len-- > 0 )
{
if ( (len+1)%PRNT_LINE_LEN == 0 ) NL;
fprintf(fp, " %12.4f ", *arr);
arr += jmp;
}
NL;
return OK;
}
int displayArrayJump_d ( double* arr, int jmp, int len, FILE* fp )
{
assert ( arr!=NULL && fp && len>=0 );
while ( len-- > 0 )
{
if ( (len+1)%PRNT_LINE_LEN == 0 ) NL;
fprintf(fp, " %12.4f ", *arr);
arr += jmp;
}
NL;
return OK;
}
int displayArrayNM_i ( int* arr, int nC, int nR, FILE* fp )
{
assert ( arr!=NULL && fp && nC>=0 && nR>=0 );
while ( nR-- > 0 )
{
displayArray_i ( arr, nC, fp );
arr+=nC;
}
NL;
return OK;
}
int displayArrayNM_f ( float* arr, int nC, int nR, FILE* fp )
{
assert ( arr!=NULL && fp && nC>=0 && nR>=0 );
while ( nR-- > 0 )
{
displayArray_f ( arr, nC, fp );
arr+=nC;
}
NL;
return OK;
}
int displayArrayNM_d ( double* arr, int nC, int nR, FILE* fp )
{
assert ( arr!=NULL && fp && nC>=0 && nR>=0 );
while ( nR-- > 0 )
{
displayArray_d ( arr, nC, fp );
arr+=nC;
}
NL;
return OK;
}