Modest/examples/mycss/tokenizer_high_level.c
2016-12-14 22:59:03 +03:00

67 lines
1.9 KiB
C

/*
Copyright (C) 2016 Alexander Borisov
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Author: lex.borisov@gmail.com (Alexander Borisov)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mycss/api.h>
mycss_token_t * token_ready_callback(mycss_entry_t* entry, mycss_token_t* token)
{
size_t tokens_count = mycss_entry_token_count(entry);
mycss_token_type_t token_type = mycss_token_type(token);
printf("Token %zu: <%s>\n", tokens_count, mycss_token_name_by_type(token_type));
return token;
}
int main(int argc, const char * argv[])
{
char *css = "#ident [name=\"best-name\"] {rgba(0, 0, 0, 0.1);}";
// basic init
mycss_t *mycss = mycss_create();
mycss_status_t status = mycss_init(mycss);
// check initialization
if (MyCSS_FAILED(status)) return EXIT_FAILURE;
// current entry work init
mycss_entry_t *entry = mycss_entry_create();
status = mycss_entry_init(mycss, entry);
// set custom callback for token is ready
mycss_entry_token_ready_callback(entry, token_ready_callback);
// parse css
mycss_parse(entry, MyHTML_ENCODING_UTF_8, css, strlen(css));
// release resurces
mycss_entry_destroy(entry, true);
mycss_destroy(mycss, true);
return 0;
}