39f869c9ebccd660fabfe46c1425d0cec120ca75
[shibboleth/sp.git] / shibsp / attribute / SimpleAttribute.h
1 /*
2  *  Copyright 2001-2007 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file shibsp/attribute/SimpleAttribute.h
19  * 
20  * An Attribute whose values are simple strings.
21  */
22
23 #ifndef __shibsp_simpattr_h__
24 #define __shibsp_simpattr_h__
25
26 #include <shibsp/attribute/Attribute.h>
27
28 namespace shibsp {
29
30     /**
31      * An Attribute whose values are simple strings.
32      */
33     class SHIBSP_API SimpleAttribute : public Attribute
34     {
35     public:
36         /**
37          * Constructor.
38          * 
39          * @param ids   array with primary identifier in first position, followed by any aliases
40          */
41         SimpleAttribute(const std::vector<std::string>& ids) : Attribute(ids) {}
42
43         /**
44          * Constructs based on a remoted SimpleAttribute.
45          * 
46          * @param in    input object containing marshalled SimpleAttribute
47          */
48         SimpleAttribute(DDF& in) : Attribute(in) {
49             DDF val = in.first().first();
50             while (val.string()) {
51                 m_serialized.push_back(val.string());
52                 val = in.first().next();
53             }
54         }
55         
56         virtual ~SimpleAttribute() {}
57
58         /**
59          * Returns the set of values encoded as UTF-8 strings.
60          * 
61          * <p>For simple values, the serialized form is just the actual string,
62          * so the value array can be directly manipulated. 
63          * 
64          * @return  a mutable vector of the values
65          */
66         std::vector<std::string>& getValues() {
67             return m_serialized;
68         }
69         
70         void clearSerializedValues() {
71             // Do nothing, since our values are already serialized.
72         }
73         
74         DDF marshall() const {
75             DDF ddf = Attribute::marshall();
76             DDF vlist = ddf.first();
77             for (std::vector<std::string>::const_iterator i=m_serialized.begin(); i!=m_serialized.end(); ++i)
78                 vlist.add(DDF(NULL).string(i->c_str()));
79             return ddf;
80         }
81     };
82
83 };
84
85 #endif /* __shibsp_simpattr_h__ */