~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/constrained_value.h

  • Committer: kalebral at gmail
  • Date: 2010-12-04 02:13:38 UTC
  • mto: (1971.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1972.
  • Revision ID: kalebral@gmail.com-20101204021338-yek2zoraob5w7i5n
update files that did not have license or had incorrect license structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <boost/program_options.hpp>
25
25
#include <boost/program_options/errors.hpp>
26
26
#include <iostream>
27
 
#include <netinet/in.h> /* for in_port_t */
28
27
 
29
28
namespace drizzled
30
29
{
162
161
 
163
162
typedef boost::error_info<struct tag_invalid_max,uint64_t> invalid_max_info;
164
163
typedef boost::error_info<struct tag_invalid_min,int64_t> invalid_min_info;
165
 
typedef boost::error_info<struct tag_invalid_min,std::string> invalid_value;
166
164
 
167
165
template<class T,
168
166
  T MAXVAL,
185
183
  {
186
184
    if (greater_than_max<T,MAXVAL>(rhs))
187
185
    {
188
 
      boost::throw_exception(invalid_option_value(boost::lexical_cast<std::string>(rhs)) << invalid_max_info(static_cast<uint64_t>(MAXVAL)));
 
186
      boost::throw_exception(invalid_option_value(boost::lexical_cast<std::string>(rhs)) << invalid_max_info(MAXVAL));
189
187
    }
190
188
      
191
189
    if (less_than_min<T,MINVAL>(rhs))
192
190
    {
193
 
      boost::throw_exception(invalid_option_value(boost::lexical_cast<std::string>(rhs)) << invalid_min_info(static_cast<int64_t>(MINVAL)));
 
191
      boost::throw_exception(invalid_option_value(boost::lexical_cast<std::string>(rhs)) << invalid_min_info(MINVAL));
194
192
    }
195
193
    rhs-= rhs % ALIGN;
196
194
    this->setVal(rhs);
200
198
 
201
199
};
202
200
 
203
 
typedef constrained_check<uint64_t, UINT64_MAX, 0> uint64_constraint;
204
 
typedef constrained_check<uint32_t, UINT32_MAX, 0> uint32_constraint;
205
 
typedef constrained_check<uint64_t, UINT64_MAX, 1> uint64_nonzero_constraint;
206
 
typedef constrained_check<uint32_t, UINT32_MAX, 1> uint32_nonzero_constraint;
207
 
typedef drizzled::constrained_check<in_port_t, 65535, 0> port_constraint;
208
 
 
209
201
typedef constrained_check<uint32_t,65535,1> back_log_constraints;
210
202
 
211
203
} /* namespace drizzled */