Source code for vespa.ho

# -*- coding: utf-8 -*-
#
# Module name: ho.py
# Version:     1.0
# Created:     29/04/2014 by Aurélien Wailly <aurelien.wailly@orange.com>
#
# Copyright (C) 2010-2014 Orange
#
# This file is part of VESPA.
#
# VESPA is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation version 2.1.
#
# VESPA is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with VESPA.  If not, see <http://www.gnu.org/licenses/>.

"""
Horizontal orchestrator
"""
import socket
from log_pipe import *
from threading import Thread
from node import *


[docs]class HO(Node): def __init__(self, name, host, port, master, run=True): super(HO, self,).__init__(name, host, port, master, run)
[docs] def findAgent(self, name): for agent_name, host, port in self.agents: if agent_name == name: return (agent_name, host, port) raise Exception("Agent %s not present in HO %s." % (name, self.name))