Source code for volttron.platform.agent.base_market_agent.registration_manager

# -*- coding: utf-8 -*- {{{
# vim: set fenc=utf-8 ft=python sw=4 ts=4 sts=4 et:
#
# Copyright 2019, Battelle Memorial Institute.
#
# Licensed 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.
#
# This material was prepared as an account of work sponsored by an agency of
# the United States Government. Neither the United States Government nor the
# United States Department of Energy, nor Battelle, nor any of their
# employees, nor any jurisdiction or organization that has cooperated in the
# development of these materials, makes any warranty, express or
# implied, or assumes any legal liability or responsibility for the accuracy,
# completeness, or usefulness or any information, apparatus, product,
# software, or process disclosed, or represents that its use would not infringe
# privately owned rights. Reference herein to any specific commercial product,
# process, or service by trade name, trademark, manufacturer, or otherwise
# does not necessarily constitute or imply its endorsement, recommendation, or
# favoring by the United States Government or any agency thereof, or
# Battelle Memorial Institute. The views and opinions of authors expressed
# herein do not necessarily state or reflect those of the
# United States Government or any agency thereof.
#
# PACIFIC NORTHWEST NATIONAL LABORATORY operated by
# BATTELLE for the UNITED STATES DEPARTMENT OF ENERGY
# under Contract DE-AC05-76RL01830
# }}}

import logging

from volttron.platform.agent import utils
from volttron.platform.agent.base_market_agent.error_codes import NOT_FORMED
from volttron.platform.agent.base_market_agent.market_registration import MarketRegistration

_log = logging.getLogger(__name__)
utils.setup_logging()

[docs]class RegistrationManager(object): """ The ReservationManager manages a list of MarketReservations for the MarketAgents. This class exists to hide the features of the underlying collection that are not relevant to managing market reservations. """ def __init__(self, rpc_proxy): """ The initalization needs the agent to grant access to the RPC calls needed to communicate with the marketService. :param rpc_proxy: The MarketAgents that owns this object. """ self.registrations = [] self.rpc_proxy = rpc_proxy
[docs] def make_registration(self, market_name, buyer_seller, reservation_callback, offer_callback, aggregate_callback, price_callback, error_callback): registration = MarketRegistration(market_name, buyer_seller, reservation_callback, offer_callback, aggregate_callback, price_callback, error_callback) self.registrations.append(registration)
[docs] def make_offer(self, market_name, buyer_seller, curve): result = False error_message = "Market: {} {} was not found in the local list of markets".format(market_name, buyer_seller) for registration in self.registrations: if (registration.market_name == market_name): result, error_message = registration.make_offer(buyer_seller, curve, self.rpc_proxy) return result, error_message
[docs] def request_reservations(self, timestamp): for registration in self.registrations: registration.request_reservations(timestamp, self.rpc_proxy)
[docs] def request_offers(self, timestamp, unformed_markets): for registration in self.registrations: if (registration.market_name not in unformed_markets): registration.request_offers(timestamp) else: error_message = 'The market {} has not received a buy and a sell reservation.'.format(registration.market_name) registration.report_error(timestamp, NOT_FORMED, error_message, {})
[docs] def report_clear_price(self, timestamp, market_name, price, quantity): for registration in self.registrations: if (registration.market_name == market_name): registration.report_clear_price(timestamp, price, quantity)
[docs] def report_aggregate(self, timestamp, market_name, buyer_seller, aggregate_curve): for registration in self.registrations: if (registration.market_name == market_name): registration.report_aggregate(timestamp, buyer_seller, aggregate_curve)
[docs] def report_error(self, timestamp, market_name, error_code, error_message, aux): for registration in self.registrations: if (registration.market_name == market_name): registration.report_error(timestamp, error_code, error_message, aux)