From 948b95a9a08d38e7f74a160c11193f73a90e98c9 Mon Sep 17 00:00:00 2001 From: Marek Gradzki Date: Wed, 20 Jul 2016 14:53:48 +0200 Subject: VPP-123: remove japi (the old Java API) MANUAL_JAVA flag (used only by the japi) was also removed. Change-Id: Ied21521b2410af1c357afb04cbf9e849632ddc5f Signed-off-by: Marek Gradzki --- vppapigen/gram.y | 3 +- vppapigen/lex.c | 79 +----- vppapigen/node.c | 756 +------------------------------------------------------ vppapigen/node.h | 9 - 4 files changed, 10 insertions(+), 837 deletions(-) (limited to 'vppapigen') diff --git a/vppapigen/gram.y b/vppapigen/gram.y index ccdcc8f2..de26af8d 100644 --- a/vppapigen/gram.y +++ b/vppapigen/gram.y @@ -38,7 +38,7 @@ void generate (YYSTYPE); %token NAME RPAR LPAR SEMI LBRACK RBRACK NUMBER PRIMTYPE BARF %token TPACKED DEFINE LCURLY RCURLY STRING UNION %token HELPER_STRING COMMA -%token NOVERSION MANUAL_PRINT MANUAL_ENDIAN MANUAL_JAVA TYPEONLY DONT_TRACE +%token NOVERSION MANUAL_PRINT MANUAL_ENDIAN TYPEONLY DONT_TRACE %% @@ -62,7 +62,6 @@ flist: flist flag {$$ = (YYSTYPE)(unsigned long long) flag: MANUAL_PRINT {$$ = $1;} | MANUAL_ENDIAN {$$ = $1;} - | MANUAL_JAVA {$$ = $1;} | DONT_TRACE {$$ = $1;} | TYPEONLY {$$ = $1;} ; diff --git a/vppapigen/lex.c b/vppapigen/lex.c index f1d49a87..d7d8cbaf 100644 --- a/vppapigen/lex.c +++ b/vppapigen/lex.c @@ -28,8 +28,7 @@ #include "node.h" #include "gram.h" -FILE *ifp, *ofp, *javafp, *jnifp, *pythonfp; -char *java_class = "vppApi"; +FILE *ifp, *ofp, *pythonfp; char *vlib_app_name = "vpp"; int dump_tree; time_t starttime; @@ -258,8 +257,6 @@ int main (int argc, char **argv) { int curarg = 1; char *ofile=0; - char *jofile=0; - char *jnifile=0; char *pythonfile=0; char *show_name=0; @@ -331,40 +328,6 @@ int main (int argc, char **argv) } continue; } - if (!strncmp (argv [curarg], "--java", 4)) { - curarg++; - if (curarg < argc) { - javafp = fopen (argv[curarg], "w"); - if (javafp == NULL) { - fprintf (stderr, "Couldn't open java output file %s\n", - argv[curarg]); - exit (1); - } - jofile = argv[curarg]; - curarg++; - } else { - fprintf(stderr, "Missing filename after --java\n"); - exit(1); - } - continue; - } - if (!strncmp (argv [curarg], "--jni", 4)) { - curarg++; - if (curarg < argc) { - jnifp = fopen (argv[curarg], "w"); - if (jnifp == NULL) { - fprintf (stderr, "Couldn't open jni output file %s\n", - argv[curarg]); - exit (1); - } - jnifile = argv[curarg]; - curarg++; - } else { - fprintf(stderr, "Missing filename after --jni\n"); - exit(1); - } - continue; - } if (!strncmp (argv [curarg], "--python", 8)) { curarg++; if (curarg < argc) { @@ -393,17 +356,6 @@ int main (int argc, char **argv) } continue; } - if (!strncmp (argv [curarg], "--class", 3)) { - curarg++; - if (curarg < argc) { - java_class = argv[curarg]; - curarg++; - } else { - fprintf(stderr, "Missing class name after --class\n"); - exit(1); - } - continue; - } usage(argv[0]); exit (1); @@ -411,12 +363,6 @@ int main (int argc, char **argv) if (ofp == NULL) { ofile = 0; } - if (javafp == NULL) { - jofile = 0; - } - if (jnifp == NULL) { - jnifile = 0; - } if (pythonfp == NULL) { pythonfile = 0; } @@ -437,14 +383,6 @@ int main (int argc, char **argv) printf ("Output written to %s\n", ofile); fclose (ofp); } - if (jofile) { - printf ("Java class defn written to %s\n", jofile); - fclose (javafp); - } - if (jnifile) { - printf ("Java native bindings written to %s\n", jnifile); - fclose (jnifp); - } if (pythonfile) { printf ("Python bindings written to %s\n", pythonfile); fclose (pythonfp); @@ -457,15 +395,6 @@ int main (int argc, char **argv) printf ("Removing %s\n", ofile); unlink (ofile); } - fclose (javafp); - if (jofile) { - printf ("Removing %s\n", jofile); - unlink (jofile); - } - if (jnifile) { - printf ("Removing %s\n", jnifile); - unlink (jnifile); - } if (pythonfile) { printf ("Removing %s\n", pythonfile); unlink (pythonfile); @@ -926,7 +855,6 @@ int yylex (void) case NOVERSION: crc = CRC16 (crc, 274); break; case MANUAL_PRINT: crc = CRC16 (crc, 275); break; case MANUAL_ENDIAN: crc = CRC16 (crc, 276); break; - case MANUAL_JAVA: crc = CRC16 (crc, 277); break; case TYPEONLY: crc = CRC16 (crc, 278); break; case DONT_TRACE: crc = CRC16 (crc, 279); break; @@ -965,7 +893,6 @@ static struct keytab { {"i64", NODE_I64}, {"i8", NODE_I8}, {"manual_endian", NODE_MANUAL_ENDIAN}, - {"manual_java", NODE_MANUAL_JAVA}, {"manual_print", NODE_MANUAL_PRINT}, {"noversion", NODE_NOVERSION}, {"packed", NODE_PACKED}, @@ -1025,10 +952,6 @@ static int name_check (const char *s, YYSTYPE *token_value) *token_value = (YYSTYPE) NODE_FLAG_MANUAL_ENDIAN; return (MANUAL_ENDIAN); - case NODE_MANUAL_JAVA: - *token_value = (YYSTYPE) NODE_FLAG_MANUAL_JAVA; - return (MANUAL_JAVA); - case NODE_TYPEONLY: *token_value = (YYSTYPE) NODE_FLAG_TYPEONLY; return(TYPEONLY); diff --git a/vppapigen/node.c b/vppapigen/node.c index 449540c3..ef812787 100644 --- a/vppapigen/node.c +++ b/vppapigen/node.c @@ -32,10 +32,7 @@ #define YYSTYPE void * FILE *ofp; -FILE *javafp; -FILE *jnifp; FILE *pythonfp; -char *java_class; time_t starttime; char *vlib_app_name; char *input_filename; @@ -53,11 +50,6 @@ static char current_id; static char current_is_complex; static char *current_endianfun; static char *current_type_name; -static int current_java_parameter_number; -static int current_java_emitted_parameter; -static int current_java_parameter_need_comma_space; -void *current_java_methodfun; -void *current_java_jnifun; void indent_me(FILE *ofp) { @@ -99,31 +91,6 @@ char *lowercase (char *s) return(tmpbuf); } -/* - * javah maps foo_bar to foo_1bar for whatever freakin' reason - * So, adjust java names accordingly. - */ -char *java_name_mangle (void * name_arg) -{ - char * name = name_arg; - static u8 * s; - int i; - - vec_reset_length (s); - - s = format (s, "%s%c", name, 0); - - for (i = 0; i < vec_len(s); i++) - if (s[i] == '_') { - vec_delete (s, 1, i); - if (s[i] >= 'a' && s[i] <= 'z') - s[i] -= ('a' - 'A'); - } - vec_add1 (s, 0); - - return ((char *) s); -} - void primtype_recursive_print(node_t *this, i8 *fmt) { fputs((char *)fmt, stdout); @@ -157,11 +124,6 @@ void primtype_recursive_generate(node_t *this, enum passid which, FILE *ofp, current_endianfun = vftp->endian_converter; break; - case JAVA_METHOD_PASS: - vftp = the_vft[this->type]; - current_java_methodfun = vftp->java_method_function; - break; - case PYTHON_PASS: fputs("('", pythonfp); fputs((char *)type_name, pythonfp); @@ -179,163 +141,6 @@ void primtype_recursive_generate(node_t *this, enum passid which, FILE *ofp, } } -static int hidden_from_java(const node_t * deeper) -{ - if (current_java_parameter_number++ < 3) { - if (!strncmp ((char *)(deeper->data[0]), "client_index", 12)) - return 1; - else if (!strncmp ((char *)(deeper->data[0]), "context", 7)) - return 1; - else if (!strncmp ((char *)(deeper->data[0]), "_vl_msg_id", 10)) - return 1; - } - - return 0; -} - -void primtype_java_method (node_t * this, enum passid which, FILE *ofp, - char *java_type_name) -{ - node_t * deeper; - - deeper = this->deeper; - - /* We'll take care of _msg_id, client_index, and context ourselves */ - if (hidden_from_java(deeper)) { - return; - } - - if (deeper->type == NODE_SCALAR) - fprintf (ofp, "%s %s", java_type_name, - java_name_mangle(deeper->data[0])); - else - fprintf (ofp, "%s [] %s", java_type_name, - java_name_mangle(deeper->data[0])); - - current_java_emitted_parameter = 1; -} - -void primtype_java_parameter (node_t * this, enum passid which, FILE *ofp, - char *java_type_name) -{ - node_t * deeper; - - deeper = this->deeper; - - /* We'll take care of _msg_id, client_index, and context ourselves */ - if (hidden_from_java(deeper)) { - return; - } - if (current_java_parameter_need_comma_space) { - current_java_parameter_need_comma_space = 0; - fputs (", ", ofp); - } - - if (deeper->type == NODE_SCALAR) - fprintf (ofp, "%s %s", java_type_name, (char *)(deeper->data[0])); - else - fprintf (ofp, "%sArray %s", java_type_name, (char *)(deeper->data[0])); - - current_java_emitted_parameter = 1; -} - -void primtype_java_setup (node_t * this, enum passid which, FILE *ofp, - char *java_type_name, char *array_element_name) -{ - node_t * deeper; - - deeper = this->deeper; - - /* We'll take care of _msg_id, client_index, and context ourselves */ - if (hidden_from_java(deeper)) { - return; - } - - if (deeper->type == NODE_VECTOR) { - indent_me(ofp); - fprintf (ofp, - "%s * %sP = (*env)->Get%sArrayElements (env, %s, NULL);\n", - java_type_name, (char *)(deeper->data[0]), - array_element_name, (char *)(deeper->data[0])); - } - - current_java_emitted_parameter = 1; -} - -void primtype_java_code (node_t * this, enum passid which, FILE *ofp, - char *java_type_name, char * swapper) -{ - node_t * deeper; - char * s; - - deeper = this->deeper; - - /* We'll take care of _msg_id, client_index, and context ourselves */ - if (hidden_from_java(deeper)) { - return; - } - - indent_me(ofp); - - s = (char *)(deeper->data[0]); - - if (swapper == 0) { - if (deeper->type == NODE_VECTOR) - fprintf (ofp, "memcpy (mp->%s, %sP, sizeof (mp->%s));\n", - s, s, s); - else - fprintf (ofp, "mp->%s = %s;\n", s, s); - } else { - if (deeper->type == NODE_VECTOR) { - fprintf(ofp, "{\n"); - indent += 4; - indent_me(ofp); - fprintf(ofp, "int _i;\n"); - indent_me(ofp); - fprintf(ofp, "for (_i = 0; _i < %lu; _i++) {\n", - (u64)(deeper->data[1])); - indent += 4; - indent_me(ofp); - fprintf(ofp, "mp->%s[_i] = %s(%sP[_i]);\n", - s, swapper, s); - indent -= 4; - indent_me(ofp); - fprintf(ofp, "}\n"); - indent -= 4; - indent_me(ofp); - fprintf(ofp, "}\n"); - } else { - fprintf (ofp, "mp->%s = %s(%s);\n", s, swapper, s); - } - } - - current_java_emitted_parameter = 1; -} - -void primtype_java_teardown (node_t * this, enum passid which, FILE *ofp, - char * array_element_name) -{ - node_t * deeper; - - deeper = this->deeper; - - /* We'll take care of _msg_id, client_index, and context ourselves */ - if (hidden_from_java(deeper)) { - return; - } - - if (deeper->type == NODE_VECTOR) { - indent_me(ofp); - fprintf (ofp, - "(*env)->Release%sArrayElements (env, %s, %sP, 0);\n", - array_element_name, - (char *)(deeper->data[0]), - (char *)(deeper->data[0])); - } - - current_java_emitted_parameter = 1; -} - void node_illegal_print (node_t *this) { fprintf(stderr, "node_illegal_print called\n"); @@ -348,24 +153,10 @@ void node_illegal_generate (node_t *this, enum passid notused, FILE *ofp) exit(0); } -void node_illegal_java_method (node_t *this, enum passid notused, FILE *ofp) -{ - fprintf(stderr, "node_illegal_java_method called\n"); - exit(0); -} - -void node_illegal_java_jni (node_t *this, enum passid notused, FILE *ofp) -{ - fprintf(stderr, "node_illegal_java_jni called\n"); - exit(0); -} - node_vft_t node_illegal_vft = { node_illegal_print, node_illegal_generate, - "illegal", - node_illegal_java_method, - node_illegal_java_jni, + "illegal" }; void node_u8_print (node_t *this) @@ -378,40 +169,10 @@ void node_u8_generate (node_t *this, enum passid which, FILE *ofp) primtype_recursive_generate(this, which, ofp, "u8", "%u", "(unsigned)"); } -void node_u8_java_method (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_method (this, which, ofp, "byte"); -} - -void node_u8_java_parameter (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_parameter (this, which, ofp, "jbyte"); -} - -void node_u8_java_setup (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_setup (this, which, ofp, "jbyte", "Byte"); -} - -void node_u8_java_code (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_code (this, which, ofp, "jbyte", 0 /* swapper */); -} - -void node_u8_java_teardown (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_teardown (this, which, ofp, "Byte"); -} - node_vft_t node_u8_vft = { node_u8_print, node_u8_generate, - "", - node_u8_java_method, - node_u8_java_parameter, - node_u8_java_setup, - node_u8_java_code, - node_u8_java_teardown, + "" }; void node_u16_print (node_t *this) @@ -424,40 +185,10 @@ void node_u16_generate (node_t *this, enum passid which, FILE *ofp) primtype_recursive_generate(this, which, ofp, "u16", "%u", "(unsigned)"); } -void node_u16_java_method (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_method (this, which, ofp, "short"); -} - -void node_u16_java_parameter (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_parameter (this, which, ofp, "jshort"); -} - -void node_u16_java_setup (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_setup (this, which, ofp, "jshort", "Short"); -} - -void node_u16_java_code (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_code (this, which, ofp, "jshort", "clib_host_to_net_u16"); -} - -void node_u16_java_teardown (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_teardown (this, which, ofp, "Short"); -} - node_vft_t node_u16_vft = { node_u16_print, node_u16_generate, - "clib_net_to_host_u16", - node_u16_java_method, - node_u16_java_parameter, - node_u16_java_setup, - node_u16_java_code, - node_u16_java_teardown, + "clib_net_to_host_u16" }; void node_u32_print (node_t *this) @@ -470,40 +201,10 @@ void node_u32_generate (node_t *this, enum passid which, FILE *ofp) primtype_recursive_generate(this, which, ofp, "u32", "%u", "(unsigned)"); } -void node_u32_java_method (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_method (this, which, ofp, "int"); -} - -void node_u32_java_parameter (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_parameter (this, which, ofp, "jint"); -} - -void node_u32_java_setup (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_setup (this, which, ofp, "jint", "Int"); -} - -void node_u32_java_code (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_code (this, which, ofp, "jint", "clib_host_to_net_u32"); -} - -void node_u32_java_teardown (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_teardown (this, which, ofp, "Int"); -} - node_vft_t node_u32_vft = { node_u32_print, node_u32_generate, "clib_net_to_host_u32", - node_u32_java_method, - node_u32_java_parameter, - node_u32_java_setup, - node_u32_java_code, - node_u32_java_teardown, }; void node_u64_print (node_t *this) @@ -517,40 +218,10 @@ void node_u64_generate (node_t *this, enum passid which, FILE *ofp) "(long long)"); } -void node_u64_java_method (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_method (this, which, ofp, "long"); -} - -void node_u64_java_parameter (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_parameter (this, which, ofp, "jlong"); -} - -void node_u64_java_setup (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_setup (this, which, ofp, "jlong", "Long"); -} - -void node_u64_java_code (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_code (this, which, ofp, "jlong", "clib_host_to_net_u64"); -} - -void node_u64_java_teardown (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_teardown (this, which, ofp, "Long"); -} - node_vft_t node_u64_vft = { node_u64_print, node_u64_generate, - "clib_net_to_host_u64", - node_u64_java_method, - node_u64_java_parameter, - node_u64_java_setup, - node_u64_java_code, - node_u64_java_teardown, + "clib_net_to_host_u64" }; void node_i8_print (node_t *this) @@ -566,12 +237,7 @@ void node_i8_generate (node_t *this, enum passid which, FILE *ofp) node_vft_t node_i8_vft = { node_i8_print, node_i8_generate, - "", - node_u8_java_method, - node_u8_java_parameter, - node_u8_java_setup, - node_u8_java_code, - node_u8_java_teardown, + "" }; void node_i16_print (node_t *this) @@ -587,12 +253,7 @@ void node_i16_generate (node_t *this, enum passid which, FILE *ofp) node_vft_t node_i16_vft = { node_i16_print, node_i16_generate, - "clib_net_to_host_u16", - node_u16_java_method, - node_u16_java_parameter, - node_u16_java_setup, - node_u16_java_code, - node_u16_java_teardown, + "clib_net_to_host_u16" }; void node_i32_print (node_t *this) @@ -608,12 +269,7 @@ void node_i32_generate (node_t *this, enum passid which, FILE *ofp) node_vft_t node_i32_vft = { node_i32_print, node_i32_generate, - "clib_net_to_host_u32", - node_u32_java_method, - node_u32_java_parameter, - node_u32_java_setup, - node_u32_java_code, - node_u32_java_teardown, + "clib_net_to_host_u32" }; void node_i64_print (node_t *this) @@ -630,12 +286,7 @@ void node_i64_generate (node_t *this, enum passid which, FILE *ofp) node_vft_t node_i64_vft = { node_i64_print, node_i64_generate, - "clib_net_to_host_u64", - node_u64_java_method, - node_u64_java_parameter, - node_u64_java_setup, - node_u64_java_code, - node_u64_java_teardown, + "clib_net_to_host_u64" }; void node_f64_print (node_t *this) @@ -648,44 +299,11 @@ void node_f64_generate (node_t *this, enum passid which, FILE *ofp) primtype_recursive_generate(this, which, ofp, "f64", "%.2f", "(double)"); } -void node_f64_java_method (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_method (this, which, ofp, "double"); -} - -void node_f64_java_parameter (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_parameter (this, which, ofp, "jdouble"); -} - -void node_f64_java_setup (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_setup (this, which, ofp, "jdouble", "Double"); -} - -void node_f64_java_code (node_t *this, enum passid which, FILE *ofp) -{ - /* - * Current API code doesn't try to endian-swap doubles - * FP formats aren't portable yadda yadda yadda - */ - primtype_java_code (this, which, ofp, "jdouble", 0 /* $$$ */); -} - -void node_f64_java_teardown (node_t *this, enum passid which, FILE *ofp) -{ - primtype_java_teardown (this, which, ofp, "Double"); -} node_vft_t node_f64_vft = { node_f64_print, node_f64_generate, " ", /* FP numbers are sent in host byte order */ - node_f64_java_method, - node_f64_java_parameter, - node_f64_java_setup, - node_f64_java_code, - node_f64_java_teardown, }; @@ -716,18 +334,6 @@ void node_define_print (node_t *this) fprintf(stdout, "};\n"); } -static void emit_java_arg_declaration(node_t *child, FILE *fp) { - current_java_parameter_number = 0; - while (child) { - node_vft_t *vftp = the_vft[child->type]; - current_java_emitted_parameter = 0; - vftp->java_method_function(child, JAVA_METHOD_PASS, fp); - child = child->peer; - if (child && current_java_emitted_parameter) - fputs (", ", fp); - } -} - void node_define_generate (node_t *this, enum passid which, FILE *fp) { node_t *child, *save_child; @@ -757,132 +363,6 @@ void node_define_generate (node_t *this, enum passid which, FILE *fp) } break; - case JAVA_METHOD_PASS: - indent += 4; - indent_me(fp); - - /* Generate private native declaration */ - fprintf (fp, "private static native int %s0(", java_name_mangle(CDATA0)); - emit_java_arg_declaration(this->deeper, fp); - fputs (");\n", fp); - - /* Generate public Java method */ - indent_me(fp); - fprintf (fp, "public final int %s(", java_name_mangle(CDATA0)); - emit_java_arg_declaration(this->deeper, fp); - fputs (") {\n", fp); - - indent += 4; - indent_me(fp); - fputs ("checkConnected();\n", fp); - indent_me(fp); - fprintf (fp, "return %s.%s0(", java_class, java_name_mangle(CDATA0)); - - child = this->deeper; - current_java_parameter_number = 0; - while (child && hidden_from_java(child->deeper)) { - child = child->peer; - } - while (child) { - fputs(java_name_mangle((char *)(child->deeper->data[0])), fp); - child = child->peer; - if (child) - fputs (", ", fp); - } - - fputs (");\n", fp); - indent -= 4; - indent_me(fp); - fputs ("}\n\n", fp); - indent -= 4; - break; - - case JAVA_JNI_PASS: - /* Generate function prototype */ - fprintf (fp, "JNIEXPORT jint JNICALL Java_org_openvpp_vppjapi_%s_%s0\n", - java_class, java_name_mangle(CDATA0)); - - fprintf (fp, "(JNIEnv * env, jclass clazz"); - current_java_parameter_need_comma_space = 1; - child = this->deeper; - save_child = child; - while (child) { - node_vft_t *vftp = the_vft[child->type]; - current_java_emitted_parameter = 0; - vftp->java_jni_parameter(child, which, fp); - child = child->peer; - if (child && current_java_emitted_parameter) - fputs (", ", fp); - } - fprintf (fp, ")\n{\n"); - indent += 4; - - /* define the api message pointer */ - indent_me(fp); - fprintf (fp, "vppjni_main_t *jm = &vppjni_main;\n"); - indent_me(fp); - fprintf (fp, "vl_api_%s_t * mp;\n", current_def_name); - indent_me(fp); - fprintf (fp, "u32 my_context_id;\n"); - indent_me(fp); - fprintf (fp, "int rv;\n"); - - indent_me(fp); - fprintf (fp, "rv = vppjni_sanity_check (jm);\n"); - indent_me(fp); - fprintf (fp, "if (rv) return rv;\n"); - - indent_me(fp); - fprintf (fp, "my_context_id = vppjni_get_context_id (jm);\n"); - - /* Generate array setups, if any */ - child = save_child; - while (child) { - node_vft_t *vftp = the_vft[child->type]; - current_java_parameter_number = 0; - current_java_emitted_parameter = 0; - vftp->java_jni_setup(child, which, fp); - child = child->peer; - } - - /* Setup the API message */ - indent_me(fp); - fprintf (fp, "M(%s, %s);\n", uppercase(current_def_name), - current_def_name); - indent_me(fp); - fprintf (fp, "mp->context = clib_host_to_net_u32 (my_context_id);\n"); - /* $$$ Set up context hash table or some such... */ - - /* Generate code */ - child = save_child; - while (child) { - node_vft_t *vftp = the_vft[child->type]; - current_java_parameter_number = 0; - current_java_emitted_parameter = 0; - vftp->java_jni_code(child, which, fp); - child = child->peer; - } - - /* Generate array teardowns */ - child = save_child; - while (child) { - node_vft_t *vftp = the_vft[child->type]; - current_java_parameter_number = 0; - current_java_emitted_parameter = 0; - vftp->java_jni_teardown(child, which, fp); - child = child->peer; - } - - /* Send the message, return context_id */ - indent_me (fp); - fprintf (fp, "S;\n"); - indent_me (fp); - fprintf (fp, "return my_context_id;\n"); - - indent -= 4; - fprintf (fp, "}\n\n"); - break; - case PYTHON_PASS: fprintf(fp, "('%s',\n", CDATA0); child = this->deeper; @@ -1834,214 +1314,6 @@ void add_msg_ids(YYSTYPE a1) } } -void generate_java_top_boilerplate(FILE *fp) - -{ - char *datestring = ctime(&starttime); - fixed_name = fixup_input_filename(); - - datestring[24] = 0; - - fprintf (fp, "/*\n"); - fprintf (fp, " * VLIB API java binding %s\n", datestring); - fprintf (fp, " * Input file: %s\n", input_filename); - fprintf (fp, " * Automatically generated: please edit the input file "); - fprintf (fp, "NOT this file!\n"); - fprintf (fp, " */\n\n"); - - fprintf (fp, "package org.openvpp.vppjapi;\n\n"); - fprintf (fp, "import java.io.IOException;\n\n"); - fprintf (fp, "public class %s extends vppConn {\n", - java_class); - fprintf (fp, " public %s(String clientName) throws IOException {\n", java_class); - fprintf (fp, " super(clientName);\n"); - fprintf (fp, " }\n\n"); -} - -void generate_java_bottom_boilerplate(FILE *fp) -{ - fprintf (fp, "}\n"); -} - - -void generate_java_class_definition (YYSTYPE a1, FILE *fp) -{ - node_t *np = (node_t *)a1; - node_vft_t *vftp; - - fprintf(fp, "/****** API methods *****/\n\n"); - - /* Walk the top-level node-list */ - while (np) { - if (np->type == NODE_DEFINE) { - if (!(np->flags & (NODE_FLAG_MANUAL_JAVA | NODE_FLAG_TYPEONLY))) { - /* Suppress messages named "xyz_reply" */ - char * cp = (char *) np->data[0]; - while (*cp) - cp++; - cp -= 6; - if (strncmp (cp, "_reply", 6)) { - current_java_parameter_number = 0; - vftp = the_vft[np->type]; - vftp->generate(np, JAVA_METHOD_PASS, fp); - } - } - } - np = np->peer; - } - - fprintf(fp, "\n/****** end of API methods *****/\n"); -} - -void generate_jni_reply_handler_list (YYSTYPE a1, FILE *fp) -{ - node_t *np = (node_t *)a1; - node_vft_t *vftp; - - fprintf (fp, "#define foreach_api_reply_handler \\\n"); - - /* Walk the top-level node-list */ - while (np) { - if (np->type == NODE_DEFINE) { - if (!(np->flags & (NODE_FLAG_MANUAL_JAVA | NODE_FLAG_TYPEONLY))) { - /* emit messages named "xyz_reply" */ - char * cp = (char *) np->data[0]; - while (*cp) - cp++; - cp -= 6; - if (!strncmp (cp, "_reply", 6)) { - fprintf (fp, "_(%s, %s) \\\n", - uppercase(np->data[0]), (char *)(np->data[0])); - } - } - } - np = np->peer; - } - - fprintf (fp, "\n\n"); -} - -char * m_macro_boilerplate = -"#define M(T,t) \\\n" -"do { \\\n" -" api_result_ready = 0; \\\n" -" mp = vl_msg_api_alloc(sizeof(*mp)); \\\n" -" memset (mp, 0, sizeof (*mp)); \\\n" -" mp->_vl_msg_id = ntohs (VL_API_##T); \\\n" -" mp->client_index = api_main.my_client_index; \\\n" -"} while(0);\n\n" -"#define M2(T,t,n) \\\n" -"do { \\\n" -" api_result_ready = 0; \\\n" -" mp = vl_msg_api_alloc(sizeof(*mp)+(n)); \\\n" -" memset (mp, 0, sizeof (*mp)); \\\n" -" mp->_vl_msg_id = ntohs (VL_API_##T); \\\n" -" mp->client_index = api_main.my_client_index; \\\n" -"} while(0);\n\n"; - -char * s_macro_boilerplate = -"#define S (vl_msg_api_send_shmem (api_main.shmem_hdr->vl_input_queue, \\\n" -"(u8 *)&mp));\n\n"; - -char * w_macro_boilerplate = -"#define W \\\n" -"do { \\\n" -" timeout = clib_time_now (&clib_time) + 1.0; \\\n" -" \\\n" -" while (clib_time_now (&clib_time) < timeout) { \\\n" -" if (api_result_ready == 1) { \\\n" -" return ((jint) api_result); \\\n" -" } \\\n" -" } \\\n" -" return -99; \\\n" -"} while(0);\n\n"; - -void generate_jni_top_boilerplate(FILE *fp) - -{ - char *datestring = ctime(&starttime); - fixed_name = fixup_input_filename(); - - datestring[24] = 0; - - fprintf (fp, "/*\n"); - fprintf (fp, " * VLIB Java native code %s\n", datestring); - fprintf (fp, " * Input file: %s\n", input_filename); - fprintf (fp, " * Automatically generated: please edit the input file "); - fprintf (fp, "NOT this file!\n"); - fprintf (fp, " */\n\n"); - - fprintf (fp, "#include \n"); - - fprintf (fp, - "#define vl_api_version(n,v) static u32 %s_api_version %s = v;\n", - vlib_app_name, "__attribute__((unused))"); - fprintf (fp, "#include \n", vlib_app_name); - fprintf (fp, "#undef vl_api_version\n\n"); - - fprintf (fp, "#include \n"); - fprintf (fp, "#include \n\n", java_class); - - fprintf (fp, "#include \n", vlib_app_name); - fprintf (fp, "#define vl_typedefs /* define message structures */\n"); - fprintf (fp, "#include \n", vlib_app_name); - fprintf (fp, "#undef vl_typedefs\n\n"); - - fprintf (fp, "#define vl_endianfun \n"); - fprintf (fp, "#include \n", vlib_app_name); - fprintf (fp, "#undef vl_endianfun\n\n"); - - fprintf (fp, "#define vl_print(handle, ...)\n"); - fprintf (fp, "#define vl_printfun\n"); - fprintf (fp, "#include \n", vlib_app_name); - fprintf (fp, "#undef vl_printfun\n\n"); -} - -void generate_jni_code (YYSTYPE a1, FILE *fp) -{ - node_t *np = (node_t *)a1; - node_vft_t *vftp; - - /* Walk the top-level node-list */ - while (np) { - if (np->type == NODE_DEFINE) { - if (!(np->flags & (NODE_FLAG_MANUAL_JAVA | NODE_FLAG_TYPEONLY))) { - /* Suppress messages named "xyz_reply" */ - char * cp = (char *) np->data[0]; - while (*cp) - cp++; - cp -= 6; - if (strncmp (cp, "_reply", 6)) { - current_def_name = np->data[0]; - current_java_parameter_number = 0; - vftp = the_vft[np->type]; - vftp->generate(np, JAVA_JNI_PASS, fp); - } - } - } - np = np->peer; - } -} - -char *hookup_boilerplate = -"void vl_msg_reply_handler_hookup (void)\n" -"{\n" -"#define _(N,n) \\\n" -" vl_msg_api_set_handlers (VL_API_##N, #n, \\\n" -" vl_api_generic_reply_handler, \\\n" -" vl_noop_handler, \\\n" -" vl_api_##n##_t_endian, \\\n" -" vl_api_##n##_t_print, \\\n" -" sizeof(vl_api_##n##_t), 1); \n" -" foreach_api_reply_handler;\n" -"#undef _\n\n" -"}\n\n"; - -void generate_jni_bottom_boilerplate(FILE *fp) -{ - fputs (hookup_boilerplate, fp); -} - void generate_python (YYSTYPE a1, FILE *fp) { node_t *np = (node_t *)a1; @@ -2079,18 +1351,6 @@ void generate(YYSTYPE a1) generate_bottom_boilerplate(ofp); } - - if (javafp) { - generate_java_top_boilerplate(javafp); - generate_java_class_definition(a1, javafp); - generate_java_bottom_boilerplate(javafp); - } - if (jnifp) { - generate_jni_top_boilerplate(jnifp); - generate_jni_reply_handler_list (a1, jnifp); - generate_jni_code(a1, jnifp); - generate_jni_bottom_boilerplate(jnifp); - } if (pythonfp) { generate_python(a1, pythonfp); } diff --git a/vppapigen/node.h b/vppapigen/node.h index fc331507..f80985e1 100644 --- a/vppapigen/node.h +++ b/vppapigen/node.h @@ -52,7 +52,6 @@ enum node_subclass { /* WARNING: indices must match the vft... */ NODE_TYPEONLY, NODE_MANUAL_PRINT, NODE_MANUAL_ENDIAN, - NODE_MANUAL_JAVA, NODE_DONT_TRACE, }; @@ -61,8 +60,6 @@ enum passid { UNION_DEF_PASS, ENDIANFUN_PASS, PRINTFUN_PASS, - JAVA_METHOD_PASS, - JAVA_JNI_PASS, PYTHON_PASS, }; @@ -83,7 +80,6 @@ typedef struct node_ { #define NODE_FLAG_MANUAL_PRINT (1<<0) #define NODE_FLAG_MANUAL_ENDIAN (1<<1) -#define NODE_FLAG_MANUAL_JAVA (1<<2) #define NODE_FLAG_TYPEONLY (1<<3) #define NODE_FLAG_DONT_TRACE (1<<4) @@ -91,11 +87,6 @@ typedef struct node_vft_ { void (*print)(struct node_ *); void (*generate)(struct node_ *, enum passid id, FILE *ofp); char *endian_converter; - void (*java_method_function)(struct node_ *, enum passid id, FILE *ofp); - void (*java_jni_parameter)(struct node_ *, enum passid id, FILE *ofp); - void (*java_jni_setup)(struct node_ *, enum passid id, FILE *ofp); - void (*java_jni_code)(struct node_ *, enum passid id, FILE *ofp); - void (*java_jni_teardown)(struct node_ *, enum passid id, FILE *ofp); } node_vft_t; #endif /* _node_h */ -- cgit 1.2.3-korg