LSSTApplications  17.0+124,17.0+14,17.0+73,18.0.0+37,18.0.0+80,18.0.0-4-g68ffd23+4,18.1.0-1-g0001055+12,18.1.0-1-g03d53ef+5,18.1.0-1-g1349e88+55,18.1.0-1-g2505f39+44,18.1.0-1-g5315e5e+4,18.1.0-1-g5e4b7ea+14,18.1.0-1-g7e8fceb+4,18.1.0-1-g85f8cd4+48,18.1.0-1-g8ff0b9f+4,18.1.0-1-ga2c679d+1,18.1.0-1-gd55f500+35,18.1.0-10-gb58edde+2,18.1.0-11-g0997b02+4,18.1.0-13-gfe4edf0b+12,18.1.0-14-g259bd21+21,18.1.0-19-gdb69f3f+2,18.1.0-2-g5f9922c+24,18.1.0-2-gd3b74e5+11,18.1.0-2-gfbf3545+32,18.1.0-26-g728bddb4+5,18.1.0-27-g6ff7ca9+2,18.1.0-3-g52aa583+25,18.1.0-3-g8ea57af+9,18.1.0-3-gb69f684+42,18.1.0-3-gfcaddf3+6,18.1.0-32-gd8786685a,18.1.0-4-gf3f9b77+6,18.1.0-5-g1dd662b+2,18.1.0-5-g6dbcb01+41,18.1.0-6-gae77429+3,18.1.0-7-g9d75d83+9,18.1.0-7-gae09a6d+30,18.1.0-9-gc381ef5+4,w.2019.45
LSSTDataManagementBasePackage
PAFWriter.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 namespace lsst {
31 namespace pex {
32 namespace policy {
33 namespace paf {
34 
35 //@cond
38 
39 /*
40  * delete this writer
41  */
43 
44 /*
45  * write an array of property values with a given name
46  * @param name the name to save the values as. This may be a
47  * hierarchical name; however, an implementation is
48  * not guaranteed to support it. If it cannot,
49  * it should raise an exception.
50  * @param values the values to save under that name.
51  */
53  const Policy::BoolArray& values)
54 {
55  (*_os) << _indent << name << ": ";
56  Policy::BoolArray::const_iterator vi;
57  for(vi = values.begin(); vi != values.end(); ++vi) {
58  (*_os) << ((*vi) ? "true" : "false");
59  if (vi+1 != values.end()) (*_os) << " ";
60  }
61  (*_os) << std::endl;
62 }
63 void PAFWriter::writeInts(const std::string& name,
64  const Policy::IntArray& values)
65 {
66  (*_os) << _indent << name << ": ";
67  Policy::IntArray::const_iterator vi;
68  for(vi = values.begin(); vi != values.end(); ++vi) {
69  (*_os) << *vi;
70  if (vi+1 != values.end()) (*_os) << " ";
71  }
72  (*_os) << std::endl;
73 }
74 void PAFWriter::writeDoubles(const std::string& name,
75  const Policy::DoubleArray& values)
76 {
77  (*_os) << _indent << name << ": ";
78  Policy::DoubleArray::const_iterator vi;
79  for(vi = values.begin(); vi != values.end(); ++vi) {
80  (*_os) << *vi;
81  if (vi+1 != values.end()) (*_os) << " ";
82  }
83  (*_os) << std::endl;
84 }
85 void PAFWriter::writeStrings(const std::string& name,
86  const Policy::StringArray& values) {
87  (*_os) << _indent << name << ": ";
88  Policy::StringArray::const_iterator vi;
89  for(vi = values.begin(); vi != values.end(); ++vi) {
90  (*_os) << '"' << *vi << '"';
91  if (vi+1 != values.end()) (*_os) << " ";
92  }
93  (*_os) << std::endl;
94 }
95 void PAFWriter::writePolicies(const std::string& name,
96  const Policy::PolicyPtrArray& values) {
97  PAFWriter subwrtr(_os, _indent+" ");
98 
99  Policy::PolicyPtrArray::const_iterator vi;
100  for(vi = values.begin(); vi != values.end(); ++vi) {
101  (*_os) << _indent << name << ": {" << std::endl;
102  subwrtr.write(**vi);
103  (*_os) << _indent << "}" << std::endl;
104  }
105 }
106 
107 void PAFWriter::writeFiles(const std::string& name,
108  const Policy::FilePtrArray& values)
109 {
110  (*_os) << _indent << name << ": ";
111  Policy::FilePtrArray::const_iterator vi;
112  for(vi = values.begin(); vi != values.end(); ++vi) {
113  (*_os) << '@' << (*vi)->getPath();
114  if (vi+1 != values.end()) (*_os) << " ";
115  }
116  (*_os) << std::endl;
117 }
118 
119 //@endcond
120 }}}} // end lsst::pex::policy::paf
std::vector< int > IntArray
Definition: Policy.h:176
std::vector< Ptr > PolicyPtrArray
Definition: Policy.h:179
definition of the PolicyFile class
virtual void writeInts(const std::string &name, const Policy::IntArray &values)
write an array of property values with a given name
a container for holding hierarchical configuration data in memory.
Definition: Policy.h:167
T endl(T... args)
virtual void writeDoubles(const std::string &name, const Policy::DoubleArray &values)
write an array of property values with a given name
STL class.
An abstract interface for writing policy data to streams.
Definition: PolicyWriter.h:47
std::string _indent
the indentation string
Definition: PAFWriter.h:108
A base class for image defects.
std::vector< std::string > StringArray
Definition: Policy.h:178
definition of the PAFWriter class
std::ostream * _os
the output stream.
Definition: PolicyWriter.h:132
virtual void writePolicies(const std::string &name, const Policy::PolicyPtrArray &values)
write an array of property values with a given name
virtual ~PAFWriter()
delete this writer
Definition: __init__.py:1
std::vector< FilePtr > FilePtrArray
Definition: Policy.h:180
std::vector< double > DoubleArray
Definition: Policy.h:177
virtual void writeFiles(const std::string &name, const Policy::FilePtrArray &values)
write an array of property values with a given name
std::vector< bool > BoolArray
Definition: Policy.h:175
virtual void writeBools(const std::string &name, const Policy::BoolArray &values)
write an array of property values with a given name
PAFWriter(std::ostream *out=0)
create a writer attached to an output stream
Definition: PAFWriter.h:51
virtual void writeStrings(const std::string &name, const Policy::StringArray &values)
write an array of property values with a given name