Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Copyright 2016 the original author or authors. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | |
| 18 | """A REST protocol gateway to self-describing GRPC end-points""" |
| 19 | |
| 20 | import argparse |
| 21 | import os |
| 22 | import sys |
Zsolt Haraszti | 034db37 | 2016-10-03 22:26:41 -0700 | [diff] [blame] | 23 | |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 24 | import yaml |
| 25 | from twisted.internet.defer import inlineCallbacks |
| 26 | |
| 27 | base_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |
| 28 | sys.path.append(base_dir) |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 29 | sys.path.append(os.path.join(base_dir, '/chameleon/protos/third_party')) |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 30 | |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 31 | from chameleon.grpc_client.grpc_client import GrpcClient |
Zsolt Haraszti | 034db37 | 2016-10-03 22:26:41 -0700 | [diff] [blame] | 32 | from chameleon.web_server.web_server import WebServer |
Zsolt Haraszti | 023ea7c | 2016-10-16 19:30:34 -0700 | [diff] [blame] | 33 | from common.utils.dockerhelpers import get_my_containers_name |
| 34 | from common.utils.nethelpers import get_my_primary_local_ipv4 |
Zsolt Haraszti | d70cd4d | 2016-11-03 23:23:36 -0700 | [diff] [blame] | 35 | from common.structlog_setup import setup_logging |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 36 | |
| 37 | |
| 38 | defs = dict( |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 39 | config=os.environ.get('CONFIG', './chameleon.yml'), |
Zsolt Haraszti | 553826c | 2016-09-27 10:24:27 -0700 | [diff] [blame] | 40 | consul=os.environ.get('CONSUL', 'localhost:8500'), |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 41 | external_host_address=os.environ.get('EXTERNAL_HOST_ADDRESS', |
| 42 | get_my_primary_local_ipv4()), |
Zsolt Haraszti | 553826c | 2016-09-27 10:24:27 -0700 | [diff] [blame] | 43 | grpc_endpoint=os.environ.get('GRPC_ENDPOINT', 'localhost:50055'), |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 44 | fluentd=os.environ.get('FLUENTD', None), |
Zsolt Haraszti | 553826c | 2016-09-27 10:24:27 -0700 | [diff] [blame] | 45 | instance_id=os.environ.get('INSTANCE_ID', os.environ.get('HOSTNAME', '1')), |
| 46 | internal_host_address=os.environ.get('INTERNAL_HOST_ADDRESS', |
| 47 | get_my_primary_local_ipv4()), |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 48 | rest_port=os.environ.get('REST_PORT', 8881), |
Zsolt Haraszti | 034db37 | 2016-10-03 22:26:41 -0700 | [diff] [blame] | 49 | work_dir=os.environ.get('WORK_DIR', '/tmp/chameleon') |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 50 | ) |
| 51 | |
| 52 | |
| 53 | def parse_args(): |
| 54 | |
| 55 | parser = argparse.ArgumentParser() |
| 56 | |
| 57 | _help = ('Path to chameleon.yml config file (default: %s). ' |
| 58 | 'If relative, it is relative to main.py of chameleon.' |
| 59 | % defs['config']) |
| 60 | parser.add_argument('-c', '--config', |
| 61 | dest='config', |
| 62 | action='store', |
| 63 | default=defs['config'], |
| 64 | help=_help) |
| 65 | |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 66 | _help = '<hostname>:<port> to consul agent (default: %s)' % defs['consul'] |
| 67 | parser.add_argument( |
| 68 | '-C', '--consul', dest='consul', action='store', |
| 69 | default=defs['consul'], |
| 70 | help=_help) |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 71 | |
| 72 | _help = ('<hostname> or <ip> at which Chameleon is reachable from outside ' |
| 73 | 'the cluster (default: %s)' % defs['external_host_address']) |
| 74 | parser.add_argument('-E', '--external-host-address', |
| 75 | dest='external_host_address', |
| 76 | action='store', |
| 77 | default=defs['external_host_address'], |
| 78 | help=_help) |
| 79 | |
| 80 | _help = ('<hostname>:<port> to fluentd server (default: %s). (If not ' |
| 81 | 'specified (None), the address from the config file is used' |
| 82 | % defs['fluentd']) |
| 83 | parser.add_argument('-F', '--fluentd', |
| 84 | dest='fluentd', |
| 85 | action='store', |
| 86 | default=defs['fluentd'], |
| 87 | help=_help) |
| 88 | |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 89 | _help = ('gRPC end-point to connect to. It can either be a direct' |
| 90 | 'definition in the form of <hostname>:<port>, or it can be an' |
| 91 | 'indirect definition in the form of @<service-name> where' |
| 92 | '<service-name> is the name of the grpc service as registered' |
| 93 | 'in consul (example: @voltha-grpc). (default: %s' |
| 94 | % defs['grpc_endpoint']) |
| 95 | parser.add_argument('-G', '--grpc-endpoint', |
| 96 | dest='grpc_endpoint', |
| 97 | action='store', |
| 98 | default=defs['grpc_endpoint'], |
| 99 | help=_help) |
| 100 | |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 101 | _help = ('<hostname> or <ip> at which Chameleon is reachable from inside' |
| 102 | 'the cluster (default: %s)' % defs['internal_host_address']) |
| 103 | parser.add_argument('-H', '--internal-host-address', |
| 104 | dest='internal_host_address', |
| 105 | action='store', |
| 106 | default=defs['internal_host_address'], |
| 107 | help=_help) |
| 108 | |
| 109 | _help = ('unique string id of this Chameleon instance (default: %s)' |
| 110 | % defs['instance_id']) |
| 111 | parser.add_argument('-i', '--instance-id', |
| 112 | dest='instance_id', |
| 113 | action='store', |
| 114 | default=defs['instance_id'], |
| 115 | help=_help) |
| 116 | |
| 117 | _help = 'omit startup banner log lines' |
| 118 | parser.add_argument('-n', '--no-banner', |
| 119 | dest='no_banner', |
| 120 | action='store_true', |
| 121 | default=False, |
| 122 | help=_help) |
| 123 | |
| 124 | _help = ('port number for the rest service (default: %d)' |
| 125 | % defs['rest_port']) |
| 126 | parser.add_argument('-R', '--rest-port', |
| 127 | dest='rest_port', |
| 128 | action='store', |
| 129 | type=int, |
| 130 | default=defs['rest_port'], |
| 131 | help=_help) |
| 132 | |
| 133 | _help = "suppress debug and info logs" |
| 134 | parser.add_argument('-q', '--quiet', |
| 135 | dest='quiet', |
| 136 | action='count', |
| 137 | help=_help) |
| 138 | |
| 139 | _help = 'enable verbose logging' |
| 140 | parser.add_argument('-v', '--verbose', |
| 141 | dest='verbose', |
| 142 | action='count', |
| 143 | help=_help) |
| 144 | |
Zsolt Haraszti | 034db37 | 2016-10-03 22:26:41 -0700 | [diff] [blame] | 145 | _help = ('work dir to compile and assemble generated files (default=%s)' |
| 146 | % defs['work_dir']) |
| 147 | parser.add_argument('-w', '--work-dir', |
| 148 | dest='work_dir', |
| 149 | action='store', |
| 150 | default=defs['work_dir'], |
| 151 | help=_help) |
| 152 | |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 153 | _help = ('use docker container name as Chameleon instance id' |
| 154 | ' (overrides -i/--instance-id option)') |
| 155 | parser.add_argument('--instance-id-is-container-name', |
| 156 | dest='instance_id_is_container_name', |
| 157 | action='store_true', |
| 158 | default=False, |
| 159 | help=_help) |
| 160 | |
| 161 | args = parser.parse_args() |
| 162 | |
| 163 | # post-processing |
| 164 | |
| 165 | if args.instance_id_is_container_name: |
| 166 | args.instance_id = get_my_containers_name() |
| 167 | |
| 168 | return args |
| 169 | |
| 170 | |
| 171 | def load_config(args): |
| 172 | path = args.config |
| 173 | if path.startswith('.'): |
| 174 | dir = os.path.dirname(os.path.abspath(__file__)) |
| 175 | path = os.path.join(dir, path) |
| 176 | path = os.path.abspath(path) |
| 177 | with open(path) as fd: |
| 178 | config = yaml.load(fd) |
| 179 | return config |
| 180 | |
| 181 | banner = r''' |
| 182 | ____ _ _ |
| 183 | / ___| | |__ __ _ _ __ ___ ___ | | ___ ___ _ __ |
| 184 | | | | '_ \ / _` | | '_ ` _ \ / _ \ | | / _ \ / _ \ | '_ \ |
| 185 | | |___ | | | | | (_| | | | | | | | | __/ | | | __/ | (_) | | | | | |
| 186 | \____| |_| |_| \__,_| |_| |_| |_| \___| |_| \___| \___/ |_| |_| |
| 187 | |
| 188 | ''' |
| 189 | def print_banner(log): |
| 190 | for line in banner.strip('\n').splitlines(): |
| 191 | log.info(line) |
| 192 | log.info('(to stop: press Ctrl-C)') |
| 193 | |
| 194 | |
| 195 | class Main(object): |
| 196 | |
| 197 | def __init__(self): |
| 198 | |
| 199 | self.args = args = parse_args() |
| 200 | self.config = load_config(args) |
| 201 | |
| 202 | verbosity_adjust = (args.verbose or 0) - (args.quiet or 0) |
| 203 | self.log = setup_logging(self.config.get('logging', {}), |
| 204 | args.instance_id, |
| 205 | verbosity_adjust=verbosity_adjust, |
| 206 | fluentd=args.fluentd) |
| 207 | |
| 208 | # components |
| 209 | self.rest_server = None |
| 210 | self.grpc_client = None |
| 211 | |
| 212 | if not args.no_banner: |
| 213 | print_banner(self.log) |
| 214 | |
| 215 | self.startup_components() |
| 216 | |
| 217 | def start(self): |
| 218 | self.start_reactor() # will not return except Keyboard interrupt |
| 219 | |
Zsolt Haraszti | 034db37 | 2016-10-03 22:26:41 -0700 | [diff] [blame] | 220 | @inlineCallbacks |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 221 | def startup_components(self): |
| 222 | self.log.info('starting-internal-components') |
Zsolt Haraszti | 034db37 | 2016-10-03 22:26:41 -0700 | [diff] [blame] | 223 | args = self.args |
| 224 | self.grpc_client = yield \ |
Zsolt Haraszti | d4226ed | 2016-10-05 17:49:27 -0700 | [diff] [blame] | 225 | GrpcClient(args.consul, args.work_dir, args.grpc_endpoint) |
Zsolt Haraszti | 034db37 | 2016-10-03 22:26:41 -0700 | [diff] [blame] | 226 | self.web_server = yield \ |
Zsolt Haraszti | 2bdb6b3 | 2016-11-03 16:56:17 -0700 | [diff] [blame] | 227 | WebServer(args.rest_port, args.work_dir, self.grpc_client).start() |
| 228 | self.grpc_client.set_reconnect_callback( |
| 229 | self.web_server.reload_generated_routes).start() |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 230 | self.log.info('started-internal-services') |
| 231 | |
| 232 | @inlineCallbacks |
| 233 | def shutdown_components(self): |
| 234 | """Execute before the reactor is shut down""" |
| 235 | self.log.info('exiting-on-keyboard-interrupt') |
| 236 | if self.rest_server is not None: |
Zsolt Haraszti | 2bdb6b3 | 2016-11-03 16:56:17 -0700 | [diff] [blame] | 237 | yield self.rest_server.stop() |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 238 | if self.grpc_client is not None: |
Zsolt Haraszti | 2bdb6b3 | 2016-11-03 16:56:17 -0700 | [diff] [blame] | 239 | yield self.grpc_client.stop() |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 240 | |
| 241 | def start_reactor(self): |
| 242 | from twisted.internet import reactor |
| 243 | reactor.callWhenRunning( |
| 244 | lambda: self.log.info('twisted-reactor-started')) |
| 245 | reactor.addSystemEventTrigger('before', 'shutdown', |
| 246 | self.shutdown_components) |
| 247 | reactor.run() |
| 248 | |
| 249 | |
| 250 | if __name__ == '__main__': |
| 251 | Main().start() |