IXMLDOMCharacterDataImpl.h
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:6k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  * 
  4.  * Copyright (c) 1999-2000 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  * 
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer. 
  13.  * 
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  * 
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:  
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  * 
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written 
  29.  *    permission, please contact apache@apache.org.
  30.  * 
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  * 
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  * 
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: IXMLDOMCharacterDataImpl.h,v $
  58.  * Revision 1.3  2000/07/07 00:12:51  jpolast
  59.  * bug fixes for non-null terminated strings
  60.  *
  61.  * Revision 1.2  2000/03/30 02:00:13  abagchi
  62.  * Initial checkin of working code with Copyright Notice
  63.  *
  64.  */
  65. #ifndef ___ixmldomcharacterdataimpl_h___
  66. #define ___ixmldomcharacterdataimpl_h___
  67. #include "IXMLDOMNodeImpl.h"
  68. template <class T, const IID* piid, const GUID* plibid = &CComModule::m_libid, WORD wMajor = 1,
  69. WORD wMinor = 0, class tihclass = CComTypeInfoHolder>
  70. class ATL_NO_VTABLE IXMLDOMCharacterDataImpl: public IXMLDOMNodeImpl<T,piid,plibid,wMajor,wMinor,tihclass>
  71. {
  72. private:
  73. XMLCh* DOMStringToXMLCh(DOMString str)
  74. {
  75. XMLCh* cdata = new XMLCh[str.length()+1];
  76. for (unsigned int i=0; i < str.length(); i++)
  77. cdata[i] = str.charAt(i);
  78. cdata[str.length()] = 0;
  79. return cdata;
  80. }
  81. public:
  82. virtual DOM_CharacterData& get_DOM_CharacterData() = 0; 
  83. virtual DOM_Node& get_DOM_Node() { return get_DOM_CharacterData(); } 
  84. // IXMLDOMCharacterData 
  85. STDMETHOD(get_data)(BSTR  *pVal)
  86. {
  87. ATLTRACE(_T("IXMLDOMCharacterDataImpl::get_datan"));
  88. if (NULL == pVal)
  89. return E_POINTER;
  90. *pVal = NULL;
  91. try
  92. {
  93. //*pVal = SysAllocString(get_DOM_CharacterData().getData().rawBuffer());
  94. *pVal = SysAllocString(DOMStringToXMLCh(get_DOM_CharacterData().getData()));
  95. }
  96. catch(...)
  97. {
  98. return E_FAIL;
  99. }
  100. return S_OK;
  101. }
  102. STDMETHOD(put_data)(BSTR newVal)
  103. {
  104. ATLTRACE(_T("IXMLDOMCharacterDataImpl::put_datan"));
  105. try
  106. {
  107. get_DOM_CharacterData().setData(newVal);
  108. }
  109. catch(...)
  110. {
  111. return E_FAIL;
  112. }
  113. return S_OK;
  114. }
  115. STDMETHOD(get_length)(long  *pVal)
  116. {
  117. ATLTRACE(_T("IXMLDOMCharacterDataImpl::get_lengthn"));
  118. if (NULL == pVal)
  119. return E_POINTER;
  120. *pVal = 0;
  121. try
  122. {
  123. *pVal = get_DOM_CharacterData().getLength();
  124. }
  125. catch(...)
  126. {
  127. return E_FAIL;
  128. }
  129. return S_OK;
  130. }
  131. STDMETHOD(substringData)(long offset, long count, BSTR  *data)
  132. {
  133. ATLTRACE(_T("IXMLDOMCharacterDataImpl::substringDatan"));
  134. if (NULL == data)
  135. return E_POINTER;
  136. *data = NULL;
  137. try
  138. {
  139. // need to copy the string to a new buffer since DOMString doesn't null terminate the substring.
  140. *data = SysAllocString(DOMStringToXMLCh(get_DOM_CharacterData().substringData(offset, count)));
  141. }
  142. catch(...)
  143. {
  144. return E_FAIL;
  145. }
  146. return S_OK;
  147. }
  148. STDMETHOD(appendData)(BSTR data)
  149. {
  150. ATLTRACE(_T("IXMLDOMCharacterDataImpl::appendDatan"));
  151. try
  152. {
  153. get_DOM_CharacterData().appendData(data);
  154. }
  155. catch(...)
  156. {
  157. return E_FAIL;
  158. }
  159. return S_OK;
  160. }
  161. STDMETHOD(insertData)(long offset, BSTR data)
  162. {
  163. ATLTRACE(_T("IXMLDOMCharacterDataImpl::insertDatan"));
  164. try
  165. {
  166. get_DOM_CharacterData().insertData(offset, data);
  167. }
  168. catch(...)
  169. {
  170. return E_FAIL;
  171. }
  172. return S_OK;
  173. }
  174. STDMETHOD(deleteData)(long offset, long count)
  175. {
  176. ATLTRACE(_T("IXMLDOMCharacterDataImpl::deleteDatan"));
  177. try
  178. {
  179. get_DOM_CharacterData().deleteData(offset, count);
  180. }
  181. catch(...)
  182. {
  183. return E_FAIL;
  184. }
  185. return S_OK;
  186. }
  187. STDMETHOD(replaceData)(long offset, long count, BSTR data)
  188. {
  189. ATLTRACE(_T("IXMLDOMCharacterDataImpl::replaceDatan"));
  190. try
  191. {
  192. get_DOM_CharacterData().replaceData(offset, count, data);
  193. }
  194. catch(...)
  195. {
  196. return E_FAIL;
  197. }
  198. return S_OK;
  199. }
  200. };
  201. #endif // ___ixmldomcharacterdataimpl_h___