Add copyright comment headers to appropriate files
[gssweb.git] / json_gssapi / src / datamodel / GSSOIDSet.cpp
1 /*
2  * Copyright (c) 2014, 2015 JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include "GSSOIDSet.h"
36 #include "../GSSException.h"
37
38 #include <cstring>
39
40 GSSOIDSet::GSSOIDSet( )
41 {
42   init();
43 }
44
45 void GSSOIDSet::init()
46 {
47   /* Variables */
48   OM_uint32 major, minor;
49   
50   /* Error checking */
51   /* Setup */
52   /* Main */
53   major = gss_create_empty_oid_set(&minor, &(this->set));
54   
55   // How the heck would this happen, anyway?
56   if (GSS_ERROR(major))
57     throw GSSException("Could not create an empty OID set.", major, minor);
58   
59   /* Cleanup */
60   /* return */
61 }
62
63 GSSOIDSet::~GSSOIDSet()
64 {
65   this->releaseOIDSet();
66 }
67
68 void GSSOIDSet::releaseOIDSet()
69 {
70   /* Variables */
71   OM_uint32 major, minor;
72   
73   /* Error checking */
74   /* Setup */
75   /* Main */
76   major = gss_release_oid_set(&minor, &(this->set));
77   if (GSS_ERROR(major))
78     throw GSSException("Error in releasing memory for an OID set", major, minor);
79   /* Cleanup */
80   /* return */
81 }
82
83 GSSOIDSet& GSSOIDSet::operator= ( const gss_OID_set other )
84 {
85   /* Variables */
86   OM_uint32 i;
87   gss_OID   element;
88   
89   /* Error checking */
90   /* Setup */
91   /* Main */
92   this->releaseOIDSet();
93   this->init();
94   for(i = 0; i < other->count; i++)
95   {
96     element = other->elements + i;
97     this->addOID(element);
98   }
99   
100   /* Cleanup */
101   /* return */
102   return(*this);
103 }
104
105 void GSSOIDSet::addOID ( const GSSOID other )
106 {
107   this->addOID(other.toGss());
108 }
109
110 void GSSOIDSet::addOID( const gss_OID other )
111 {
112   /* Variables */
113   OM_uint32 major, minor;
114   
115   /* Error checking */
116   /* Setup */
117   major = gss_add_oid_set_member(&minor, other, &(this->set) );
118   if (GSS_ERROR(major))
119     throw GSSException("Error encountered while trying to add another OID to a set", major, minor);
120
121   /* Cleanup */
122   /* return */
123 }
124
125
126 bool GSSOIDSet::includes ( const gss_OID oid ) const
127 {
128   /* Variables */
129   OM_uint32 major, minor;
130   int present;
131   
132   /* Error checking */
133   /* Setup */
134   /* Main */
135   major = gss_test_oid_set_member(&minor, oid, this->set, &present);
136   if (GSS_ERROR(major))
137     /* How? */
138     throw GSSException("Cannot check if an OID is included in a set.", major, minor);
139   
140   /* Cleanup */
141   /* return */
142   return (present == 1);
143 }
144
145 bool GSSOIDSet::includes ( const GSSOID &oid ) const
146 {
147   return(this->includes( oid.toGss() ) );
148 }
149
150 /*
151  * Desired JSON Output:
152  * 
153  * [
154  *   "{ 1 2 3 4 }",
155  *   "{ 5 6 7 8 }"
156  * ]
157  * 
158  */
159 JSONObject* GSSOIDSet::toJSONValue() const
160 {
161   /* Variables */
162   JSONObject  jsonArray = JSONObject::array();
163   JSONObject *ret, *temp;
164   OM_uint32   index;
165   /* Error checking */
166   /* Setup */
167   /* Main */
168
169   for (index = 0; index < set->count; index++)
170   {
171     GSSOID m( set->elements + index );
172     temp = m.toJSONValue();
173     jsonArray.append( *temp );
174   }
175   
176   ret = new JSONObject(jsonArray);
177   
178   /* Cleanup */
179   /* return */
180   return(ret);
181 }
182
183
184   /* Variables */
185   /* Error checking */
186   /* Setup */
187   /* Main */
188   /* Cleanup */
189   /* return */
190