diff options
author | Dodji Seketeli <dodji 47 seketeli dot org> | 2003-06-23 20:38:35 +0000 |
---|---|---|
committer | Dodji Seketeli <dodji@src.gnome.org> | 2003-06-23 20:38:35 +0000 |
commit | 7f9311a547999871a1051f1c49f6c4610f175147 (patch) | |
tree | c6e7d32f1a956cea27a4519f5c65e16282d840e4 /docs/examples | |
parent | 975b9f0823f4a38d2a7651d497738d7f56e72d67 (diff) | |
download | libcroco-7f9311a547999871a1051f1c49f6c4610f175147.tar.gz |
mode bits on this the beginning of a code example on how to use the SAC
2003-06-23 Dodji Seketeli <dodji 47 seketeli dot org>
* docs/design/parser-architecture.txt : mode bits on this
* the beginning of a code example on how to use the SAC api.
Dodji.
Diffstat (limited to 'docs/examples')
-rw-r--r-- | docs/examples/sac-example-1.c | 190 |
1 files changed, 190 insertions, 0 deletions
diff --git a/docs/examples/sac-example-1.c b/docs/examples/sac-example-1.c new file mode 100644 index 0000000..c72fd70 --- /dev/null +++ b/docs/examples/sac-example-1.c @@ -0,0 +1,190 @@ +/* -*- Mode: C; indent-tabs-mode:nil; c-basic-offset:8 -*- */ + +/** + *This test example shows how to use the SAC api. + * + *This features a simple parser that says "hey" when + *it encounters a css ruleset :) + * + *To compile this file, type: + * + *gcc -g -o sac-example-1 `pkg-config --cflags --libs libcroco` sac-example-1.c + * + *Make sure you have compiled and installed libcroco prior to trying to + *compile this file :) + * + *Initial Author: Dodji Seketeli <Dodji 47 seketeli dot org> + */ + +#include <libcroco.h> + +/** + *This is a callback function that will + *be called at the begining of each css ruleset. + *@param a_handler a pointer to the current sac + *document handler + *@param a_selector a pointer to the selector. + *of the current ruleset. + */ +static void +start_selector_cb (CRDocHandler *a_handler, + CRSelector *a_selector) +{ + printf ("==========================================\n") ; + printf ("Hey, this is the begining of a ruleset\n") ; +} + +/** + *This is a callback function that will be called at the end + *of the each css ruleset. + */ +static void +end_selector_cb (CRDocHandler *a_handler, + CRSelector *a_selector) +{ + printf ("Hey, this is the end of a ruleset\n") ; + printf ("======================================\n\n") ; +} + +/** + *Displays some information about how to use this program. + *@param a_prog_name the name of the current program. + */ +void +display_usage (unsigned char *a_prog_name) +{ + unsigned char *prog_name = a_prog_name ; + + if (!prog_name) + { + prog_name = "sac-example-1" ; + } + + printf ("usage: %s [--help] | <css file name>\n", prog_name) ; +} + +int +main (int argc, char **argv) +{ + unsigned short i = 0 ; + unsigned char * file_path = NULL ; + CRParser * parser = NULL ; + CRDocHandler *sac_handler = NULL ; + + if (argc <= 1) + { + display_usage (argv[0]) ; + return -1 ; + } + + /* + *Let's parse the + *command line arguments of this + *program in this loop. + */ + for (i=0 ; i < argc ;i++) + { + if (*argv[i] != '-') + break ; + + if (!strcmp (argv[i], "--help") + || !strcmp (argv[i], "-h")) + { + display_usage (argv[0]) ; + return ; + } + else + { + /* + *no other option is + *available now, so this is + *a bit redundant... + */ + display_usage (argv[0]) ; + } + } + + if (i >= argc) + { + /* + *no file name has been given + *in parameter, go out. + */ + return ; + } + + /**************************************** + *Now, the real libcroco related stuffs... + ****************************************/ + + file_path = argv[i + 1] ; + + /* + *Instanciate the libcroco parser. + */ + parser = cr_parser_new_from_file (file_path, + CR_ASCII) ; + if (!parser) + { + /* + *Damned, something bad happened ... + */ + return ; + } + + /* + *Instanciates the SAC document handler. + */ + sac_handler = cr_doc_handler_new () ; + if (!sac_handler) + { + /* + *Argh, something bad happened here :-\ + *Let's release the resources we allocated + *and let's get out. + */ + + cr_parser_destroy (parser) ; + return ; + } + + /****************** + *Sets some of the sac document handlers. + ****************/ + + /* + *This sac handler callback function will get called by the parser + *each time it encounters the beginning of a ruleset. + */ + sac_handler->start_selector = start_selector_cb ; + + /* + *This sac handler callback function will get called by the parser + *each time it encounters the end of a ruleset. + */ + sac_handler->end_selector = end_selector_cb ; + + /* + *Let's register our sac handler into the parser. + */ + cr_parser_set_sac_handler (parser, sac_handler) ; + + /* + *Now, let's do the parsing !!! + */ + cr_parser_parse (parser) ; + + /******************************************************* + *End of the parsing. A lot of sentences begining with "Hey" + *may have been printed on the screen... + ***********************************************/ + + /* + *Time to free the resources we allocated. + */ + cr_parser_destroy (parser) ; + + cr_doc_handler_unref (sac_handler) ; + + return 0 ; +} |