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
|
/*
* Copyright (C) 2009 Lincoln de Sousa <lincoln@minaslivre.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <stdio.h> /* printf() */
#include <stdlib.h> /* free() */
#include <string.h> /* strcmp() */
#include <assert.h> /* assert() */
#include <taningia/iri.h>
#include <taningia/error.h>
void
test_iri (void)
{
ta_iri_t *iri;
char *ta_iri_string;
iri = ta_iri_new ();
ta_iri_set_scheme (iri, "http");
ta_iri_set_user (iri, "lincoln");
ta_iri_set_host (iri, "localhost");
ta_iri_set_port (iri, 80);
ta_iri_set_path (iri, "/hello/there");
assert (!strcmp (ta_iri_get_scheme (iri), "http"));
assert (!strcmp (ta_iri_get_user (iri), "lincoln"));
assert (!strcmp (ta_iri_get_host (iri), "localhost"));
assert (ta_iri_get_port (iri) == 80);
assert (!strcmp (ta_iri_get_path (iri), "/hello/there"));
ta_iri_string = ta_iri_to_string (iri);
assert (!strcmp (ta_iri_string,
"http://lincoln@localhost:80/hello/there"));
free (ta_iri_string);
ta_object_unref (iri);
}
void
build_iri (const char *iristr)
{
ta_iri_t *myiri;
char *mystr;
myiri = ta_iri_new ();
if (ta_iri_set_from_string (myiri, iristr))
{
printf ("scheme: %s\n", ta_iri_get_scheme (myiri));
printf ("user: %s\n", ta_iri_get_user (myiri));
printf ("host: %s\n", ta_iri_get_host (myiri));
printf ("port: %d\n", ta_iri_get_port (myiri));
printf ("path: %s\n", ta_iri_get_path (myiri));
printf ("query: %s\n", ta_iri_get_query (myiri));
printf ("fragment: %s\n", ta_iri_get_fragment (myiri));
mystr = ta_iri_to_string (myiri);
if (mystr)
{
printf ("built IRI: %s\n", mystr);
free (mystr);
}
ta_object_unref (myiri);
}
else
{
ta_error_t *error;
error = ta_iri_get_error (myiri);
fprintf (stderr, "%s: %s\n",
ta_error_get_name (error),
ta_error_get_message (error));
}
}
/* An example of a type based on the basic iri implementation. The tag
* type. This example shows how to use an extended type too, only
* `overrided' or methods that iri doesn't have that should be called
* directly.
*/
void
test_tag (void)
{
ta_tag_t *tag;
tag = ta_tag_new ();
printf ("Parsing tag uri: %s\n", "tag:minaslivre.org,2009-10:/web/blah?a=1#blah=2");
if (ta_tag_set_from_string (tag, "tag:minaslivre.org,2009-10:/web/blah?a=1#blah=2"))
{
char *res = NULL;
printf ("scheme: %s\n", ta_iri_get_scheme (TA_CAST_IRI (tag)));
printf ("path: %s\n", ta_iri_get_path (TA_CAST_IRI (tag)));
printf ("query: %s\n", ta_iri_get_query (TA_CAST_IRI (tag)));
printf ("fragment: %s\n", ta_iri_get_fragment (TA_CAST_IRI (tag)));
printf ("authority: %s\n", ta_tag_get_authority (tag));
printf ("date: %s\n", ta_tag_get_date (tag));
printf ("specific: %s\n", ta_tag_get_specific (tag));
/* Result */
res = ta_iri_to_string (TA_CAST_IRI (tag));
if (res)
{
printf ("regenerated uri: %s\n\n", res);
free (res);
}
}
else
{
ta_error_t *error;
error = ta_iri_get_error (TA_CAST_IRI (tag));
fprintf (stderr, "%s: %s\n",
ta_error_get_name (error),
ta_error_get_message (error));
}
ta_object_unref (tag);
}
int
main (int argc, char **argv)
{
test_iri ();
test_tag ();
if (argc == 2)
build_iri (argv[1]);
return 0;
}
|