| 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 |  | 
|---|
| 37 | #include <errno.h> | 
|---|
| 38 | #include <stdio.h> | 
|---|
| 39 | #include <stdlib.h> | 
|---|
| 40 | #include <sys/types.h> | 
|---|
| 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> | 
|---|
| 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 | 
|---|
| 55 |  | 
|---|
| 56 | int main(int argc, char *argv[]) | 
|---|
| 57 | { | 
|---|
| 58 | int rc; | 
|---|
| 59 | if (argc < 3) { | 
|---|
| 60 | fprintf(stderr, "Usage: %s <script> <source>\n", argv[0]); | 
|---|
| 61 | return 1; | 
|---|
| 62 | } else { | 
|---|
| 63 | bithenge_scope_t *scope = NULL; | 
|---|
| 64 | bithenge_transform_t *transform = NULL; | 
|---|
| 65 | bithenge_node_t *node = NULL, *node2 = NULL; | 
|---|
| 66 |  | 
|---|
| 67 | rc = bithenge_scope_new(&scope, NULL); | 
|---|
| 68 | if (rc != EOK) { | 
|---|
| 69 | printf("Error creating scope: %s\n", str_error(rc)); | 
|---|
| 70 | scope = NULL; | 
|---|
| 71 | goto error; | 
|---|
| 72 | } | 
|---|
| 73 |  | 
|---|
| 74 | rc = bithenge_parse_script(argv[1], &transform); | 
|---|
| 75 | if (rc != EOK) { | 
|---|
| 76 | printf("Error parsing script: %s\n", str_error(rc)); | 
|---|
| 77 | transform = NULL; | 
|---|
| 78 | goto error; | 
|---|
| 79 | } | 
|---|
| 80 |  | 
|---|
| 81 | rc = bithenge_node_from_source(&node, argv[2]); | 
|---|
| 82 | if (rc != EOK) { | 
|---|
| 83 | printf("Error creating node from source: %s\n", str_error(rc)); | 
|---|
| 84 | node = NULL; | 
|---|
| 85 | goto error; | 
|---|
| 86 | } | 
|---|
| 87 |  | 
|---|
| 88 | rc = bithenge_transform_apply(transform, scope, node, &node2); | 
|---|
| 89 | if (rc != EOK) { | 
|---|
| 90 | const char *message = bithenge_scope_get_error(scope); | 
|---|
| 91 | printf("Error applying transform: %s\n", | 
|---|
| 92 | message ? message : str_error(rc)); | 
|---|
| 93 | node2 = NULL; | 
|---|
| 94 | goto error; | 
|---|
| 95 | } | 
|---|
| 96 |  | 
|---|
| 97 | bithenge_node_dec_ref(node); | 
|---|
| 98 | node = NULL; | 
|---|
| 99 | bithenge_transform_dec_ref(transform); | 
|---|
| 100 | transform = NULL; | 
|---|
| 101 |  | 
|---|
| 102 | rc = bithenge_print_node(BITHENGE_PRINT_PYTHON, node2); | 
|---|
| 103 | if (rc != EOK) { | 
|---|
| 104 | const char *message = bithenge_scope_get_error(scope); | 
|---|
| 105 | printf("Error printing node: %s\n", | 
|---|
| 106 | message ? message : str_error(rc)); | 
|---|
| 107 | goto error; | 
|---|
| 108 | } | 
|---|
| 109 | bithenge_node_dec_ref(node2); | 
|---|
| 110 | node2 = NULL; | 
|---|
| 111 | bithenge_scope_dec_ref(scope); | 
|---|
| 112 | scope = NULL; | 
|---|
| 113 | printf("\n"); | 
|---|
| 114 |  | 
|---|
| 115 | return 0; | 
|---|
| 116 |  | 
|---|
| 117 | error: | 
|---|
| 118 | bithenge_node_dec_ref(node); | 
|---|
| 119 | bithenge_node_dec_ref(node2); | 
|---|
| 120 | bithenge_transform_dec_ref(transform); | 
|---|
| 121 | bithenge_scope_dec_ref(scope); | 
|---|
| 122 | return 1; | 
|---|
| 123 | } | 
|---|
| 124 |  | 
|---|
| 125 | return 0; | 
|---|
| 126 | } | 
|---|
| 127 |  | 
|---|
| 128 | /** @} | 
|---|
| 129 | */ | 
|---|