secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLRefInfo.hpp
changeset 0 ba25891c3a9e
child 1 c42dffbd5b4f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLRefInfo.hpp	Thu Dec 17 08:51:10 2009 +0200
@@ -0,0 +1,198 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description: 
+*
+*/
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF 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.
+ */
+
+/*
+ * $Id: XMLRefInfo.hpp 568078 2007-08-21 11:43:25Z amassari $
+ */
+
+
+#if !defined(XMLIDREFINFO_HPP)
+#define XMLIDREFINFO_HPP
+
+#include <xercesc/util/XMemory.hpp>
+#include <xercesc/util/PlatformUtils.hpp>
+#include <xercesc/util/XMLString.hpp>
+
+#include <xercesc/internal/XSerializable.hpp>
+
+XERCES_CPP_NAMESPACE_BEGIN
+
+/**
+ *  This class provides a simple means to track ID Ref usage. Since id/idref
+ *  semamatics are part of XML 1.0, any validator will likely to be able to
+ *  track them. Instances of this class represent a reference and two markers,
+ *  one for its being declared and another for its being used. When the
+ *  document is done, one can look at each instance and, if used but not
+ *  declared, its an error.
+ *
+ *  The getKey() method allows it to support keyed collection semantics. It
+ *  returns the referenced name, so these objects will be stored via the hash
+ *  of the name. This name will either be a standard QName if namespaces are
+ *  not enabled/supported by the validator, or it will be in the form
+ *  {url}name if namespace processing is enabled.
+ */
+class XMLPARSER_EXPORT XMLRefInfo : public XSerializable, public XMemory
+{
+public :
+    // -----------------------------------------------------------------------
+    //  Constructors and Destructor
+    // -----------------------------------------------------------------------
+
+    /** @name Constructor */
+    //@{
+    XMLRefInfo
+    (
+        const   XMLCh* const   refName
+        , const bool           fDeclared = false
+        , const bool           fUsed = false
+        , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
+    );
+    //@}
+
+    /** @name Destructor */
+    //@{
+    ~XMLRefInfo();
+    //@}
+
+
+    // -----------------------------------------------------------------------
+    //  Getter methods
+    // -----------------------------------------------------------------------
+    bool getDeclared() const;
+    const XMLCh* getRefName() const;
+    bool getUsed() const;
+
+
+    // -----------------------------------------------------------------------
+    //  Setter methods
+    // -----------------------------------------------------------------------
+    void setDeclared(const bool newValue);
+    void setUsed(const bool newValue);
+
+    /***
+     * Support for Serialization/De-serialization
+     ***/
+    DECL_XSERIALIZABLE(XMLRefInfo)
+
+    XMLRefInfo
+    (
+      MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
+    );
+
+private :
+    // -----------------------------------------------------------------------
+    //  Unimplemented constructors and operators
+    // -----------------------------------------------------------------------
+    XMLRefInfo(const XMLRefInfo&);
+    XMLRefInfo& operator=(XMLRefInfo&);
+
+
+    // -----------------------------------------------------------------------
+    //  Private data members
+    //
+    //  fDeclared
+    //      The name was declared somewhere as an ID attribute.
+    //
+    //  fRefName
+    //      The name of the ref that this object represents. This is not a
+    //      name of the attribute, but of the value of an ID or IDREF attr
+    //      in content.
+    //
+    //  fUsed
+    //      The name was used somewhere in an IDREF/IDREFS attribute. If this
+    //      is true, but fDeclared is false, then the ref does not refer to
+    //      a declared ID.
+    // -----------------------------------------------------------------------
+    bool        fDeclared;
+    bool        fUsed;
+    XMLCh*      fRefName;
+    MemoryManager* fMemoryManager;
+};
+
+
+// ---------------------------------------------------------------------------
+//  XMLRefInfo: Constructors and Destructor
+// ---------------------------------------------------------------------------
+inline XMLRefInfo::XMLRefInfo( const XMLCh* const   refName
+                             , const bool           declared
+                             , const bool           used
+                             , MemoryManager* const manager) :
+    fDeclared(declared)
+    , fUsed(used)
+    , fRefName(0)
+    , fMemoryManager(manager)
+{
+    fRefName = XMLString::replicate(refName, fMemoryManager);
+}
+
+inline XMLRefInfo::~XMLRefInfo()
+{
+    fMemoryManager->deallocate(fRefName);
+}
+
+
+// ---------------------------------------------------------------------------
+//  XMLRefInfo: Getter methods
+// ---------------------------------------------------------------------------
+inline bool XMLRefInfo::getDeclared() const
+{
+    return fDeclared;
+}
+
+inline const XMLCh* XMLRefInfo::getRefName() const
+{
+    return fRefName;
+}
+
+inline bool XMLRefInfo::getUsed() const
+{
+    return fUsed;
+}
+
+
+// ---------------------------------------------------------------------------
+//  XMLRefInfo: Setter methods
+// ---------------------------------------------------------------------------
+inline void XMLRefInfo::setDeclared(const bool newValue)
+{
+    fDeclared = newValue;
+}
+
+inline void XMLRefInfo::setUsed(const bool newValue)
+{
+    fUsed = newValue;
+}
+
+XERCES_CPP_NAMESPACE_END
+
+#endif