-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnativetest.c
More file actions
470 lines (345 loc) · 9.16 KB
/
nativetest.c
File metadata and controls
470 lines (345 loc) · 9.16 KB
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
/* -MODULE----------------------------------------------------------------------
RapidBATCH
Copyright (C) 2008, 2009 by Phorward Software Technologies, Jan Max Meyer
http://www.phorward-software.com ++ mail@phorward-software.com
File: nativetest.c
Author: Jan Max Meyer
Andreas Harbecke
Usage: This is a test file for native function development;
Some functions will be sorted out into other modules, soon.
----------------------------------------------------------------------------- */
/*
* Includes
*/
/* #define __WITH_TRACE */
#include "rb_global.h"
/*
* Global variables
*/
/*
* Functions
*/
RB_FCT( getlen )
{
/*RBAUTOIMPORT function getlen v*/
/*RBDOC
%%function
getlen( str )
%%desc:en
Returns the length of characters in string '''str'''.
%%desc:ge
Gibt die Länge (=Anzahl der Zeichen) des Strings '''str''' zurück.
%%parm:en
str The string, which length should be retrieved.
%%parm:ge
str Der String, dessen Länge bestimmt werden soll.
%%return:en
The length (number of characters) of str.
%%return:ge
Die Länge (Anzahl der Zeichen) von str.
%%notice:en
%%notice:ge
RBDOC*/
char* str;
PROC( "getlen" );
RB_FCT_DUMP_PARMS();
str = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 0 ) );
VARS( "str", "%s", str );
RB_PARM_VAL_SET_LONG( RB_FCT_RET, ( (unsigned long)pstrlen( str ) ) );
VARS( "Length", "%ld", pstrlen( str ) );
RETURN( 0 );
}
RB_FCT( charat )
{
/*RBAUTOIMPORT function getcharat vv*/
/*RBDOC
%%function:en
getcharat( str, offset )
%%function:ge
getcharat( str, position )
%%desc:en
Returns the character at '''offset''' in '''str'''.
If '''offset''' is greater than the string's length, or
even negative, an empty string will be returned.
%%desc:ge
Gibt das Zeichen an '''position''' im String '''str'''
zurück. Ist '''position''' größer als die Stringlänge
oder gar negativ wird ein Leerstring zurückgegeben.
%%parm:en
str The string, from which the character should be retrieved.
%%parm:en
offset The offset where the character should be retuned
from.
%%parm:ge
str Der String, aus welchem ein Zeichen zurückgegeben werden soll.
%%parm:ge
position Die Position des gewünschten Zeichens aus '''str'''.
%%return:en
The character on the given offset.
%%return:ge
Das Zeichen an der gewünschten Position.
%%notice:en
If an invalid offset is given, an emptystring will be the result.
%%notice:ge
Wird ein fehlerhafter Positionswert übergeben ist der Rückgabewert
der Funktion ein Leerstring.
RBDOC*/
char temp [ 1 + 1 ];
char* str;
long cnt;
PROC( "charat" );
RB_FCT_DUMP_PARMS();
str = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 0 ) );
VARS( "str", "%s", str );
cnt = RB_PARM_VAL_GET_LONG( RB_FCT_PARM_ACCESS( 1 ) ) - 1;
VARS( "cnt", "%ld", cnt );
if( cnt >= 0 && cnt < pstrlen( str ) )
sprintf( temp, "%c", str[ cnt ] );
else
*temp = '\0';
VARS( "temp", "%s", temp );
RB_PARM_VAL_SET_STR( RB_FCT_RET, pstrdup( temp ) );
RETURN( 0 );
}
RB_FCT( print )
{
/*RBAUTOIMPORT procedure print v+*/
/*RBDOC
%%procedure:en
print( output^1^ [, output^n^ ] )
%%procedure:ge
print( ausgabe^1^ [, ausgabe^n^] )
%%desc:en
Outputs expressions to stdout.\n
Each expression '''output''' will be in a single new line each.
%%desc:ge
Jeder Ausdruck '''ausgabe''' wird in jeweils in einer einzelnen Zeile ausgegeben.
%%parm:en
output An arbitrary expression to be printed.
%%parm:ge
output Ein beliebiger Ausdruck, der ausgegeben werden soll.
%%notice:en
%%notice:ge
RBDOC*/
char* str;
int i;
PROC( "print" );
RB_FCT_DUMP_PARMS();
for( i = 0; i < RB_FCT_PARM_COUNT(); i++ )
{
str = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( i ) );
VARS( "str", "%s", str );
printf( "%s\n", str );
}
RETURN( 0 );
}
RB_FCT( getchr )
{
long asciiCode;
char asciiSign [ 1 + 1 ];
PROC( "getchr" );
RB_FCT_DUMP_PARMS();
asciiCode = RB_PARM_VAL_GET_LONG( RB_FCT_PARM_ACCESS( 0 ) );
VARS( "asciiCode", "%ld", asciiCode);
sprintf( asciiSign, "%c", (char) asciiCode );
RB_PARM_VAL_SET_STR( RB_FCT_RET, pstrdup( asciiSign ) );
RETURN( 0 );
}
RB_FCT( getasc )
{
char* asciiSign;
PROC( "getasc" );
RB_FCT_DUMP_PARMS();
asciiSign = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 0 ) );
VARS( "asciiSign", "%s", asciiSign);
RB_PARM_VAL_SET_LONG( RB_FCT_RET, (long) *asciiSign );
RETURN( 0 );
}
RB_FCT( getpos )
{
char* sourceString;
char* targetString;
char* tempString;
long position;
PROC( "getpos" );
RB_FCT_DUMP_PARMS();
sourceString = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 0 ) );
VARS( "sourceString", "%s", sourceString );
targetString = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 1 ) );
VARS( "targetString", "%s", targetString );
position = RB_PARM_VAL_GET_LONG( RB_FCT_PARM_ACCESS( 2 ) );
VARS( "position", "%ld", position);
for( tempString = sourceString - 1;
position > 0 && tempString; position-- )
tempString = strstr( ++tempString, targetString );
if( tempString )
RB_PARM_VAL_SET_LONG( RB_FCT_RET, tempString - sourceString + 1 );
else
RB_PARM_VAL_SET_LONG( RB_FCT_RET, 0 );
RETURN( 0 );
}
RB_FCT( lowvar )
{
char* ptr;
char* sourceString;
PROC( "lowvar" );
RB_FCT_DUMP_PARMS();
sourceString = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 0 ) );
VARS( "sourceString", "%s", sourceString );
for( ptr = sourceString; *ptr; ptr++ )
{
if( *ptr >= 'A' && *ptr <= 'Z' )
*ptr += 32;
}
RB_PARM_VAL_SET_STR( RB_FCT_RET, pstrdup( sourceString ) );
RETURN( 0 );
}
RB_FCT( upvar )
{
char* ptr;
char* sourceString;
PROC( "upvar" );
RB_FCT_DUMP_PARMS();
sourceString = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 0 ) );
VARS( "sourceString", "%s", sourceString );
for( ptr = sourceString; *ptr; ptr++ )
{
if( *ptr >= 'a' && *ptr <= 'z' )
*ptr -= 32;
}
RB_PARM_VAL_SET_STR( RB_FCT_RET, pstrdup( sourceString ) );
RETURN( 0 );
}
RB_FCT( replacevar )
{
/*RBAUTOIMPORT function replacevar vvv*/
char* str;
char* find;
char* replace;
PROC( "lowvar" );
RB_FCT_DUMP_PARMS();
str = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 0 ) );
find = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 1 ) );
replace = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 2 ) );
VARS( "str", "%s", str );
VARS( "find", "%s", find );
VARS( "replace", "%s", replace );
str = pstr_replace( str, find, replace );
RB_PARM_VAL_SET_STR( RB_FCT_RET, str );
RETURN( 0 );
}
RB_FCT( trimvar )
{
/*RBAUTOIMPORT function trimvar v*/
/*RBDOC
%%function
trimvar( str )
%%desc:en
Removes beginning and trailing whitespace (tabulators, blanks)
from a string '''str''' and returns the ''trimmed'' string.
%%desc:ge
Entfernt führenden und endenden Leerzeichen und Tabulatoren aus
einem String '''str''', und gibt diesen zurück.
%%parm:en
str The string to be trimmed.
%%parm:ge
str Der zu bearbeitende String.
%%return:en
Returns the 'trimmed' string.
%%return:ge
Gibt den ''getrimmten'' String zurück.\n
Enthält der Eingabestring keine führenden oder endenden
Leerzeichen, so ist der Rückgabestring äquivalent zum
Eingabestring.
%%notice:en
%%notice:ge
RBDOC*/
char* bgnstr;
char* endstr;
char* sourceString;
PROC( "trimvar" );
RB_FCT_DUMP_PARMS();
sourceString = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 0 ) );
VARS( "sourceString", "%s", sourceString );
TIMEDUMP;
bgnstr = sourceString;
while( *bgnstr == ' ' || *bgnstr == '\t' )
bgnstr++;
endstr = pstrlen ( bgnstr ) + bgnstr - 1;
while( *endstr == ' ' || *endstr == '\t' )
endstr--;
*(endstr + 1) = '\0';
TIMEDUMP;
RB_PARM_VAL_SET_STR( RB_FCT_RET, pstrdup( bgnstr ) );
RETURN( 0 );
}
/* Test variable [test] ---------------------------------------------------- */
RB_VARFCT( get_test )
{
/*RBAUTOIMPORT variable-get test*/
PROC( "get_test" );
RB_VARFCT_DUMP_PARMS();
RB_PARM_VAL_SET_STR( RB_VARFCT_VAL,
pstrdup( "Hello World, das ist ausm System :D" ) );
RETURN( 0 );
}
RB_VARFCT( set_test )
{
/*RBAUTOIMPORT variable-set test*/
PROC( "set_test" );
RB_VARFCT_DUMP_PARMS();
printf( "My var value >%s<\n", RB_PARM_VAL_GET_STR( RB_VARFCT_VAL ) );
RETURN( 0 );
}
/*RBDOC
%%variable
[test]
%%desc:en
Test variable for the development version.
%%desc:ge
Dies ist die Testvariable der RB6 Entwicklungsversion.
%%notice:en
%%notice:ge
RBDOC*/
#if 0
RB_FCT( include )
{
/*RBAUTOIMPORT function include v*/
char* filename;
srcfile file;
PROC( "compiletime_test" );
RB_FCT_DUMP_PARMS();
filename = RB_PARM_VAL_GET_STR( RB_FCT_PARM_ACCESS( 0 ) );
switch( rb_comp_read_file( &file, filename ) )
{
case 0:
break;
default:
case 1:
RETURN( 1 );
break;
}
/* printf( "include >%s< >%s<\n", filename, file.content ); */
rb_comp_compile( file.filename, file.content );
//pfree( file.filename );
//pfree( file.content );
RETURN( 0 );
}
#endif
/*
This is a monumental: The first native %%function
ever called by the RapidBATCH VM! Keep it, please! ;)
int rb_NATIVE_strlen_TEST( vm_stackitem* ret,
vm_stackitem* parms, vm_addr parms_cnt )
{
char* mystr;
PROC( "rb_NATIVE_strlen_TEST" );
PARMS( "ret", "%p", ret );
PARMS( "parms", "%p", parms );
PARMS( "parms_cnt", "%ld", parms_cnt );
mystr = ITEM_VAL_GET_STR( parms );
VARS( "mystr", "%s", mystr );
ITEM_VAL_SET_LONG( ret, pstrlen( mystr ) );
RETURN( 0 );
}
*/