2011-04-22 09:50:13 +00:00
|
|
|
#include <stdlib.h>
|
2011-04-25 19:57:03 +00:00
|
|
|
#include <unistd.h>
|
2011-04-22 09:50:13 +00:00
|
|
|
#include "../include/psyc/lib.h"
|
|
|
|
#include "../include/psyc/render.h"
|
2011-04-25 21:40:38 +00:00
|
|
|
#include "../include/psyc/syntax.h"
|
2011-04-22 09:50:13 +00:00
|
|
|
|
|
|
|
#define myUNI "psyc://10.100.1000/~ludwig"
|
|
|
|
|
|
|
|
/* example renderer generating a presence packet */
|
2011-04-26 15:23:06 +00:00
|
|
|
int testPresence(const char *avail, int availlen, const char *desc, int desclen, const char *rendered, uint8_t verbose)
|
2011-04-25 19:57:03 +00:00
|
|
|
{
|
2011-04-25 21:40:38 +00:00
|
|
|
psycModifier routing[] = {
|
|
|
|
psyc_newModifier2(C_GLYPH_OPERATOR_SET, PSYC_C2ARG("_context"), PSYC_C2ARG(myUNI),
|
2011-04-25 20:31:21 +00:00
|
|
|
PSYC_MODIFIER_ROUTING),
|
2011-04-25 19:57:03 +00:00
|
|
|
};
|
|
|
|
|
2011-04-25 21:40:38 +00:00
|
|
|
psycModifier entity[] = {
|
2011-04-25 19:57:03 +00:00
|
|
|
// presence is to be assigned permanently in distributed state
|
2011-04-25 21:40:38 +00:00
|
|
|
psyc_newModifier2(C_GLYPH_OPERATOR_ASSIGN, PSYC_C2ARG("_degree_availability"),
|
2011-04-26 15:23:06 +00:00
|
|
|
avail, availlen, PSYC_MODIFIER_CHECK_LENGTH),
|
2011-04-25 21:40:38 +00:00
|
|
|
psyc_newModifier2(C_GLYPH_OPERATOR_ASSIGN, PSYC_C2ARG("_description_presence"),
|
2011-04-26 15:23:06 +00:00
|
|
|
desc, desclen, PSYC_MODIFIER_CHECK_LENGTH),
|
2011-04-25 19:57:03 +00:00
|
|
|
};
|
|
|
|
|
2011-04-25 21:40:38 +00:00
|
|
|
psycPacket packet = psyc_newPacket2(routing, PSYC_NUM_ELEM(routing),
|
2011-04-26 20:44:48 +00:00
|
|
|
entity, PSYC_NUM_ELEM(entity),
|
|
|
|
PSYC_C2ARG("_notice_presence"),
|
|
|
|
NULL, 0,
|
|
|
|
PSYC_PACKET_CHECK_LENGTH);
|
2011-04-25 19:57:03 +00:00
|
|
|
|
|
|
|
char buffer[512];
|
2011-04-25 21:40:38 +00:00
|
|
|
psyc_render(&packet, buffer, sizeof(buffer));
|
2011-04-26 15:23:06 +00:00
|
|
|
if (verbose)
|
|
|
|
write(0, buffer, packet.length);
|
2011-04-25 21:49:27 +00:00
|
|
|
return strncmp(rendered, buffer, packet.length);
|
2011-04-22 09:50:13 +00:00
|
|
|
}
|
|
|
|
|
2011-04-26 15:23:06 +00:00
|
|
|
int testList(const char *rendered, uint8_t verbose)
|
|
|
|
{
|
|
|
|
psycModifier routing[] = {
|
|
|
|
psyc_newModifier2(C_GLYPH_OPERATOR_SET, PSYC_C2ARG("_source"), PSYC_C2ARG(myUNI),
|
|
|
|
PSYC_MODIFIER_ROUTING),
|
|
|
|
psyc_newModifier2(C_GLYPH_OPERATOR_SET, PSYC_C2ARG("_context"), PSYC_C2ARG(myUNI),
|
|
|
|
PSYC_MODIFIER_ROUTING),
|
|
|
|
};
|
|
|
|
|
|
|
|
psycString elems_text[] = {
|
|
|
|
PSYC_C2STR("foo"),
|
|
|
|
PSYC_C2STR("bar"),
|
|
|
|
PSYC_C2STR("baz"),
|
|
|
|
};
|
|
|
|
|
|
|
|
psycString elems_bin[] = {
|
|
|
|
PSYC_C2STR("foo"),
|
|
|
|
PSYC_C2STR("b|r"),
|
|
|
|
PSYC_C2STR("baz\nqux"),
|
|
|
|
};
|
|
|
|
|
|
|
|
psycList list_text, list_bin;
|
|
|
|
list_text = psyc_newList(elems_text, PSYC_NUM_ELEM(elems_text), PSYC_LIST_CHECK_LENGTH);
|
|
|
|
list_bin = psyc_newList(elems_bin, PSYC_NUM_ELEM(elems_bin), PSYC_LIST_CHECK_LENGTH);
|
|
|
|
|
|
|
|
char buf_text[32], buf_bin[32];
|
|
|
|
psyc_renderList(&list_text, buf_text, sizeof(buf_text));
|
|
|
|
psyc_renderList(&list_bin, buf_bin, sizeof(buf_bin));
|
|
|
|
|
|
|
|
psycModifier entity[] = {
|
|
|
|
psyc_newModifier2(C_GLYPH_OPERATOR_SET, PSYC_C2ARG("_list_text"),
|
|
|
|
buf_text, list_text.length, list_text.flag),
|
|
|
|
psyc_newModifier2(C_GLYPH_OPERATOR_SET, PSYC_C2ARG("_list_binary"),
|
2011-04-26 20:44:48 +00:00
|
|
|
buf_bin, list_bin.length, list_bin.flag),
|
2011-04-26 15:23:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
psycPacket packet = psyc_newPacket2(routing, PSYC_NUM_ELEM(routing),
|
|
|
|
entity, PSYC_NUM_ELEM(entity),
|
|
|
|
PSYC_C2ARG("_test_list"),
|
|
|
|
PSYC_C2ARG("list test"),
|
|
|
|
PSYC_PACKET_CHECK_LENGTH);
|
|
|
|
|
|
|
|
char buffer[512];
|
|
|
|
psyc_render(&packet, buffer, sizeof(buffer));
|
|
|
|
if (verbose)
|
|
|
|
write(0, buffer, packet.length);
|
|
|
|
return strncmp(rendered, buffer, packet.length);
|
|
|
|
}
|
|
|
|
|
2011-04-26 20:44:48 +00:00
|
|
|
int main(int argc, char **argv) {
|
2011-04-26 15:23:06 +00:00
|
|
|
uint8_t verbose = argc > 1;
|
|
|
|
|
|
|
|
if (testPresence(PSYC_C2ARG("_here"), PSYC_C2ARG("I'm omnipresent right now"), "\
|
2011-04-25 21:58:07 +00:00
|
|
|
:_context\t" myUNI "\n\
|
2011-04-25 21:49:27 +00:00
|
|
|
\n\
|
|
|
|
=_degree_availability\t_here\n\
|
|
|
|
=_description_presence\tI'm omnipresent right now\n\
|
|
|
|
_notice_presence\n\
|
2011-04-26 15:23:06 +00:00
|
|
|
|\n", verbose))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (testList("\
|
|
|
|
:_source psyc://10.100.1000/~ludwig\n\
|
|
|
|
:_context psyc://10.100.1000/~ludwig\n\
|
|
|
|
\n\
|
|
|
|
:_list_text |foo|bar|baz\n\
|
|
|
|
:_list_binary 21 3 foo|3 b|r|7 baz\n\
|
|
|
|
qux\n\
|
|
|
|
_test_list\n\
|
|
|
|
list test\n\
|
|
|
|
|\n", verbose))
|
|
|
|
return -2;
|
|
|
|
|
|
|
|
puts("psyc_render passed all tests.");
|
|
|
|
|
|
|
|
return 0;
|
2011-04-22 09:50:13 +00:00
|
|
|
}
|