IXMLDOMCharacterDataImpl.h
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:6k
源码类别:

词法分析

开发平台:

Visual 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.2  2003/03/14 12:44:49  tng
  59.  * [Bug 17147] C++ namespace breaks build of XercesCOM DLL
  60.  *
  61.  * Revision 1.1.1.1  2002/02/01 22:21:39  peiyongz
  62.  * sane_include
  63.  *
  64.  * Revision 1.3  2000/07/07 00:12:51  jpolast
  65.  * bug fixes for non-null terminated strings
  66.  *
  67.  * Revision 1.2  2000/03/30 02:00:13  abagchi
  68.  * Initial checkin of working code with Copyright Notice
  69.  *
  70.  */
  71. #ifndef ___ixmldomcharacterdataimpl_h___
  72. #define ___ixmldomcharacterdataimpl_h___
  73. #include "IXMLDOMNodeImpl.h"
  74. XERCES_CPP_NAMESPACE_USE
  75. template <class T, const IID* piid, const GUID* plibid = &CComModule::m_libid, WORD wMajor = 1,
  76. WORD wMinor = 0, class tihclass = CComTypeInfoHolder>
  77. class ATL_NO_VTABLE IXMLDOMCharacterDataImpl: public IXMLDOMNodeImpl<T,piid,plibid,wMajor,wMinor,tihclass>
  78. {
  79. private:
  80. XMLCh* DOMStringToXMLCh(DOMString str)
  81. {
  82. XMLCh* cdata = new XMLCh[str.length()+1];
  83. for (unsigned int i=0; i < str.length(); i++)
  84. cdata[i] = str.charAt(i);
  85. cdata[str.length()] = 0;
  86. return cdata;
  87. }
  88. public:
  89. virtual DOM_CharacterData& get_DOM_CharacterData() = 0; 
  90. virtual DOM_Node& get_DOM_Node() { return get_DOM_CharacterData(); } 
  91. // IXMLDOMCharacterData 
  92. STDMETHOD(get_data)(BSTR  *pVal)
  93. {
  94. ATLTRACE(_T("IXMLDOMCharacterDataImpl::get_datan"));
  95. if (NULL == pVal)
  96. return E_POINTER;
  97. *pVal = NULL;
  98. try
  99. {
  100. //*pVal = SysAllocString(get_DOM_CharacterData().getData().rawBuffer());
  101. *pVal = SysAllocString(DOMStringToXMLCh(get_DOM_CharacterData().getData()));
  102. }
  103. catch(...)
  104. {
  105. return E_FAIL;
  106. }
  107. return S_OK;
  108. }
  109. STDMETHOD(put_data)(BSTR newVal)
  110. {
  111. ATLTRACE(_T("IXMLDOMCharacterDataImpl::put_datan"));
  112. try
  113. {
  114. get_DOM_CharacterData().setData(newVal);
  115. }
  116. catch(...)
  117. {
  118. return E_FAIL;
  119. }
  120. return S_OK;
  121. }
  122. STDMETHOD(get_length)(long  *pVal)
  123. {
  124. ATLTRACE(_T("IXMLDOMCharacterDataImpl::get_lengthn"));
  125. if (NULL == pVal)
  126. return E_POINTER;
  127. *pVal = 0;
  128. try
  129. {
  130. *pVal = get_DOM_CharacterData().getLength();
  131. }
  132. catch(...)
  133. {
  134. return E_FAIL;
  135. }
  136. return S_OK;
  137. }
  138. STDMETHOD(substringData)(long offset, long count, BSTR  *data)
  139. {
  140. ATLTRACE(_T("IXMLDOMCharacterDataImpl::substringDatan"));
  141. if (NULL == data)
  142. return E_POINTER;
  143. *data = NULL;
  144. try
  145. {
  146. // need to copy the string to a new buffer since DOMString doesn't null terminate the substring.
  147. *data = SysAllocString(DOMStringToXMLCh(get_DOM_CharacterData().substringData(offset, count)));
  148. }
  149. catch(...)
  150. {
  151. return E_FAIL;
  152. }
  153. return S_OK;
  154. }
  155. STDMETHOD(appendData)(BSTR data)
  156. {
  157. ATLTRACE(_T("IXMLDOMCharacterDataImpl::appendDatan"));
  158. try
  159. {
  160. get_DOM_CharacterData().appendData(data);
  161. }
  162. catch(...)
  163. {
  164. return E_FAIL;
  165. }
  166. return S_OK;
  167. }
  168. STDMETHOD(insertData)(long offset, BSTR data)
  169. {
  170. ATLTRACE(_T("IXMLDOMCharacterDataImpl::insertDatan"));
  171. try
  172. {
  173. get_DOM_CharacterData().insertData(offset, data);
  174. }
  175. catch(...)
  176. {
  177. return E_FAIL;
  178. }
  179. return S_OK;
  180. }
  181. STDMETHOD(deleteData)(long offset, long count)
  182. {
  183. ATLTRACE(_T("IXMLDOMCharacterDataImpl::deleteDatan"));
  184. try
  185. {
  186. get_DOM_CharacterData().deleteData(offset, count);
  187. }
  188. catch(...)
  189. {
  190. return E_FAIL;
  191. }
  192. return S_OK;
  193. }
  194. STDMETHOD(replaceData)(long offset, long count, BSTR data)
  195. {
  196. ATLTRACE(_T("IXMLDOMCharacterDataImpl::replaceDatan"));
  197. try
  198. {
  199. get_DOM_CharacterData().replaceData(offset, count, data);
  200. }
  201. catch(...)
  202. {
  203. return E_FAIL;
  204. }
  205. return S_OK;
  206. }
  207. };
  208. #endif // ___ixmldomcharacterdataimpl_h___