var_bool.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * var_bool.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 5b3cab356d0aa0db0b248116b6467030f6f64304 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef VAR_BOOL_HPP
  25. #define VAR_BOOL_HPP
  26. #include "variable.hpp"
  27. #include "observer.hpp"
  28. /// Interface for read-only boolean variable
  29. class VarBool: public Variable, public Subject<VarBool>
  30. {
  31.     public:
  32.         /// Get the variable type
  33.         virtual const string &getType() const { return m_type; }
  34.         /// Get the boolean value
  35.         virtual bool get() const = 0;
  36.     protected:
  37.         VarBool( intf_thread_t *pIntf ): Variable( pIntf ) {}
  38.         virtual ~VarBool() {}
  39.     private:
  40.         /// Variable type
  41.         static const string m_type;
  42. };
  43. /// Constant true VarBool
  44. class VarBoolTrue: public VarBool
  45. {
  46.     public:
  47.         VarBoolTrue( intf_thread_t *pIntf ): VarBool( pIntf ) {}
  48.         virtual ~VarBoolTrue() {}
  49.         virtual bool get() const { return true; }
  50. };
  51. /// Constant false VarBool
  52. class VarBoolFalse: public VarBool
  53. {
  54.     public:
  55.         VarBoolFalse( intf_thread_t *pIntf ): VarBool( pIntf ) {}
  56.         virtual ~VarBoolFalse() {}
  57.         virtual bool get() const { return false; }
  58. };
  59. /// Boolean variable implementation (read/write)
  60. class VarBoolImpl: public VarBool
  61. {
  62.     public:
  63.         VarBoolImpl( intf_thread_t *pIntf );
  64.         virtual ~VarBoolImpl() {}
  65.         // Get the boolean value
  66.         virtual bool get() const { return m_value; }
  67.         /// Set the internal value
  68.         virtual void set( bool value );
  69.     private:
  70.         /// Boolean value
  71.         bool m_value;
  72. };
  73. /// Conjunction of two boolean variables (AND)
  74. class VarBoolAndBool: public VarBool, public Observer<VarBool>
  75. {
  76.     public:
  77.         VarBoolAndBool( intf_thread_t *pIntf, VarBool &rVar1, VarBool &rVar2 );
  78.         virtual ~VarBoolAndBool();
  79.         // Get the boolean value
  80.         virtual bool get() const { return m_rVar1.get() && m_rVar2.get(); }
  81.         // Called when one of the observed variables is changed
  82.         void onUpdate( Subject<VarBool> &rVariable, void* );
  83.     private:
  84.         /// Boolean variables
  85.         VarBool &m_rVar1, &m_rVar2;
  86. };
  87. /// Disjunction of two boolean variables (OR)
  88. class VarBoolOrBool: public VarBool, public Observer<VarBool>
  89. {
  90.     public:
  91.         VarBoolOrBool( intf_thread_t *pIntf, VarBool &rVar1, VarBool &rVar2 );
  92.         virtual ~VarBoolOrBool();
  93.         // Get the boolean value
  94.         virtual bool get() const { return m_rVar1.get() || m_rVar2.get(); }
  95.         // Called when one of the observed variables is changed
  96.         void onUpdate( Subject<VarBool> &rVariable, void* );
  97.     private:
  98.         /// Boolean variables
  99.         VarBool &m_rVar1, &m_rVar2;
  100. };
  101. /// Negation of a boolean variable (NOT)
  102. class VarNotBool: public VarBool, public Observer<VarBool>
  103. {
  104.     public:
  105.         VarNotBool( intf_thread_t *pIntf, VarBool &rVar );
  106.         virtual ~VarNotBool();
  107.         // Get the boolean value
  108.         virtual bool get() const { return !m_rVar.get(); }
  109.         // Called when the observed variable is changed
  110.         void onUpdate( Subject<VarBool> &rVariable, void* );
  111.     private:
  112.         /// Boolean variable
  113.         VarBool &m_rVar;
  114. };
  115. #endif