blob: 6dfa8385162aa39295f396c336a2df440a306bd6 [file] [log] [blame]
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
""" machienshandler.py """
import tornado.gen
from heron.tools.tracker.src.python import constants
from heron.tools.tracker.src.python.handlers import BaseHandler
class MachinesHandler(BaseHandler):
"""
URL - /machines
Parameters:
- cluster (optional)
- environ (optional)
- topology (optional, repeated
both 'cluster' and 'environ' are required
if topology is present)
The response JSON is a dict with following format:
{
<cluster1>: {
<environ1>: {
<top1>: [machine1, machine2,..],
<top2>: [...],
...
},
<environ2>: {...},
...
},
<cluster2>: {...}
}
"""
# pylint: disable=attribute-defined-outside-init
def initialize(self, tracker):
""" initialize """
self.tracker = tracker
@tornado.gen.coroutine
def get(self):
""" get method """
clusters = self.get_arguments(constants.PARAM_CLUSTER)
environs = self.get_arguments(constants.PARAM_ENVIRON)
topology_names = self.get_arguments(constants.PARAM_TOPOLOGY)
ret = {}
if len(topology_names) > 1:
if not clusters:
message = "Missing argument" + constants.PARAM_CLUSTER
self.write_error_response(message)
return
if not environs:
message = "Missing argument" + constants.PARAM_ENVIRON
self.write_error_response(message)
return
ret = {}
topologies = self.tracker.topologies
for topology in topologies:
cluster = topology.cluster
environ = topology.environ
topology_name = topology.name
if not cluster or not environ:
continue
# This cluster is not asked for.
if clusters and cluster not in clusters:
continue
# This environ is not asked for.
if environs and environ not in environs:
continue
if topology_names and topology_name not in topology_names:
continue
if cluster not in ret:
ret[cluster] = {}
if environ not in ret[cluster]:
ret[cluster][environ] = {}
ret[cluster][environ][topology_name] = topology.get_machines()
self.write_success_response(ret)