LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
PolicyWriter.cc
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * Copyright 2008, 2009, 2010 LSST Corporation.
4  *
5  * This product includes software developed by the
6  * LSST Project (http://www.lsst.org/).
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the LSST License Statement and
19  * the GNU General Public License along with this program. If not,
20  * see <http://www.lsstcorp.org/LegalNotices/>.
21  */
22 
27 #include "lsst/pex/policy/Policy.h"
29 
30 #include <fstream>
31 #include <sstream>
32 
33 namespace lsst {
34 namespace pex {
35 namespace policy {
36 
37 //@cond
40 
41 /*
42  * create a writer attached to an output stream
43  * @param out the output stream to write data to
44  */
45 PolicyWriter::PolicyWriter(std::ostream *out) : _myos(0), _os(out) {
46  if (! out) {
47  _myos = new std::ostringstream();
48  _os = _myos;
49  }
50 }
51 
52 /*
53  * create a writer attached to a file. The file will be immediately
54  * opened for writing.
55  * @param file the path to the output file
56  */
57 PolicyWriter::PolicyWriter(const std::string& file, bool append)
58  : _myos(new std::ofstream(file.c_str(), append ? std::ios_base::app
59  : std::ios_base::trunc)),
60  _os(0)
61 {
62  _myos->exceptions(std::ofstream::failbit | std::ofstream::badbit);
63  _os = _myos;
64 }
65 
67  if (_myos) delete _myos;
68 }
69 
70 /*
71  * return the written data as a string. This string will be non-empty
72  * only if this class was was instantiated without an attached stream.
73  */
74 std::string PolicyWriter::toString() {
75  std::ostringstream *ss = dynamic_cast<std::ostringstream*>(_os);
76  if (ss) return ss->str();
77  return std::string();
78 }
79 
80 /*
81  * close the output stream. This has no effect if the attached
82  * stream is not a file stream.
83  */
84 void PolicyWriter::close() {
85  std::ofstream *fs = dynamic_cast<std::ofstream*>(_os);
86  if (fs) fs->close();
87 }
88 
89 /*
90  * write the contents of a policy the attached stream. Each top-level
91  * parameter will be recursively printed.
92  * @param policy the policy data to write
93  */
94 void PolicyWriter::write(const Policy& policy, bool doDecl) {
95  if (doDecl)
96  (*_os) << "#<?cfg paf policy ?>" << std::endl;
97 
98  Policy::StringArray names = policy.names(true);
99  Policy::StringArray::const_iterator ni;
100  for(ni=names.begin(); ni != names.end(); ++ni) {
101  try {
102  const std::type_info& tp = policy.typeOf(*ni);
103  if (tp == typeid(bool)) {
104  writeBools(*ni, policy.getBoolArray(*ni));
105  }
106  else if (tp == typeid(int)) {
107  writeInts(*ni, policy.getIntArray(*ni));
108  }
109  else if (tp == typeid(double)) {
110  writeDoubles(*ni, policy.getDoubleArray(*ni));
111  }
112  else if (tp == typeid(std::string)) {
113  writeStrings(*ni, policy.getStringArray(*ni));
114  }
115  else if (tp == typeid(PropertySet::Ptr)) {
116  writePolicies(*ni, policy.getPolicyArray(*ni));
117  }
118  else if (tp == typeid(Persistable::Ptr)) {
119  writeFiles(*ni, policy.getFileArray(*ni));
120  }
121  else {
122  throw LSST_EXCEPT(pexExcept::LogicError, "Policy: unexpected type for name=" + *ni);
123  }
124  }
125  catch (NameNotFound&) {
126  // shouldn't happen
127  writeString(*ni, "<missing data>");
128  }
129  }
130 
131 }
132 
133 void PolicyWriter::writeBool(const std::string& name, bool value) {
134  std::vector<bool> vals;
135  vals.push_back(value);
136  writeBools(name, vals);
137 }
138 
139 void PolicyWriter::writeInt(const std::string& name, int value) {
140  std::vector<int> vals;
141  vals.push_back(value);
142  writeInts(name, vals);
143 }
144 
145 void PolicyWriter::writeDouble(const std::string& name, double value) {
146  std::vector<double> vals;
147  vals.push_back(value);
148  writeDoubles(name, vals);
149 }
150 
151 void PolicyWriter::writeString(const std::string& name,
152  const std::string& value)
153 {
154  std::vector<std::string> vals;
155  vals.push_back(value);
156  writeStrings(name, vals);
157 }
158 
159 void PolicyWriter::writePolicy(const std::string& name, const Policy& value) {
160  std::vector<Policy::Ptr> vals;
161  vals.push_back(Policy::Ptr(new Policy(value)));
162  writePolicies(name, vals);
163 }
164 
165 void PolicyWriter::writeFile(const std::string& name,
166  const PolicyFile& value)
167 {
168  std::vector<Policy::FilePtr> vals;
169  vals.push_back(Policy::FilePtr(new PolicyFile(value)));
170  writeFiles(name, vals);
171 }
172 
173 
174 //@endcond
175 
176 }}} // end lsst::pex::policy
virtual void writeBool(const std::string &name, bool value)
definition of the PolicyFile class
table::Key< std::string > name
Definition: ApCorrMap.cc:71
boost::shared_ptr< PolicyFile > FilePtr
Definition: Policy.h:176
virtual void writeInts(const std::string &name, const Policy::IntArray &values)=0
boost::shared_ptr< PropertySet > Ptr
Definition: PropertySet.h:90
boost::shared_ptr< Policy > Ptr
Definition: Policy.h:172
the definition of the PolicyWriter class
virtual void writeFiles(const std::string &name, const Policy::FilePtrArray &values)=0
virtual void write(const Policy &policy, bool doDecl=false)
lsst::daf::base::PropertySet PropertySet
Definition: Wcs.cc:58
virtual void writeBools(const std::string &name, const Policy::BoolArray &values)=0
virtual void writeDoubles(const std::string &name, const Policy::DoubleArray &values)=0
std::vector< std::string > StringArray
Definition: Policy.h:181
virtual void writeFile(const std::string &name, const PolicyFile &value)
virtual void writeString(const std::string &name, const std::string &value)
virtual void writeStrings(const std::string &name, const Policy::StringArray &values)=0
virtual void writeDouble(const std::string &name, double value)
virtual void writeInt(const std::string &name, int value)
#define LSST_EXCEPT(type,...)
Definition: Exception.h:46
virtual void writePolicy(const std::string &name, const Policy &value)
Base class for all persistable classes.
Definition: Persistable.h:74
PolicyWriter(std::ostream *out=0)
virtual void writePolicies(const std::string &name, const Policy::PolicyPtrArray &values)=0