aboutsummaryrefslogtreecommitdiff
path: root/mpiosh/mpiosh.h
diff options
context:
space:
mode:
authorcrunchy <crunchy>2002-09-12 18:49:34 +0000
committercrunchy <crunchy>2002-09-12 18:49:34 +0000
commit5833e532a1dd6084bc5775f4672886b9b7e7658e (patch)
tree82f71bcd8cb82a369f5ba2d251ffbe850c705541 /mpiosh/mpiosh.h
parentdf9c31d13d161866af5b950061c7470627d99fb0 (diff)
downloadmpiosh-5833e532a1dd6084bc5775f4672886b9b7e7658e.tar.gz
mpiosh-5833e532a1dd6084bc5775f4672886b9b7e7658e.tar.bz2
mpiosh-5833e532a1dd6084bc5775f4672886b9b7e7658e.zip
mpiosh: some internal changes and support for command sequences
Diffstat (limited to 'mpiosh/mpiosh.h')
-rw-r--r--mpiosh/mpiosh.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/mpiosh/mpiosh.h b/mpiosh/mpiosh.h
new file mode 100644
index 0000000..2916cbb
--- /dev/null
+++ b/mpiosh/mpiosh.h
@@ -0,0 +1,71 @@
+/* mpiosh.h
+ *
+ * Author: Andreas Büsching <crunchy@tzi.de>
+ *
+ * $Id: mpiosh.h,v 1.1 2002/09/12 18:49:36 crunchy Exp $
+ *
+ * Copyright (C) 2002 Andreas Büsching <crunchy@tzi.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef _MPIOSH_H_
+#define _MPIOSH_H_
+
+#if !defined TRUE
+# define TRUE 1
+#endif
+
+#if !defined FALSE
+# define FALSE 1
+#endif
+
+typedef void(*cmd_callback)(char *args[]);
+
+typedef struct {
+ mpio_t * dev;
+ mpio_mem_t card;
+ const char * prompt;
+} mpiosh_t;
+
+typedef struct {
+ char * cmd;
+ char * args;
+ char * info;
+ cmd_callback func;
+} mpiosh_cmd_t;
+
+/* readline extensions */
+void mpiosh_readline_init(void);
+char **mpiosh_readline_completion(const char *text, int start, int end);
+char *mpiosh_readline_comp_cmd(const char *text, int state);
+
+/* helper functions */
+void mpiosh_init(void);
+mpiosh_cmd_t *mpiosh_command_find(char *line);
+char **mpiosh_command_split(char *line);
+char **mpiosh_command_get_args(char *line);
+void mpiosh_command_free_args(char **args);
+
+/* global structure for device information */
+extern mpiosh_t mpiosh;
+extern mpiosh_cmd_t commands[];
+
+extern const char *PROMPT_INT;
+extern const char *PROMPT_EXT;
+
+#endif // _MPIOSH_H_
+
+/* end of mpiosh.h */