jvpp: remove special request<>reply mappings
[vpp.git] / src / vpp-api / java / jvpp / gen / jvppgen / callback_gen.py
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2016 Cisco and/or its affiliates.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 import os
17 import util
18 from string import Template
19
20 callback_suffix = "Callback"
21
22 callback_template = Template("""
23 package $plugin_package.$callback_package;
24
25 /**
26  * <p>Represents callback for plugin's api file message.
27  * <br>It was generated by callback_gen.py based on $inputfile preparsed data:
28  * <pre>
29 $docs
30  * </pre>
31  */
32 public interface $cls_name extends $base_package.$callback_package.$callback_type {
33
34     $callback_method
35
36 }
37 """)
38
39 global_callback_template = Template("""
40 package $plugin_package.$callback_package;
41
42 /**
43  * <p>Global aggregated callback interface.
44  * <br>It was generated by callback_gen.py based on $inputfile
45  * <br>(python representation of api file generated by vppapigen).
46  */
47 public interface JVpp${plugin_name}GlobalCallback extends $base_package.$callback_package.ControlPingCallback, $callbacks {
48 }
49 """)
50
51
52 def generate_callbacks(func_list, base_package, plugin_package, plugin_name, callback_package, dto_package, inputfile):
53     """ Generates callback interfaces """
54     print "Generating Callback interfaces"
55
56     if not os.path.exists(callback_package):
57         os.mkdir(callback_package)
58
59     callbacks = []
60     for func in func_list:
61
62         camel_case_name_with_suffix = util.underscore_to_camelcase_upper(func['name'])
63
64         if util.is_control_ping(camel_case_name_with_suffix):
65             continue
66         if not util.is_reply(camel_case_name_with_suffix) and not util.is_notification(func['name']):
67             continue
68
69         callback_type = "JVppCallback"
70         callbacks.append("{0}.{1}.{2}".format(plugin_package, callback_package, camel_case_name_with_suffix + callback_suffix))
71         callback_path = os.path.join(callback_package, camel_case_name_with_suffix + callback_suffix + ".java")
72         callback_file = open(callback_path, 'w')
73
74         reply_type = "%s.%s.%s" % (plugin_package, dto_package, camel_case_name_with_suffix)
75         method = "void on{0}({1} reply);".format(camel_case_name_with_suffix, reply_type)
76         callback_file.write(
77             callback_template.substitute(inputfile=inputfile,
78                                          docs=util.api_message_to_javadoc(func),
79                                          cls_name=camel_case_name_with_suffix + callback_suffix,
80                                          callback_method=method,
81                                          base_package=base_package,
82                                          plugin_package=plugin_package,
83                                          callback_package=callback_package,
84                                          callback_type=callback_type))
85         callback_file.flush()
86         callback_file.close()
87
88     callback_file = open(os.path.join(callback_package, "JVpp%sGlobalCallback.java" % plugin_name), 'w')
89     callback_file.write(global_callback_template.substitute(inputfile=inputfile,
90                                                             callbacks=", ".join(callbacks),
91                                                             base_package=base_package,
92                                                             plugin_package=plugin_package,
93                                                             plugin_name=plugin_name,
94                                                             callback_package=callback_package))
95     callback_file.flush()
96     callback_file.close()