Set fourth file version digit to signify rebuild.
[shibboleth/cpp-xmltooling.git] / xmltooling / QName.cpp
index 6ca7f79..d80d1a8 100644 (file)
-/*\r
- *  Copyright 2001-2006 Internet2\r
- * \r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *     http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-\r
-/**\r
- * QName.cpp\r
- * \r
- * Representing XML QNames \r
- */\r
-\r
-#include "internal.h"\r
-#include "QName.h"\r
-\r
-using namespace xmltooling;\r
-using namespace std;\r
-\r
-QName::QName(const XMLCh* uri, const XMLCh* localPart, const XMLCh* prefix)\r
-{\r
-#ifndef HAVE_GOOD_STL\r
-    m_uri=m_prefix=m_local=NULL;\r
-#endif\r
-    setNamespaceURI(uri);\r
-    setLocalPart(localPart);\r
-    setPrefix(prefix);\r
-}\r
-\r
-QName::~QName()\r
-{\r
-#ifndef HAVE_GOOD_STL\r
-    XMLString::release(&m_uri);\r
-    XMLString::release(&m_prefix);\r
-    XMLString::release(&m_local);\r
-#endif\r
-}\r
-\r
-void QName::setPrefix(const XMLCh* prefix)\r
-{\r
-#ifdef HAVE_GOOD_STL\r
-    if (prefix)\r
-        m_prefix=prefix;\r
-    else\r
-        m_prefix.erase();\r
-#else\r
-    if (m_prefix)\r
-        XMLString::release(&m_prefix);\r
-    m_prefix=XMLString::replicate(prefix);\r
-#endif\r
-}\r
-\r
-void QName::setNamespaceURI(const XMLCh* uri)\r
-{\r
-#ifdef HAVE_GOOD_STL\r
-    if (uri)\r
-        m_uri=uri;\r
-    else\r
-        m_uri.erase();\r
-#else\r
-    if (m_uri)\r
-        XMLString::release(&m_uri);\r
-    m_uri=XMLString::replicate(uri);\r
-#endif\r
-}\r
-\r
-void QName::setLocalPart(const XMLCh* localPart)\r
-{\r
-#ifdef HAVE_GOOD_STL\r
-    if (localPart)\r
-        m_local=localPart;\r
-    else\r
-        m_local.erase();\r
-#else\r
-    if (m_local)\r
-        XMLString::release(&m_local);\r
-    m_local=XMLString::replicate(localPart);\r
-#endif\r
-}\r
-\r
-#ifndef HAVE_GOOD_STL\r
-QName::QName(const QName& src)\r
-{\r
-    m_uri=XMLString::replicate(src.getNamespaceURI());\r
-    m_prefix=XMLString::replicate(src.getPrefix());\r
-    m_local=XMLString::replicate(src.getLocalPart());\r
-}\r
-\r
-QName& QName::operator=(const QName& src)\r
-{\r
-    m_uri=XMLString::replicate(src.getNamespaceURI());\r
-    m_prefix=XMLString::replicate(src.getPrefix());\r
-    m_local=XMLString::replicate(src.getLocalPart());\r
-    return *this;\r
-}\r
-#endif\r
-\r
-bool xmltooling::operator==(const QName& op1, const QName& op2)\r
-{\r
-    return (!XMLString::compareString(op1.getNamespaceURI(),op2.getNamespaceURI()) &&\r
-            !XMLString::compareString(op1.getLocalPart(),op2.getLocalPart()));\r
-}\r
-\r
-bool xmltooling::operator!=(const QName& op1, const QName& op2)\r
-{\r
-    return !(op1==op2);\r
-}\r
-\r
-bool xmltooling::operator<(const QName& op1, const QName& op2)\r
-{\r
-    int i=XMLString::compareString(op1.getNamespaceURI(),op2.getNamespaceURI());\r
-    if (i<0)\r
-        return true;\r
-    else if (i==0)\r
-        return (XMLString::compareString(op1.getLocalPart(),op2.getLocalPart())<0);\r
-    else\r
-        return false;\r
-}\r
-\r
-string QName::toString() const\r
-{\r
-    if (!hasLocalPart())\r
-        return "";\r
-    auto_ptr_char local(getLocalPart());\r
-    if (hasPrefix()) {\r
-        auto_ptr_char pre(getPrefix());\r
-        return string(pre.get()) + ':' + local.get(); \r
-    }\r
-    else if (hasNamespaceURI()) {\r
-        auto_ptr_char ns(getNamespaceURI());\r
-        return string("{") + ns.get() + '}' + local.get(); \r
-    }\r
-    else\r
-        return local.get();\r
-}\r
+/**
+ * Licensed to the University Corporation for Advanced Internet
+ * Development, Inc. (UCAID) under one or more contributor license
+ * agreements. See the NOTICE file distributed with this work for
+ * additional information regarding copyright ownership.
+ *
+ * UCAID licenses this file to you under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the
+ * License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+ * either express or implied. See the License for the specific
+ * language governing permissions and limitations under the License.
+ */
+
+/**
+ * QName.cpp
+ * 
+ * Representing XML QNames 
+ */
+
+#include "internal.h"
+#include "QName.h"
+
+using namespace xmltooling;
+using namespace std;
+
+using xercesc::XMLString;
+
+QName::QName(const XMLCh* uri, const XMLCh* localPart, const XMLCh* prefix)
+{
+    setNamespaceURI(uri);
+    setLocalPart(localPart);
+    setPrefix(prefix);
+}
+
+QName::QName(const char* uri, const char* localPart, const char* prefix)
+{
+    setNamespaceURI(uri);
+    setLocalPart(localPart);
+    setPrefix(prefix);
+}
+
+QName::~QName()
+{
+}
+
+void QName::setPrefix(const XMLCh* prefix)
+{
+    if (prefix)
+        m_prefix=prefix;
+    else
+        m_prefix.erase();
+}
+
+void QName::setNamespaceURI(const XMLCh* uri)
+{
+    if (uri)
+        m_uri=uri;
+    else
+        m_uri.erase();
+}
+
+void QName::setLocalPart(const XMLCh* localPart)
+{
+    if (localPart)
+        m_local=localPart;
+    else
+        m_local.erase();
+}
+
+void QName::setPrefix(const char* prefix)
+{
+    if (prefix) {
+        auto_ptr_XMLCh temp(prefix);
+        m_prefix=temp.get();
+    }
+    else
+        m_prefix.erase();
+}
+
+void QName::setNamespaceURI(const char* uri)
+{
+    if (uri) {
+        auto_ptr_XMLCh temp(uri);
+        m_uri=temp.get();
+    }
+    else
+        m_uri.erase();
+}
+
+void QName::setLocalPart(const char* localPart)
+{
+    if (localPart) {
+        auto_ptr_XMLCh temp(localPart);
+        m_local=temp.get();
+    }
+    else
+        m_local.erase();
+}
+
+bool xmltooling::operator==(const QName& op1, const QName& op2)
+{
+    if (&op1 == &op2)
+        return true;
+    return (!XMLString::compareString(op1.getNamespaceURI(),op2.getNamespaceURI()) &&
+            !XMLString::compareString(op1.getLocalPart(),op2.getLocalPart()));
+}
+
+bool xmltooling::operator!=(const QName& op1, const QName& op2)
+{
+    return !(op1==op2);
+}
+
+bool xmltooling::operator<(const QName& op1, const QName& op2)
+{
+    int i=XMLString::compareString(op1.getNamespaceURI(),op2.getNamespaceURI());
+    if (i<0)
+        return true;
+    else if (i==0)
+        return (XMLString::compareString(op1.getLocalPart(),op2.getLocalPart())<0);
+    else
+        return false;
+}
+
+string QName::toString() const
+{
+    if (!hasLocalPart())
+        return "";
+    auto_ptr_char local(getLocalPart());
+    if (hasPrefix()) {
+        auto_ptr_char pre(getPrefix());
+        return string(pre.get()) + ':' + local.get(); 
+    }
+    else if (hasNamespaceURI()) {
+        auto_ptr_char ns(getNamespaceURI());
+        return string("{") + ns.get() + '}' + local.get(); 
+    }
+    else
+        return local.get();
+}