2011-05-03 20:21:26 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2011-05-08 21:40:26 +00:00
|
|
|
#include <lib.h>
|
2011-05-03 20:18:35 +00:00
|
|
|
#include <psyc/text.h>
|
|
|
|
|
|
|
|
#define BUFSIZE 512
|
|
|
|
|
|
|
|
uint8_t verbose;
|
|
|
|
|
2011-05-03 21:03:52 +00:00
|
|
|
psycTextValueRC getValueFooBar (const char *name, size_t len, psycString *value)
|
2011-05-03 20:18:35 +00:00
|
|
|
{
|
2011-05-04 15:46:20 +00:00
|
|
|
if (verbose)
|
|
|
|
printf("> getValue: %.*s\n", (int)len, name);
|
2011-05-03 20:18:35 +00:00
|
|
|
value->ptr = "Foo Bar";
|
|
|
|
value->length = 7;
|
|
|
|
return PSYC_TEXT_VALUE_FOUND;
|
|
|
|
}
|
|
|
|
|
2011-05-03 21:03:52 +00:00
|
|
|
psycTextValueRC getValueEmpty (const char *name, size_t len, psycString *value)
|
2011-05-03 20:18:35 +00:00
|
|
|
{
|
2011-05-04 15:46:20 +00:00
|
|
|
if (verbose)
|
|
|
|
printf("> getValue: %.*s\n", (int)len, name);
|
2011-05-03 20:18:35 +00:00
|
|
|
value->ptr = "";
|
|
|
|
value->length = 0;
|
|
|
|
return PSYC_TEXT_VALUE_FOUND;
|
|
|
|
}
|
|
|
|
|
2011-05-03 21:03:52 +00:00
|
|
|
psycTextValueRC getValueNotFound (const char *name, size_t len, psycString *value)
|
2011-05-03 20:18:35 +00:00
|
|
|
{
|
2011-05-04 15:46:20 +00:00
|
|
|
if (verbose)
|
|
|
|
printf("> getValue: %.*s\n", (int)len, name);
|
2011-05-03 20:18:35 +00:00
|
|
|
return PSYC_TEXT_VALUE_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
int testText (char *template, size_t tmplen, char *buffer, size_t buflen, psycString *result, psycTextCB getValue)
|
|
|
|
{
|
|
|
|
psycTextState state;
|
|
|
|
size_t length = 0;
|
|
|
|
psycTextRC ret;
|
|
|
|
|
|
|
|
psyc_initTextState(&state, template, tmplen, buffer, buflen);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ret = psyc_text(&state, getValue);
|
2011-05-03 23:54:27 +00:00
|
|
|
length += psyc_getTextBytesWritten(&state);
|
2011-05-03 20:18:35 +00:00
|
|
|
switch (ret)
|
|
|
|
{
|
|
|
|
case PSYC_TEXT_INCOMPLETE:
|
|
|
|
if (verbose)
|
|
|
|
printf("# %.*s...\n", (int)length, buffer);
|
|
|
|
psyc_setTextBuffer2(&state, buffer + length, BUFSIZE - length);
|
|
|
|
break;
|
|
|
|
case PSYC_TEXT_COMPLETE:
|
|
|
|
if (verbose)
|
|
|
|
printf("%.*s\n", (int)length, buffer);
|
|
|
|
result->length = length;
|
|
|
|
result->ptr = buffer;
|
|
|
|
return ret;
|
|
|
|
case PSYC_TEXT_NO_SUBST:
|
|
|
|
if (verbose)
|
|
|
|
printf("%.*s\n", (int)tmplen, template);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (ret == PSYC_TEXT_INCOMPLETE);
|
|
|
|
|
|
|
|
return -2; // shouldn't be reached
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
verbose = argc > 1;
|
|
|
|
char buffer[BUFSIZE];
|
|
|
|
psycString result;
|
|
|
|
|
|
|
|
char *str = "Hello [_foo] & [_bar]!";
|
|
|
|
size_t len = strlen(str);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
testText(str, len, buffer, BUFSIZE, &result, &getValueFooBar);
|
|
|
|
if (memcmp(result.ptr, PSYC_C2ARG("Hello Foo Bar & Foo Bar!")))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
testText(str, len, buffer, BUFSIZE, &result, &getValueEmpty);
|
|
|
|
if (memcmp(result.ptr, PSYC_C2ARG("Hello & !")))
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
if (testText(str, len, buffer, BUFSIZE, &result, &getValueNotFound) != PSYC_TEXT_NO_SUBST)
|
|
|
|
return 3;
|
|
|
|
|
|
|
|
for (i = 1; i < 22; i++)
|
|
|
|
{
|
|
|
|
testText(str, len, buffer, i, &result, &getValueFooBar);
|
|
|
|
if (memcmp(result.ptr, PSYC_C2ARG("Hello Foo Bar & Foo Bar!")))
|
|
|
|
return 10 + i;
|
|
|
|
}
|
2011-05-03 21:03:52 +00:00
|
|
|
|
|
|
|
puts("psyc_text passed all tests.");
|
|
|
|
|
2011-05-03 20:18:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|