LSSTApplications  18.1.0
LSSTDataManagementBasePackage
LogicalLocation.cc
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 
3 /*
4  * LSST Data Management System
5  * Copyright 2008, 2009, 2010 LSST Corporation.
6  *
7  * This product includes software developed by the
8  * LSST Project (http://www.lsst.org/).
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 3 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 LSST License Statement and
21  * the GNU General Public License along with this program. If not,
22  * see <http://www.lsstcorp.org/LegalNotices/>.
23  */
24 
25 
38 #ifndef __GNUC__
39 # define __attribute__(x) /*NOTHING*/
40 #endif
41 static char const* SVNid __attribute__((unused)) = "$Id$";
42 
44 
45 #include "boost/regex.hpp"
46 #include "lsst/pex/exceptions.h"
47 #include "lsst/log/Log.h"
48 
49 namespace dafBase = lsst::daf::base;
52 
53 namespace {
54 LOG_LOGGER _log = LOG_GET("daf.persistence.LogicalLocation");
55 }
56 
57 dafBase::PropertySet::Ptr dafPersist::LogicalLocation::_map;
58 
62  std::string const& locString, CONST_PTR(dafBase::PropertySet) additionalData) :
63  lsst::daf::base::Citizen(typeid(*this)), _locString() {
64  boost::regex expr("(%.*?)\\((\\w+?)\\)");
65  boost::sregex_iterator i = make_regex_iterator(locString, expr);
66  boost::sregex_iterator last;
67  LOGLS_DEBUG(_log, "Input string: " << locString);
68  while (i != boost::sregex_iterator()) {
69  last = i;
70  if ((*i).prefix().matched) {
71  _locString += (*i).prefix().str();
72  }
73  std::string fmt = (*i).str(1);
74  std::string key = (*i).str(2);
75  LOGLS_DEBUG(_log, "Key: " << key);
76  if (_map && _map->exists(key)) {
77  if (_map->typeOf(key) == typeid(int)) {
78  int value = _map->getAsInt(key);
79  LOGLS_DEBUG(_log, "Map Val: " << value);
80  if (fmt == "%") {
81  _locString += (boost::format("%1%") % value).str();
82  }
83  else {
84  _locString += (boost::format(fmt) % value).str();
85  }
86  }
87  else {
88  std::string value = _map->getAsString(key);
89  LOGLS_DEBUG(_log, "Map Val: " << value);
90  _locString += value;
91  }
92  }
93  else if (additionalData && additionalData->exists(key)) {
94  if (additionalData->typeOf(key) == typeid(int)) {
95  int value = additionalData->getAsInt(key);
96  LOGLS_DEBUG(_log, "Map Val: " << value);
97  if (fmt == "%") {
98  _locString += (boost::format("%1%") % value).str();
99  }
100  else {
101  _locString += (boost::format(fmt) % value).str();
102  }
103  }
104  else {
105  std::string value = additionalData->getAsString(key);
106  LOGLS_DEBUG(_log, "Map Val: " << value);
107  _locString += value;
108  }
109  }
110  else {
112  "Unknown substitution: " + key);
113  }
114  ++i;
115  }
116  if (last == boost::sregex_iterator()) {
117  _locString = locString;
118  LOGLS_DEBUG(_log, "Copy to: " << _locString);
119  }
120  else {
121  _locString += (*last).suffix().str();
122  LOGLS_DEBUG(_log, "Result: " << _locString);
123  }
124 }
125 
129  return _locString;
130 }
131 
136  if (map) {
137  _map = map->deepCopy();
138  } else {
139  _map.reset();
140  }
141 }
A PersistentCitizenScope object causes all Citizen objects created during its lifetime to be marked a...
Definition: Citizen.h:131
std::shared_ptr< PropertySet > Ptr
Definition: PropertySet.h:71
#define LOG_LOGGER
Definition: Log.h:688
#define PTR(...)
Definition: base.h:41
int getAsInt(std::string const &name) const
Get the last value for a bool/char/short/int property name (possibly hierarchical).
std::string const & locString(void) const
Accessor.
#define CONST_PTR(...)
A shared pointer to a const object.
Definition: base.h:47
STL class.
LSST DM logging module built on log4cxx.
#define LOGLS_DEBUG(logger, message)
Log a debug-level message using an iostream-based interface.
Definition: Log.h:593
A base class for image defects.
LogicalLocation(std::string const &locString, boost::shared_ptr< dafBase::PropertySet const > additionalData=boost::shared_ptr< dafBase::PropertySet const >())
Constructor from string and additional data.
virtual Ptr deepCopy() const
Make a deep copy of the PropertySet and all of its contents.
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:168
#define __attribute__(x)
bool exists(std::string const &name) const
Determine if a name (possibly hierarchical) exists.
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
static void setLocationMap(boost::shared_ptr< dafBase::PropertySet > map)
Set the logical-to-less-logical map.
Key< U > key
Definition: Schema.cc:281
Class for storing generic metadata.
Definition: PropertySet.h:68
std::string getAsString(std::string const &name) const
Get the last value for a string property name (possibly hierarchical).
#define LOG_GET(logger)
Returns a Log object associated with logger.
Definition: Log.h:75
Interface for LogicalLocation class.
Reports errors that are due to events beyond the control of the program.
Definition: Runtime.h:104
std::type_info const & typeOf(std::string const &name) const
Get the type of values for a property name (possibly hierarchical).