1 # Copyright (c) 2012 Nicira Networks.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
21 vlog = ovs.vlog.Vlog("test-unixctl")
24 def unixctl_exit(conn, unused_argv, aux):
25 assert aux == "aux_exit"
32 def unixctl_echo(conn, argv, aux):
33 assert aux == "aux_echo"
37 def unixctl_echo_error(conn, argv, aux):
38 assert aux == "aux_echo_error"
39 conn.reply_error(str(argv))
42 def unixctl_block(conn, unused_argv, unused_aux):
47 parser = argparse.ArgumentParser(
48 description="Open vSwitch unixctl test program for Python")
49 parser.add_argument("--unixctl", help="UNIXCTL socket location or 'none'.")
51 ovs.daemon.add_args(parser)
52 ovs.vlog.add_args(parser)
53 args = parser.parse_args()
54 ovs.daemon.handle_args(args)
55 ovs.vlog.handle_args(args)
57 ovs.daemon.daemonize_start()
58 error, server = ovs.unixctl.UnixctlServer.create(args.unixctl)
60 ovs.util.ovs_fatal(error, "could not create unixctl server at %s"
63 ovs.unixctl.command_register("exit", "", 0, 0, unixctl_exit, "aux_exit")
64 ovs.unixctl.command_register("echo", "[arg ...]", 1, 2, unixctl_echo,
66 ovs.unixctl.command_register("echo_error", "[arg ...]", 1, 2,
67 unixctl_echo_error, "aux_echo_error")
68 ovs.unixctl.command_register("block", "", 0, 0, unixctl_block, None)
69 ovs.daemon.daemonize_complete()
71 vlog.info("Entering run loop.")
72 poller = ovs.poller.Poller()
77 poller.immediate_wake()
82 if __name__ == '__main__':
86 # Let system.exit() calls complete normally
89 vlog.exception("traceback")
90 sys.exit(ovs.daemon.RESTART_EXIT_CODE)