Changeset 03b2b2c in mainline
- Timestamp:
- 2012-06-24T17:32:30Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d1a8fd
- Parents:
- da0fef6
- Location:
- uspace/app/bithenge
- Files:
-
- 2 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bithenge/Makefile
rda0fef6 r03b2b2c 37 37 file.c \ 38 38 print.c \ 39 script.c \ 39 40 source.c \ 40 41 test.c \ -
uspace/app/bithenge/Makefile.linux
rda0fef6 r03b2b2c 36 36 file.c \ 37 37 print.c \ 38 script.c \ 38 39 source.c \ 39 40 test.c \ -
uspace/app/bithenge/helenos/os.h
rda0fef6 r03b2b2c 32 32 #include <bool.h> 33 33 #include <byteorder.h> 34 #include <errno.h> 34 35 #include <macros.h> 35 36 #include <mem.h> -
uspace/app/bithenge/linux/os.h
rda0fef6 r03b2b2c 85 85 } 86 86 87 static inline char *str_ndup(const char *s, size_t max_len) 88 { 89 return strndup(s, max_len); 90 } 91 87 92 static inline const char *str_error(int e) 88 93 { -
uspace/app/bithenge/test.c
rda0fef6 r03b2b2c 42 42 #include "source.h" 43 43 #include "print.h" 44 #include "script.h" 45 #include "transform.h" 44 46 #include "tree.h" 45 47 46 48 int main(int argc, char *argv[]) 47 49 { 48 if (argc < 2) { 50 int rc; 51 if (argc < 3) { 49 52 // {True: {}, -1351: "\"false\"", "true": False, 0: b"..."} 50 53 const char data[] = "'Twas brillig, and the slithy toves"; … … 66 69 bithenge_node_destroy(node); 67 70 } else { 68 bithenge_node_t *node; 69 int rc = bithenge_node_from_source(&node, argv[1]); 71 bithenge_transform_t *transform; 72 rc = bithenge_parse_script(argv[1], &transform); 73 if (rc != EOK) { 74 printf("Error parsing script: %s\n", str_error(rc)); 75 return 1; 76 } 77 78 bithenge_node_t *node, *node2; 79 int rc = bithenge_node_from_source(&node, argv[2]); 70 80 if (rc != EOK) { 71 81 printf("Error creating node from source: %s\n", str_error(rc)); 72 82 return 1; 73 83 } 74 rc = bithenge_print_node(BITHENGE_PRINT_PYTHON, node); 84 85 rc = bithenge_transform_apply(transform, node, &node2); 86 if (rc != EOK) { 87 printf("Error applying transform: %s\n", str_error(rc)); 88 return 1; 89 } 90 91 bithenge_node_destroy(node); 92 bithenge_transform_dec_ref(transform); 93 94 rc = bithenge_print_node(BITHENGE_PRINT_PYTHON, node2); 75 95 if (rc != EOK) { 76 96 printf("Error printing node: %s\n", str_error(rc)); … … 78 98 } 79 99 printf("\n"); 80 bithenge_node_destroy(node);81 100 } 82 101 -
uspace/app/bithenge/transform.h
rda0fef6 r03b2b2c 38 38 #define BITHENGE_TRANSFORM_H_ 39 39 40 #include "blob.h" 40 41 #include "tree.h" 41 42 … … 104 105 105 106 /** Decrement a transform's reference count. 106 * @param xform The transform to dereference .107 * @param xform The transform to dereference, or NULL. 107 108 * @return EOK on success or an error code from errno.h. */ 108 109 static inline int bithenge_transform_dec_ref(bithenge_transform_t *xform) 109 110 { 110 assert(xform); 111 if (!xform) 112 return EOK; 111 113 assert(xform->ops); 112 114 if (--xform->refs == 0)
Note:
See TracChangeset
for help on using the changeset viewer.