LSSTApplications  16.0-11-g09ed895+2,16.0-11-g12e47bd,16.0-11-g9bb73b2+6,16.0-12-g5c924a4+6,16.0-14-g9a974b3+1,16.0-15-g1417920+1,16.0-15-gdd5ca33+1,16.0-16-gf0259e2,16.0-17-g31abd91+7,16.0-17-g7d7456e+7,16.0-17-ga3d2e9f+13,16.0-18-ga4d4bcb+1,16.0-18-gd06566c+1,16.0-2-g0febb12+21,16.0-2-g9d5294e+69,16.0-2-ga8830df+6,16.0-20-g21842373+7,16.0-24-g3eae5ec,16.0-28-gfc9ea6c+4,16.0-29-ge8801f9,16.0-3-ge00e371+34,16.0-4-g18f3627+13,16.0-4-g5f3a788+20,16.0-4-ga3eb747+10,16.0-4-gabf74b7+29,16.0-4-gb13d127+6,16.0-49-g42e581f7+6,16.0-5-g27fb78a+7,16.0-5-g6a53317+34,16.0-5-gb3f8a4b+87,16.0-6-g9321be7+4,16.0-6-gcbc7b31+42,16.0-6-gf49912c+29,16.0-7-gd2eeba5+51,16.0-71-ge89f8615e,16.0-8-g21fd5fe+29,16.0-8-g3a9f023+20,16.0-8-g4734f7a+1,16.0-8-g5858431+3,16.0-9-gf5c1f43+8,master-gd73dc1d098+1,w.2019.01
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 }
#define CONST_PTR(...)
A shared pointer to a const object.
Definition: base.h:47
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:712
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.
STL class.
LSST DM logging module built on log4cxx.
#define PTR(...)
Definition: base.h:41
#define LOGLS_DEBUG(logger, message)
Log a debug-level message using an iostream-based interface.
Definition: Log.h:617
A base class for image defects.
Definition: cameraGeom.dox:3
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:129
#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:83
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).