Reducing header overuse, non-inlining selected methods (CPPOST-35).
[shibboleth/cpp-opensaml.git] / saml / saml1 / binding / impl / SAMLArtifactType0002.cpp
1 /*
2  *  Copyright 2001-2009 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  * SAMLArtifactType0002.cpp
19  * 
20  * Type 0x0002 SAML 1.x artifact class.
21  */
22
23 #include "internal.h"
24 #include "saml1/binding/SAMLArtifactType0002.h"
25
26 using namespace opensaml::saml1p;
27 using namespace opensaml;
28 using namespace xmltooling;
29 using namespace std;
30
31 namespace opensaml {
32     namespace saml1p {
33         SAMLArtifact* SAML_DLLLOCAL SAMLArtifactType0002Factory(const char* const & s)
34         {
35             return new SAMLArtifactType0002(s);
36         }
37     }
38 };
39
40 const unsigned int SAMLArtifactType0002::HANDLE_LENGTH = 20;
41
42 SAMLArtifactType0002::SAMLArtifactType0002(const SAMLArtifactType0002& src) : SAMLArtifact(src)
43 {
44 }
45
46 SAMLArtifactType0002::SAMLArtifactType0002(const char* s) : SAMLArtifact(s)
47 {
48     // The base class does the work, we just do the checking.
49     if (m_raw.size() <= TYPECODE_LENGTH + HANDLE_LENGTH)
50         throw ArtifactException("Type 0x0002 artifact given artifact of incorrect length.");
51     else if (m_raw[0] != 0x0 || m_raw[1] != 0x2)
52         throw ArtifactException(
53             string("Type 0x0002 artifact given artifact of invalid type (") + toHex(getTypeCode()) + ")."
54             );
55 }
56
57 SAMLArtifactType0002::SAMLArtifactType0002(const string& sourceLocation)
58 {
59     if (sourceLocation.empty())
60         throw ArtifactException("Type 0x0002 artifact with empty source location.");
61     m_raw+=(char)0x0;
62     m_raw+=(char)0x2;
63     char buf[HANDLE_LENGTH];
64     SAMLConfig::getConfig().generateRandomBytes(buf,HANDLE_LENGTH);
65     for (int i=0; i<HANDLE_LENGTH; i++)
66         m_raw+=buf[i];
67     m_raw+=sourceLocation;
68 }
69
70 SAMLArtifactType0002::SAMLArtifactType0002(const string& sourceLocation, const string& handle)
71 {
72     if (sourceLocation.empty())
73         throw ArtifactException("Type 0x0002 artifact with empty source location.");
74     if (handle.size()!=HANDLE_LENGTH)
75         throw ArtifactException("Type 0x0002 artifact with handle of incorrect length.");
76     m_raw+=(char)0x0;
77     m_raw+=(char)0x2;
78     m_raw.append(handle,0,HANDLE_LENGTH);
79     m_raw+=sourceLocation;
80 }
81
82 SAMLArtifactType0002::~SAMLArtifactType0002()
83 {
84 }
85
86 SAMLArtifactType0002* SAMLArtifactType0002::clone() const
87 {
88     return new SAMLArtifactType0002(*this);
89 }
90
91 string SAMLArtifactType0002::getMessageHandle() const
92 {
93     return m_raw.substr(TYPECODE_LENGTH, HANDLE_LENGTH);    // bytes 3-22
94 }
95
96 string SAMLArtifactType0002::getSource() const
97 {
98     return m_raw.c_str() + TYPECODE_LENGTH + HANDLE_LENGTH; // bytes 23-terminating null
99 }