6 namespace persistency {
77 throwException(
"No runs have been found in the range (" + std::to_string(
low) +
"," + std::to_string(
up) +
")",
78 "RunInfoProxy::load(Time_t,Time_t)");
89 checkTransaction(
"RunInfoProxy::load(const boost::posix_time::ptime&,const boost::posix_time::ptime&)");
92 if (!
m_session->runInfoSchema().runInfoTable().getInclusiveTimeRange(
low,
up,
m_data->runList)) {
93 throwException(
"No runs have been found in the interval (" + boost::posix_time::to_simple_string(
low) +
"," +
94 boost::posix_time::to_simple_string(
up) +
")",
95 "RunInfoProxy::load(boost::posix_time::ptime&,const boost::posix_time::ptime&)");
108 if (!
m_session->isTransactionActive(
false))
128 bool operator()(
const std::tuple<cond::Time_t, boost::posix_time::ptime, boost::posix_time::ptime>& x,
130 return (y > std::get<0>(x));
136 bool operator()(
const std::tuple<cond::Time_t, boost::posix_time::ptime, boost::posix_time::ptime>& x,
137 const boost::posix_time::ptime& y) {
138 return (y > std::get<2>(x));
162 throwException(
"No data has been found.",
"RunInfoProxy::get(Time_t)");
164 throwException(
"The target run has not been found in the selected run range.",
"RunInfoProxy::get(Time_t)");
172 throwException(
"No data has been found.",
"RunInfoProxy::get(const boost::posix_time::ptime&)");
174 throwException(
"The target time has not been found in the selected time range.",
175 "RunInfoProxy::get(const boost::posix_time::ptime&)");