source: mainline/uspace/app/bithenge/test.c@ 21f1543

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 21f1543 was 6cd10ac, checked in by Vojtech Horky <vojtechhorky@…>, 13 years ago

Bithenge: hide os.h from public include/

  • Property mode set to 100644
File size: 3.5 KB
RevLine 
[a54bd98]1/*
2 * Copyright (c) 2012 Sean Bartell
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup bithenge
30 * @{
31 */
32/**
33 * @file
34 * Simple program to test Bithenge.
35 */
36
[da0fef6]37#include <errno.h>
[a54bd98]38#include <stdio.h>
[da0fef6]39#include <stdlib.h>
[a54bd98]40#include <sys/types.h>
[8fc0f47c]41#include <bithenge/blob.h>
42#include <bithenge/source.h>
43#include <bithenge/print.h>
44#include <bithenge/script.h>
45#include <bithenge/transform.h>
46#include <bithenge/tree.h>
[6cd10ac]47#include <bithenge/os.h>
48
49#ifdef __HELENOS__
50#include <str_error.h>
51#else
52#include <string.h>
53#define str_error strerror
54#endif
[a54bd98]55
[743ce51]56int main(int argc, char *argv[])
57{
[03b2b2c]58 int rc;
59 if (argc < 3) {
[6be4142]60 fprintf(stderr, "Usage: %s <script> <source>\n", argv[0]);
61 return 1;
[da0fef6]62 } else {
[f9c314a5]63 bithenge_scope_t *scope = NULL;
[04a7435f]64 bithenge_transform_t *transform = NULL;
65 bithenge_node_t *node = NULL, *node2 = NULL;
[43788b2]66
[0191bd3]67 rc = bithenge_scope_new(&scope, NULL);
[f9c314a5]68 if (rc != EOK) {
69 printf("Error creating scope: %s\n", str_error(rc));
70 scope = NULL;
71 goto error;
72 }
[43788b2]73
[03b2b2c]74 rc = bithenge_parse_script(argv[1], &transform);
75 if (rc != EOK) {
76 printf("Error parsing script: %s\n", str_error(rc));
[f9c314a5]77 transform = NULL;
[04a7435f]78 goto error;
[03b2b2c]79 }
80
[f9c314a5]81 rc = bithenge_node_from_source(&node, argv[2]);
[da0fef6]82 if (rc != EOK) {
83 printf("Error creating node from source: %s\n", str_error(rc));
[f9c314a5]84 node = NULL;
[04a7435f]85 goto error;
[da0fef6]86 }
[03b2b2c]87
[f9c314a5]88 rc = bithenge_transform_apply(transform, scope, node, &node2);
[03b2b2c]89 if (rc != EOK) {
[6be4142]90 const char *message = bithenge_scope_get_error(scope);
91 printf("Error applying transform: %s\n",
92 message ? message : str_error(rc));
[f9c314a5]93 node2 = NULL;
[04a7435f]94 goto error;
[03b2b2c]95 }
96
[f2da0bb]97 bithenge_node_dec_ref(node);
[04a7435f]98 node = NULL;
[03b2b2c]99 bithenge_transform_dec_ref(transform);
[04a7435f]100 transform = NULL;
[03b2b2c]101
102 rc = bithenge_print_node(BITHENGE_PRINT_PYTHON, node2);
[da0fef6]103 if (rc != EOK) {
[6be4142]104 const char *message = bithenge_scope_get_error(scope);
105 printf("Error printing node: %s\n",
106 message ? message : str_error(rc));
[04a7435f]107 goto error;
[da0fef6]108 }
[f2da0bb]109 bithenge_node_dec_ref(node2);
[04a7435f]110 node2 = NULL;
[f9c314a5]111 bithenge_scope_dec_ref(scope);
112 scope = NULL;
[da0fef6]113 printf("\n");
[04a7435f]114
115 return 0;
116
117error:
118 bithenge_node_dec_ref(node);
119 bithenge_node_dec_ref(node2);
120 bithenge_transform_dec_ref(transform);
[f9c314a5]121 bithenge_scope_dec_ref(scope);
[04a7435f]122 return 1;
[da0fef6]123 }
[11b9ad7]124
[a54bd98]125 return 0;
126}
127
128/** @}
129 */
Note: See TracBrowser for help on using the repository browser.