summaryrefslogtreecommitdiffstats
path: root/dimension/main.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2009-10-26 20:26:29 -0400
committerTavian Barnes <tavianator@gmail.com>2009-10-26 20:26:29 -0400
commit43ab94e9a2f18b0e40b441fedde5b4ce88046539 (patch)
tree42e0d4d94e95e605af38f5e80e5c1f1606b7704d /dimension/main.c
parentbc16db8ce1e990dbfadcf6c08f68bd4cb2c445a5 (diff)
downloaddimension-43ab94e9a2f18b0e40b441fedde5b4ce88046539.tar.xz
Begin tokenizer.
Diffstat (limited to 'dimension/main.c')
-rw-r--r--dimension/main.c48
1 files changed, 44 insertions, 4 deletions
diff --git a/dimension/main.c b/dimension/main.c
index 8f5aa9f..2ccadbf 100644
--- a/dimension/main.c
+++ b/dimension/main.c
@@ -17,16 +17,22 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/
+#include "tokenize.h"
#include "../libdimension/dimension.h"
#include <stdlib.h>
#include <getopt.h>
-const char *output = NULL, *input = NULL;
-int tokenize = 0;
+static const char *output = NULL, *input = NULL;
+static int tokenize = 0;
int
main(int argc, char **argv) {
- /* Parse the command-line options */
+ dmnsn_array *tokens;
+ FILE *input_file, *output_file;
+
+ /*
+ * Parse the command-line options
+ */
static struct option long_options[] = {
{ "output", required_argument, NULL, 'o' },
@@ -78,12 +84,46 @@ main(int argc, char **argv) {
dmnsn_error(DMNSN_SEVERITY_HIGH, "Invalid extranious command line options.");
}
- if (!output) {
+ if (!output && !tokenize) {
dmnsn_error(DMNSN_SEVERITY_HIGH, "No output file specified.");
}
if (!input) {
dmnsn_error(DMNSN_SEVERITY_HIGH, "No input file specified.");
}
+ /* Open the input file */
+ input_file = fopen(input, "r");
+ if (!input_file) {
+ dmnsn_error(DMNSN_SEVERITY_HIGH, "Couldn't open input file.");
+ }
+
+ /* Tokenize the input file */
+ tokens = dmnsn_tokenize(input_file);
+ if (!tokens) {
+ dmnsn_error(DMNSN_SEVERITY_HIGH, "Error tokenizing input file.");
+ }
+
+ /* Debugging option - output the list of tokens as an S-expression */
+ if (tokenize) {
+ dmnsn_print_token_sexpr(stdout, tokens);
+ dmnsn_delete_tokens(tokens);
+ fclose(input_file);
+ return EXIT_SUCCESS;
+ }
+
+ /*
+ * Now we render the scene
+ */
+
+ /* Open the output file */
+ output_file = fopen(output, "wb");
+ if (!output_file) {
+ dmnsn_error(DMNSN_SEVERITY_HIGH, "Couldn't open output file.");
+ }
+
+ /* Clean up and exit! */
+ dmnsn_delete_tokens(tokens);
+ fclose(output_file);
+ fclose(input_file);
return EXIT_SUCCESS;
}