• Main Page
  • Related Pages
  • Modules
  • Namespaces
  • Classes
  • Files
  • File List

land_basic.hh

00001 // Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE)
00002 //
00003 // This file is part of Olena.
00004 //
00005 // Olena is free software: you can redistribute it and/or modify it under
00006 // the terms of the GNU General Public License as published by the Free
00007 // Software Foundation, version 2 of the License.
00008 //
00009 // Olena is distributed in the hope that it will be useful,
00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012 // General Public License for more details.
00013 //
00014 // You should have received a copy of the GNU General Public License
00015 // along with Olena.  If not, see <http://www.gnu.org/licenses/>.
00016 //
00017 // As a special exception, you may use this file as part of a free
00018 // software project without restriction.  Specifically, if other files
00019 // instantiate templates or use macros or inline functions from this
00020 // file, or you compile this file and link it with other files to produce
00021 // an executable, this file does not by itself cause the resulting
00022 // executable to be covered by the GNU General Public License.  This
00023 // exception does not however invalidate any other reasons why the
00024 // executable file might be covered by the GNU General Public License.
00025 
00026 #ifndef MLN_ACCU_LOGIC_LAND_BASIC_HH
00027 # define MLN_ACCU_LOGIC_LAND_BASIC_HH
00028 
00034 
00035 # include <mln/core/concept/meta_accumulator.hh>
00036 # include <mln/accu/internal/base.hh>
00037 
00038 
00039 namespace mln
00040 {
00041 
00042   // Forward declaration.
00043   namespace accu {
00044     namespace logic {
00045       struct land_basic;
00046     }
00047   }
00048 
00049 
00050   // Traits.
00051 
00052   namespace trait
00053   {
00054 
00055     template <>
00056     struct accumulator_< accu::logic::land_basic >
00057     {
00058       typedef accumulator::has_untake::no    has_untake;
00059       typedef accumulator::has_set_value::no has_set_value;
00060       typedef accumulator::has_stop::yes     has_stop;
00061       typedef accumulator::when_pix::use_v   when_pix;
00062     };
00063 
00064   } // end of namespace mln::trait
00065 
00066 
00067   namespace accu
00068   {
00069 
00070     namespace meta
00071     {
00072 
00073       namespace logic
00074       {
00075 
00077         struct land_basic : public Meta_Accumulator< land_basic >
00078         {
00079           template <typename T>
00080           struct with
00081           {
00082             typedef accu::logic::land_basic ret;
00083           };
00084         };
00085 
00086       } // end of namespace mln::accu::meta::logic
00087     } // end of namespace mln::accu::meta
00088 
00089 
00090     namespace logic
00091     {
00092 
00098     //
00099     struct land_basic : public mln::accu::internal::base< bool, land_basic >
00100     {
00101       typedef bool argument;
00102 
00103       land_basic();
00104 
00107       void init();
00108       void take_as_init_(const argument& t);
00109 
00110       void take(const argument& t);
00111       void take(const land_basic& other);
00113 
00115       bool to_result() const;
00116 
00119       bool is_valid() const;
00120 
00124       bool can_stop() const;
00125 
00126     protected:
00127       bool res_;
00128     };
00129 
00130 # ifndef MLN_INCLUDE_ONLY
00131 
00132     inline
00133     land_basic::land_basic()
00134     {
00135       init();
00136     }
00137 
00138     inline
00139     void
00140     land_basic::init()
00141     {
00142       res_ = true;
00143     }
00144 
00145     inline
00146     void land_basic::take_as_init_(const argument& t)
00147     {
00148       res_ = t;
00149     }
00150 
00151     inline
00152     void land_basic::take(const argument& t)
00153     {
00154       if (res_ == true && t == false)
00155         res_ = false;
00156     }
00157 
00158     inline
00159     void
00160     land_basic::take(const land_basic& other)
00161     {
00162       res_ = res_ && other.res_;
00163     }
00164 
00165     inline
00166     bool
00167     land_basic::to_result() const
00168     {
00169       return res_;
00170     }
00171 
00172     inline
00173     bool
00174     land_basic::is_valid() const
00175     {
00176       return true;
00177     }
00178 
00179     inline
00180     bool
00181     land_basic::can_stop() const
00182     {
00183       return res_ == false;
00184     }
00185 
00186 # endif // ! MLN_INCLUDE_ONLY
00187 
00188     } // end of namespace mln::accu::logic
00189   } // end of namespace mln::accu
00190 } // end of namespace mln
00191 
00192 
00193 #endif // ! MLN_ACCU_LOGIC_LAND_BASIC_HH

Generated on Tue Oct 4 2011 15:24:01 for Milena (Olena) by  doxygen 1.7.1