os/ossrv/ossrv_pub/boost_apis/boost/date_time/period.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
#ifndef DATE_TIME_PERIOD_HPP___
sl@0
     2
#define DATE_TIME_PERIOD_HPP___
sl@0
     3
sl@0
     4
/*    Copyright (c) 2002,2003 CrystalClear Software, Inc.
sl@0
     5
 *
sl@0
     6
 * Distributed under the Boost Software License, Version 1.0.
sl@0
     7
 *     (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     8
 *           http://www.boost.org/LICENSE_1_0.txt)
sl@0
     9
 *
sl@0
    10
 *
sl@0
    11
 * Author: Jeff Garland, Bart Garst 
sl@0
    12
 * $Date: 2006/07/17 03:56:05 $
sl@0
    13
 */
sl@0
    14
sl@0
    15
/*! \file period.hpp
sl@0
    16
  This file contain the implementation of the period abstraction. This is
sl@0
    17
  basically the same idea as a range.  Although this class is intended for
sl@0
    18
  use in the time library, it is pretty close to general enough for other
sl@0
    19
  numeric uses.
sl@0
    20
sl@0
    21
*/
sl@0
    22
sl@0
    23
#include "boost/operators.hpp"
sl@0
    24
sl@0
    25
sl@0
    26
namespace boost {
sl@0
    27
namespace date_time {
sl@0
    28
  //!Provides generalized period type useful in date-time systems
sl@0
    29
  /*!This template uses a class to represent a time point within the period
sl@0
    30
    and another class to represent a duration.  As a result, this class is
sl@0
    31
    not appropriate for use when the number and duration representation 
sl@0
    32
    are the same (eg: in the regular number domain).
sl@0
    33
    
sl@0
    34
    A period can be specified by providing either the begining point and 
sl@0
    35
    a duration or the begining point and the end point( end is NOT part 
sl@0
    36
    of the period but 1 unit past it. A period will be "invalid" if either
sl@0
    37
    end_point <= begin_point or the given duration is <= 0. Any valid period 
sl@0
    38
    will return false for is_null().
sl@0
    39
    
sl@0
    40
    Zero length periods are also considered invalid. Zero length periods are
sl@0
    41
    periods where the begining and end points are the same, or, the given 
sl@0
    42
    duration is zero. For a zero length period, the last point will be one 
sl@0
    43
    unit less than the begining point.
sl@0
    44
sl@0
    45
    In the case that the begin and last are the same, the period has a 
sl@0
    46
    length of one unit.
sl@0
    47
    
sl@0
    48
    The best way to handle periods is usually to provide a begining point and
sl@0
    49
    a duration.  So, day1 + 7 days is a week period which includes all of the
sl@0
    50
    first day and 6 more days (eg: Sun to Sat).
sl@0
    51
sl@0
    52
   */
sl@0
    53
  template<class point_rep, class duration_rep>
sl@0
    54
  class period : private
sl@0
    55
      boost::less_than_comparable<period<point_rep, duration_rep> 
sl@0
    56
    , boost::equality_comparable< period<point_rep, duration_rep> 
sl@0
    57
    > >
sl@0
    58
  {
sl@0
    59
  public:
sl@0
    60
    typedef point_rep point_type;
sl@0
    61
    typedef duration_rep duration_type;
sl@0
    62
sl@0
    63
    period(point_rep first_point, point_rep end_point);
sl@0
    64
    period(point_rep first_point, duration_rep len);
sl@0
    65
    point_rep begin() const;
sl@0
    66
    point_rep end() const;
sl@0
    67
    point_rep last() const;
sl@0
    68
    duration_rep length() const;
sl@0
    69
    bool is_null() const;
sl@0
    70
    bool operator==(const period& rhs) const;
sl@0
    71
    bool operator<(const period& rhs) const;
sl@0
    72
    void shift(const duration_rep& d);
sl@0
    73
    bool contains(const point_rep& point) const;
sl@0
    74
    bool contains(const period& other) const;
sl@0
    75
    bool intersects(const period& other) const;
sl@0
    76
    bool is_adjacent(const period& other) const;
sl@0
    77
    bool is_before(const point_rep& point) const;
sl@0
    78
    bool is_after(const point_rep& point) const;
sl@0
    79
    period intersection(const period& other) const;
sl@0
    80
    period merge(const period& other) const;
sl@0
    81
    period span(const period& other) const;
sl@0
    82
  private:
sl@0
    83
    point_rep begin_;
sl@0
    84
    point_rep last_;
sl@0
    85
  };
sl@0
    86
sl@0
    87
  //! create a period from begin to last eg: [begin,end)
sl@0
    88
  /*! If end <= begin then the period will be invalid
sl@0
    89
   */
sl@0
    90
  template<class point_rep, class duration_rep>
sl@0
    91
  inline
sl@0
    92
  period<point_rep,duration_rep>::period(point_rep first_point, 
sl@0
    93
                                         point_rep end_point) : 
sl@0
    94
    begin_(first_point), 
sl@0
    95
    last_(end_point - duration_rep::unit())
sl@0
    96
  {}
sl@0
    97
sl@0
    98
  //! create a period as [begin, begin+len)
sl@0
    99
  /*! If len is <= 0 then the period will be invalid
sl@0
   100
   */
sl@0
   101
  template<class point_rep, class duration_rep>
sl@0
   102
  inline
sl@0
   103
  period<point_rep,duration_rep>::period(point_rep first_point, duration_rep len) :
sl@0
   104
    begin_(first_point), 
sl@0
   105
    last_(first_point + len-duration_rep::unit())
sl@0
   106
  { }
sl@0
   107
sl@0
   108
sl@0
   109
  //! Return the first element in the period
sl@0
   110
  template<class point_rep, class duration_rep>
sl@0
   111
  inline
sl@0
   112
  point_rep period<point_rep,duration_rep>::begin() const 
sl@0
   113
  {
sl@0
   114
    return begin_;
sl@0
   115
  }
sl@0
   116
sl@0
   117
  //! Return one past the last element 
sl@0
   118
  template<class point_rep, class duration_rep>
sl@0
   119
  inline
sl@0
   120
  point_rep period<point_rep,duration_rep>::end() const 
sl@0
   121
  {
sl@0
   122
    return last_ + duration_rep::unit();
sl@0
   123
  }
sl@0
   124
sl@0
   125
  //! Return the last item in the period
sl@0
   126
  template<class point_rep, class duration_rep>
sl@0
   127
  inline
sl@0
   128
  point_rep period<point_rep,duration_rep>::last() const 
sl@0
   129
  {
sl@0
   130
    return last_;
sl@0
   131
  }
sl@0
   132
sl@0
   133
  //! True if period is ill formed (length is zero or less)
sl@0
   134
  template<class point_rep, class duration_rep>
sl@0
   135
  inline
sl@0
   136
  bool period<point_rep,duration_rep>::is_null() const 
sl@0
   137
  {
sl@0
   138
    return end() <= begin_;
sl@0
   139
  }
sl@0
   140
sl@0
   141
  //! Return the length of the period
sl@0
   142
  template<class point_rep, class duration_rep>
sl@0
   143
  inline
sl@0
   144
  duration_rep period<point_rep,duration_rep>::length() const
sl@0
   145
  {
sl@0
   146
    if(last_ < begin_){ // invalid period
sl@0
   147
      return last_+duration_rep::unit() - begin_;
sl@0
   148
    }
sl@0
   149
    else{
sl@0
   150
      return end() - begin_; // normal case
sl@0
   151
    }
sl@0
   152
  }
sl@0
   153
sl@0
   154
  //! Equality operator
sl@0
   155
  template<class point_rep, class duration_rep>
sl@0
   156
  inline
sl@0
   157
  bool period<point_rep,duration_rep>::operator==(const period& rhs) const 
sl@0
   158
  {
sl@0
   159
    return  ((begin_ == rhs.begin_) && 
sl@0
   160
             (last_ == rhs.last_));
sl@0
   161
  }
sl@0
   162
sl@0
   163
  //! Strict as defined by rhs.last <= lhs.last
sl@0
   164
  template<class point_rep, class duration_rep>
sl@0
   165
  inline
sl@0
   166
  bool period<point_rep,duration_rep>::operator<(const period& rhs) const 
sl@0
   167
  {
sl@0
   168
    return (last_ < rhs.begin_);
sl@0
   169
  } 
sl@0
   170
sl@0
   171
sl@0
   172
  //! Shift the start and end by the specified amount
sl@0
   173
  template<class point_rep, class duration_rep>
sl@0
   174
  inline
sl@0
   175
  void period<point_rep,duration_rep>::shift(const duration_rep& d)
sl@0
   176
  {
sl@0
   177
    begin_ = begin_ + d;
sl@0
   178
    last_  = last_  + d;
sl@0
   179
  }
sl@0
   180
sl@0
   181
  //! True if the point is inside the period, zero length periods contain no points
sl@0
   182
  template<class point_rep, class duration_rep>
sl@0
   183
  inline
sl@0
   184
  bool period<point_rep,duration_rep>::contains(const point_rep& point) const 
sl@0
   185
  {
sl@0
   186
    return ((point >= begin_) &&
sl@0
   187
            (point <= last_));
sl@0
   188
  }
sl@0
   189
sl@0
   190
sl@0
   191
  //! True if this period fully contains (or equals) the other period
sl@0
   192
  template<class point_rep, class duration_rep>
sl@0
   193
  inline
sl@0
   194
  bool period<point_rep,duration_rep>::contains(const period<point_rep,duration_rep>& other) const
sl@0
   195
  {
sl@0
   196
    return ((begin_ <= other.begin_) && (last_ >= other.last_));
sl@0
   197
  }
sl@0
   198
sl@0
   199
sl@0
   200
  //! True if periods are next to each other without a gap.
sl@0
   201
  /* In the example below, p1 and p2 are adjacent, but p3 is not adjacent
sl@0
   202
   * with either of p1 or p2.
sl@0
   203
   *@code
sl@0
   204
   *   [-p1-)
sl@0
   205
   *        [-p2-)
sl@0
   206
   *          [-p3-) 
sl@0
   207
   *@endcode
sl@0
   208
   */
sl@0
   209
  template<class point_rep, class duration_rep>
sl@0
   210
  inline
sl@0
   211
  bool 
sl@0
   212
  period<point_rep,duration_rep>::is_adjacent(const period<point_rep,duration_rep>& other) const 
sl@0
   213
  {
sl@0
   214
    return (other.begin() == end() ||
sl@0
   215
            begin_ == other.end());
sl@0
   216
  }
sl@0
   217
sl@0
   218
sl@0
   219
  //! True if all of the period is prior or t < start
sl@0
   220
  /* In the example below only point 1 would evaluate to true.
sl@0
   221
   *@code
sl@0
   222
   *     [---------])
sl@0
   223
   * ^   ^    ^     ^   ^
sl@0
   224
   * 1   2    3     4   5
sl@0
   225
   * 
sl@0
   226
   *@endcode
sl@0
   227
   */
sl@0
   228
  template<class point_rep, class duration_rep>
sl@0
   229
  inline
sl@0
   230
  bool 
sl@0
   231
  period<point_rep,duration_rep>::is_after(const point_rep& t) const 
sl@0
   232
  { 
sl@0
   233
    if (is_null()) 
sl@0
   234
    {
sl@0
   235
      return false; //null period isn't after
sl@0
   236
    }
sl@0
   237
    
sl@0
   238
    return t < begin_;
sl@0
   239
  }
sl@0
   240
sl@0
   241
  //! True if all of the period is prior to the passed point or end <= t
sl@0
   242
  /* In the example below points 4 and 5 return true.
sl@0
   243
   *@code
sl@0
   244
   *     [---------])
sl@0
   245
   * ^   ^    ^     ^   ^
sl@0
   246
   * 1   2    3     4   5
sl@0
   247
   * 
sl@0
   248
   *@endcode
sl@0
   249
   */
sl@0
   250
  template<class point_rep, class duration_rep>
sl@0
   251
  inline
sl@0
   252
  bool 
sl@0
   253
  period<point_rep,duration_rep>::is_before(const point_rep& t) const 
sl@0
   254
  { 
sl@0
   255
    if (is_null()) 
sl@0
   256
    {
sl@0
   257
      return false;  //null period isn't before anything
sl@0
   258
    }
sl@0
   259
    
sl@0
   260
    return last_ < t;
sl@0
   261
  }
sl@0
   262
sl@0
   263
sl@0
   264
  //! True if the periods overlap in any way
sl@0
   265
  /* In the example below p1 intersects with p2, p4, and p6.
sl@0
   266
   *@code
sl@0
   267
   *       [---p1---)
sl@0
   268
   *             [---p2---)
sl@0
   269
   *                [---p3---) 
sl@0
   270
   *  [---p4---) 
sl@0
   271
   * [-p5-) 
sl@0
   272
   *         [-p6-) 
sl@0
   273
   *@endcode
sl@0
   274
   */
sl@0
   275
  template<class point_rep, class duration_rep>
sl@0
   276
  inline
sl@0
   277
  bool period<point_rep,duration_rep>::intersects(const period<point_rep,duration_rep>& other) const 
sl@0
   278
  { 
sl@0
   279
    return ( contains(other.begin_) ||
sl@0
   280
             other.contains(begin_) ||
sl@0
   281
             ((other.begin_ < begin_) && (other.last_ >= begin_)));
sl@0
   282
  }
sl@0
   283
sl@0
   284
  //! Returns the period of intersection or invalid range no intersection
sl@0
   285
  template<class point_rep, class duration_rep>
sl@0
   286
  inline
sl@0
   287
  period<point_rep,duration_rep>
sl@0
   288
  period<point_rep,duration_rep>::intersection(const period<point_rep,duration_rep>& other) const 
sl@0
   289
  {
sl@0
   290
    if (begin_ > other.begin_) {
sl@0
   291
      if (last_ <= other.last_) { //case2
sl@0
   292
        return *this;  
sl@0
   293
      }
sl@0
   294
      //case 1
sl@0
   295
      return period<point_rep,duration_rep>(begin_, other.end());
sl@0
   296
    }
sl@0
   297
    else {
sl@0
   298
      if (last_ <= other.last_) { //case3
sl@0
   299
        return period<point_rep,duration_rep>(other.begin_, this->end());
sl@0
   300
      }
sl@0
   301
      //case4
sl@0
   302
      return other;
sl@0
   303
    }
sl@0
   304
    //unreachable
sl@0
   305
  }
sl@0
   306
sl@0
   307
  //! Returns the union of intersecting periods -- or null period
sl@0
   308
  /*! 
sl@0
   309
   */
sl@0
   310
  template<class point_rep, class duration_rep>
sl@0
   311
  inline
sl@0
   312
  period<point_rep,duration_rep>
sl@0
   313
  period<point_rep,duration_rep>::merge(const period<point_rep,duration_rep>& other) const 
sl@0
   314
  {
sl@0
   315
    if (this->intersects(other)) {      
sl@0
   316
      if (begin_ < other.begin_) {
sl@0
   317
        return period<point_rep,duration_rep>(begin_, last_ > other.last_ ? this->end() : other.end());
sl@0
   318
      }
sl@0
   319
      
sl@0
   320
      return period<point_rep,duration_rep>(other.begin_, last_ > other.last_ ? this->end() : other.end());
sl@0
   321
      
sl@0
   322
    }
sl@0
   323
    return period<point_rep,duration_rep>(begin_,begin_); // no intersect return null
sl@0
   324
  }
sl@0
   325
sl@0
   326
  //! Combine two periods with earliest start and latest end.
sl@0
   327
  /*! Combines two periods and any gap between them such that 
sl@0
   328
   *  start = minimum(p1.start, p2.start)
sl@0
   329
   *  end   = maximum(p1.end  , p2.end)
sl@0
   330
   *@code
sl@0
   331
   *        [---p1---)
sl@0
   332
   *                       [---p2---)
sl@0
   333
   * result:
sl@0
   334
   *        [-----------p3----------) 
sl@0
   335
   *@endcode
sl@0
   336
   */
sl@0
   337
  template<class point_rep, class duration_rep>
sl@0
   338
  inline
sl@0
   339
  period<point_rep,duration_rep>
sl@0
   340
  period<point_rep,duration_rep>::span(const period<point_rep,duration_rep>& other) const 
sl@0
   341
  {
sl@0
   342
    point_rep start((begin_ < other.begin_) ? begin() : other.begin());
sl@0
   343
    point_rep newend((last_  < other.last_)  ? other.end() : this->end());
sl@0
   344
    return period<point_rep,duration_rep>(start, newend);
sl@0
   345
  }
sl@0
   346
sl@0
   347
sl@0
   348
} } //namespace date_time
sl@0
   349
sl@0
   350
sl@0
   351
sl@0
   352
#endif