Skip to content
gauge.py 3.35 KiB
Newer Older
# -*- coding: utf-8 -*-

Romain Bignon's avatar
Romain Bignon committed
# Copyright(C) 2010-2012  Romain Bignon, Florent Fourcot
Romain Bignon's avatar
Romain Bignon committed
# This file is part of weboob.
Romain Bignon's avatar
Romain Bignon committed
# weboob is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Romain Bignon's avatar
Romain Bignon committed
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# weboob is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Romain Bignon's avatar
Romain Bignon committed
# 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
Romain Bignon's avatar
Romain Bignon committed
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
from .base import Capability, BaseObject, StringField, DecimalField, Field, UserError, empty
from .date import DateField
__all__ = ['Gauge', 'GaugeSensor', 'GaugeMeasure', 'CapGauge', 'SensorNotFound']
Florent's avatar
Florent committed


class SensorNotFound(UserError):
    """
    Not found a sensor
    """
class Gauge(BaseObject):
    name =       StringField('Name of gauge')
    city =       StringField('City of the gauge')
    object =     StringField('What is evaluate')  # For example, name of a river
    sensors =    Field('List of sensors on the gauge', list)

class GaugeMeasure(BaseObject):
    Measure of a gauge sensor.
    level =     DecimalField('Level of measure')
    date =      DateField('Date of measure')
    alarm =     StringField('Alarm level')
    def __repr__(self):
        if empty(self.level):
            return "<GaugeMeasure is %s>" % self.level
            return "<GaugeMeasure level=%f alarm=%s date=%s>" % (self.level, self.alarm, self.date)
class GaugeSensor(BaseObject):
    """
    GaugeSensor class.
    """
    name =      StringField('Name of the sensor')
    unit =      StringField('Unit of values')
    forecast =  StringField('Forecast')
    address =   StringField('Address')
    latitude =  DecimalField('Latitude')
    longitude = DecimalField('Longitude')
    lastvalue = Field('Last value', GaugeMeasure)
    history =   Field('Value history', list)  # lastvalue not included
Florent's avatar
Florent committed
    gaugeid =   StringField('Id of the gauge')
    def __repr__(self):
        return "<GaugeSensor id=%s name=%s>" % (self.id, self.name)

Florent's avatar
Florent committed
class CapGauge(Capability):
    def iter_gauges(self, pattern=None):
        Iter gauges.
        :param pattern: if specified, used to search gauges.
        :type pattern: str
        :rtype: iter[:class:`Gauge`]
        raise NotImplementedError()

    def iter_sensors(self, id, pattern=None):
        Iter instrument of a gauge.
        :param: ID of the gauge
        :param pattern: if specified, used to search sensors.
        :type pattern: str
        :rtype: iter[:class:`GaugeSensor`]
        """
        raise NotImplementedError()

    def iter_gauge_history(self, id):
        """
        Get history of a gauge sensor.

        :param id: ID of the gauge sensor
        :rtype: iter[:class:`GaugeMeasure`]
        raise NotImplementedError()

    def get_last_measure(self, id):
        :type id: str
        :rtype: :class:`GaugeMeasure`
        """
        raise NotImplementedError()