XBinder  Version 2.7.x
rtxXmlQName.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2003-2020 Objective Systems, Inc.
3  *
4  * This software is furnished under a license and may be used and copied
5  * only in accordance with the terms of such license and with the
6  * inclusion of the above copyright notice. This software or any other
7  * copies thereof may not be provided or otherwise made available to any
8  * other person. No title to and ownership of the software is hereby
9  * transferred.
10  *
11  * The information in this software is subject to change without notice
12  * and should not be construed as a commitment by Objective Systems, Inc.
13  *
14  * PROPRIETARY NOTICE
15  *
16  * This software is an unpublished work subject to a confidentiality agreement
17  * and is protected by copyright and trade secret law. Unauthorized copying,
18  * redistribution or other use of this work is prohibited.
19  *
20  * The above notice of copyright on this source code product does not indicate
21  * any actual or intended publication of such source code.
22  *
23  *****************************************************************************/
28 #ifndef _RTXXMLQNAME_H_
29 #define _RTXXMLQNAME_H_
30 
31 #include "rtxsrc/rtxContext.h"
32 
36 typedef struct {
37  const OSUTF8CHAR* nsURI;
38  const OSUTF8CHAR* nsPrefix;
39  const OSUTF8CHAR* localName;
41 
42 #include "rtxsrc/rtxContext.h"
43 
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47 
64 (OSCTXT* pctxt, const OSUTF8CHAR* localName, const OSUTF8CHAR* prefix,
65  const OSUTF8CHAR* nsuri);
66 
76 (OSCTXT* pctxt, const OSXMLFullQName* pqname);
77 
86 EXTERNRT void rtxQNameDeepCopy
87 (OSCTXT* pctxt, OSXMLFullQName* pdest, const OSXMLFullQName* psrc);
88 
97 EXTERNRT void rtxQNameFreeMem
98 (OSCTXT* pctxt, OSXMLFullQName* pqname, OSBOOL dynamic);
99 
106 EXTERNRT OSUINT32 rtxQNameHash (const OSXMLFullQName* pqname);
107 
115 EXTERNRT OSBOOL rtxQNamesEqual
116 (const OSXMLFullQName* pqname1, const OSXMLFullQName* pqname2);
117 
128 EXTERNRT const OSUTF8CHAR* rtxQNameToString
129 (const OSXMLFullQName* pqname, OSUTF8CHAR* buffer, OSUINT32 bufsiz);
130 
131 #ifdef __cplusplus
132 }
133 #endif
134 
135 #endif
EXTERNRT OSBOOL rtxQNamesEqual(const OSXMLFullQName *pqname1, const OSXMLFullQName *pqname2)
This function tests 2 QNames for equality.
EXTERNRT OSXMLFullQName * rtxNewFullQName(OSCTXT *pctxt, const OSUTF8CHAR *localName, const OSUTF8CHAR *prefix, const OSUTF8CHAR *nsuri)
This function creates a new full QName structure given the parts.
EXTERNRT OSUINT32 rtxQNameHash(const OSXMLFullQName *pqname)
This function computes a hash code for the given QName.
Common run-time context definitions.
This version of QName contains complete namespace info (prefix + URI)
Definition: rtxXmlQName.h:36
EXTERNRT void rtxQNameFreeMem(OSCTXT *pctxt, OSXMLFullQName *pqname, OSBOOL dynamic)
This function frees all memory within a QName structure,.
EXTERNRT const OSUTF8CHAR * rtxQNameToString(const OSXMLFullQName *pqname, OSUTF8CHAR *buffer, OSUINT32 bufsiz)
This function returns the QName in the following stringified format: {uri}/localName.
EXTERNRT OSXMLFullQName * rtxNewFullQNameDeepCopy(OSCTXT *pctxt, const OSXMLFullQName *pqname)
This function allocates a new QName instance and makes a deep copy of the given QName including the s...
Run-time context structure.
Definition: rtxContext.h:197
EXTERNRT void rtxQNameDeepCopy(OSCTXT *pctxt, OSXMLFullQName *pdest, const OSXMLFullQName *psrc)
This function makes a deep copy of the given QName including the strings inside.