1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
/*
* D4AsyncUtil.cc
*
* Created on: Feb 18, 2014
* Author: ndp
*/
#include "config.h"
#include <sstream>
#include "XMLWriter.h"
#include "Error.h"
#include "InternalErr.h"
#include "util.h"
#include "D4AsyncUtil.h"
#include "DapXmlNamespaces.h"
namespace libdap {
const string D4AsyncUtil::STYLESHEET_REFERENCE_KEY = "DAP.Async.StyleSheet.Ref";
D4AsyncUtil::D4AsyncUtil() {}
D4AsyncUtil::~D4AsyncUtil() {}
/**
* @brief Print the AsyncRequired response to the.
* Print the AsyncRequired in XML form.
* @param xml Print to this XMLWriter instance
*/
void D4AsyncUtil::writeD4AsyncRequired(XMLWriter &xml, long expectedDelay, long responseLifetime, string *stylesheet_ref) {
// ------ AsynchronousResponse Element and Attributes - BEGIN
/*
int xmlTextWriterWriteAttributeNS (xmlTextWriterPtr writer,
const xmlChar * prefix,
const xmlChar * name,
const xmlChar * namespaceURI,
const xmlChar * content)
*/
if(stylesheet_ref){
string href = "href='" + *stylesheet_ref +"'";
if(xmlTextWriterStartPI(xml.get_writer(), (const xmlChar*) "xml-stylesheet") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not start XML Processing Instruction.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) "type='text/xsl'") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) " ") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) href.c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterEndPI(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not Close XML Processing Instruction.");
}
DapXmlNamspaces dapns;
if (xmlTextWriterStartElementNS(xml.get_writer(),
(const xmlChar*)"dap",
(const xmlChar*) "AsynchronousResponse",
(const xmlChar*) dapns.getDapNamespaceString(DAP_4_0).c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write AsynchronousResponse element");
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "status", (const xmlChar *) "required") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'status'");
// ------ expectedDelay Element and Attributes
if (xmlTextWriterStartElement(xml.get_writer(), (const xmlChar*) "dap:expectedDelay") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write expectedDelay element");
ostringstream oss;
oss << expectedDelay;
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "seconds", (const xmlChar*) oss.str().c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'status'");
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end expectedDelay element");
// ------ expectedDelay Element and Attributes - END
// ------ responseLifetime Element and Attributes
if (xmlTextWriterStartElement(xml.get_writer(), (const xmlChar*) "dap:responseLifetime") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write expectedDelay element");
ostringstream oss2;
oss2 << responseLifetime;
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "seconds", (const xmlChar*) oss2.str().c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'seconds'");
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end responseLifetime element");
// ------ responseLifetime Element and Attributes - END
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end AsynchronousResponse element");
// ------ AsynchronousResponse Element and Attributes - END
}
/**
* @brief Print the AsyncRequired response to the.
* Print the AsyncRequired in XML form.
* @param xml Print to this XMLWriter instance
*/
void D4AsyncUtil::writeD4AsyncAccepted(XMLWriter &xml, long expectedDelay, long responseLifetime, string asyncResourceUrl, string *stylesheet_ref) {
// ------ AsynchronousResponse Element and Attributes - BEGIN
DapXmlNamspaces dapns;
if(stylesheet_ref){
string href = "href='" + *stylesheet_ref +"'";
if(xmlTextWriterStartPI(xml.get_writer(), (const xmlChar*) "xml-stylesheet") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not start XML Processing Instruction.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) "type='text/xsl'") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) " ") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) href.c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterEndPI(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not Close XML Processing Instruction.");
}
if (xmlTextWriterStartElementNS(xml.get_writer(),
(const xmlChar*)"dap",
(const xmlChar*) "AsynchronousResponse",
(const xmlChar*) dapns.getDapNamespaceString(DAP_4_0).c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write AsynchronousResponse element");
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "status", (const xmlChar *) "accepted") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'status'");
// ------ expectedDelay Element and Attributes
if (xmlTextWriterStartElement(xml.get_writer(), (const xmlChar*) "dap:expectedDelay") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write expectedDelay element");
ostringstream oss;
oss << expectedDelay;
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "seconds", (const xmlChar*) oss.str().c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'seconds'");
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end expectedDelay element");
// ------ expectedDelay Element and Attributes - END
// ------ responseLifetime Element and Attributes
if (xmlTextWriterStartElement(xml.get_writer(), (const xmlChar*) "dap:responseLifetime") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write expectedDelay element");
ostringstream oss2;
oss2 << responseLifetime;
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "seconds", (const xmlChar*) oss2.str().c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'seconds'");
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end responseLifetime element");
// ------ responseLifetime Element and Attributes - END
// ------ link Element and Attributes
if (xmlTextWriterStartElement(xml.get_writer(), (const xmlChar*) "dap:link") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write expectedDelay element");
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "href", (const xmlChar*) asyncResourceUrl.c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'href'");
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end link element");
// ------ link Element and Attributes - END
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end AsynchronousResponse element");
// ------ AsynchronousResponse Element and Attributes - END
}
/**
* @brief Print the AsyncRequired response to the.
* Print the AsyncRequired in XML form.
* @param xml Print to this XMLWriter instance
*/
void D4AsyncUtil::writeD4AsyncPending(XMLWriter &xml, string *stylesheet_ref) {
// ------ AsynchronousResponse Element and Attributes - BEGIN
DapXmlNamspaces dapns;
if(stylesheet_ref){
string href = "href='" + *stylesheet_ref +"'";
if(xmlTextWriterStartPI(xml.get_writer(), (const xmlChar*) "xml-stylesheet") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not start XML Processing Instruction.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) "type='text/xsl'") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) " ") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) href.c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterEndPI(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not Close XML Processing Instruction.");
}
if (xmlTextWriterStartElementNS(xml.get_writer(),
(const xmlChar*)"dap",
(const xmlChar*) "AsynchronousResponse",
(const xmlChar*) dapns.getDapNamespaceString(DAP_4_0).c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write AsynchronousResponse element");
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "status", (const xmlChar *) "pending") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'status'");
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end AsynchronousResponse element");
// ------ AsynchronousResponse Element and Attributes - END
}
/**
* @brief Print the AsyncRequired response to the.
* Print the AsyncRequired in XML form.
* @param xml Print to this XMLWriter instance
*/
void D4AsyncUtil::writeD4AsyncResponseGone(XMLWriter &xml, string *stylesheet_ref) {
// ------ AsynchronousResponse Element and Attributes - BEGIN
DapXmlNamspaces dapns;
if(stylesheet_ref){
string href = "href='" + *stylesheet_ref +"'";
if(xmlTextWriterStartPI(xml.get_writer(), (const xmlChar*) "xml-stylesheet") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not start XML Processing Instruction.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) "type='text/xsl'") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) " ") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) href.c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterEndPI(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not Close XML Processing Instruction.");
}
if (xmlTextWriterStartElementNS(xml.get_writer(),
(const xmlChar*)"dap",
(const xmlChar*) "AsynchronousResponse",
(const xmlChar*) dapns.getDapNamespaceString(DAP_4_0).c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write AsynchronousResponse element");
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "status", (const xmlChar *) "gone") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'status'");
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end AsynchronousResponse element");
// ------ AsynchronousResponse Element and Attributes - END
}
/**
* @brief Print the AsyncRequired response to the.
* Print the AsyncRequired in XML form.
* @param xml Print to this XMLWriter instance
*/
void D4AsyncUtil::writeD4AsyncResponseRejected(XMLWriter &xml, RejectReasonCode code, string description, string *stylesheet_ref) {
// ------ AsynchronousResponse Element and Attributes - BEGIN
DapXmlNamspaces dapns;
if(stylesheet_ref){
string href = "href='" + *stylesheet_ref +"'";
if(xmlTextWriterStartPI(xml.get_writer(), (const xmlChar*) "xml-stylesheet") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not start XML Processing Instruction.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) "type='text/xsl'") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) " ") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterWriteString(xml.get_writer(), (const xmlChar*) href.c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write Processing Instruction content.");
if(xmlTextWriterEndPI(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not Close XML Processing Instruction.");
}
if (xmlTextWriterStartElementNS(xml.get_writer(),
(const xmlChar*)"dap",
(const xmlChar*) "AsynchronousResponse",
(const xmlChar*) dapns.getDapNamespaceString(DAP_4_0).c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write AsynchronousResponse element");
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "status", (const xmlChar *) "rejected") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'status'");
// ------ reason Element and Attributes
if (xmlTextWriterStartElement(xml.get_writer(), (const xmlChar*) "dap:reason") < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write reason element");
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar*) "code", (const xmlChar*) getRejectReasonCodeString(code).c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for 'code'");
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end reason element");
// ------ reason Element and Attributes - END
// ------ description Element and Attributes
if (xmlTextWriterWriteElement(xml.get_writer(), (const xmlChar*) "dap:description", (const xmlChar*) description.c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write description element");
// ------ description Element and Attributes - END
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end AsynchronousResponse element");
// ------ AsynchronousResponse Element and Attributes - END
}
string D4AsyncUtil::getRejectReasonCodeString(RejectReasonCode code){
string codeStr;
switch(code){
case TIME:
codeStr = "time";
break;
case UNAVAILABLE:
codeStr = "unavailable";
break;
case PRIVILEGES:
codeStr = "privileges";
break;
case OTHER:
codeStr = "other";
break;
default:
throw InternalErr(__FILE__, __LINE__, "D4AsyncUtil::getRejectReasonCodeString() - Unrecognized reject_reason_code.");
}
return codeStr;
}
// Unused paramters generate warnings, so I removed/commented them below. jhrg 3/12/14
void D4AsyncUtil::writeD2AsyncRequired(XMLWriter &/*xml*/, long /*expectedDelay*/, long /*responseLifetime*/) {
throw InternalErr(__FILE__, __LINE__, "DAP2 Doesn't handle Async.");
}
void D4AsyncUtil::writeD2AsyncAccepted(XMLWriter &, long , long , string /*asyncResourceUrl*/) {
throw InternalErr(__FILE__, __LINE__, "DAP2 Doesn't handle Async.");
}
void D4AsyncUtil::writeD2AsyncPending(XMLWriter &) {
throw InternalErr(__FILE__, __LINE__, "DAP2 Doesn't handle Async.");
}
void D4AsyncUtil::writeD2AsyncResponseGone(XMLWriter &) {
throw InternalErr(__FILE__, __LINE__, "DAP2 Doesn't handle Async.");
}
void D4AsyncUtil::writeD2AsyncResponseRejected(XMLWriter &, RejectReasonCode /*code*/, string /*description*/) {
throw InternalErr(__FILE__, __LINE__, "DAP2 Doesn't handle Async.");
}
} /* namespace libdap */
|