summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-01-28 11:47:53 +0000
committerKurt Zenker <kz@openoffice.org>2004-01-28 11:47:53 +0000
commitcacf63e44f7b3a6154044cf3aa909c82892721b2 (patch)
tree7d58c8a8c5599bf44bcb5f8797b4598d785254c9 /comphelper
parent9f0afd7c0814edf2b9935e52692797d7537ff052 (diff)
INTEGRATION: CWS filtercfg (1.1.2); FILE ADDED
2003/11/04 10:45:07 as 1.1.2.2: #102620# handle empty Any more gracefully 2003/11/04 08:09:38 as 1.1.2.1: #102620# split sequenceadapter into different files
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/sequenceashashmap.cxx294
1 files changed, 294 insertions, 0 deletions
diff --git a/comphelper/source/misc/sequenceashashmap.cxx b/comphelper/source/misc/sequenceashashmap.cxx
new file mode 100644
index 000000000000..ff42e0efb746
--- /dev/null
+++ b/comphelper/source/misc/sequenceashashmap.cxx
@@ -0,0 +1,294 @@
+/*************************************************************************
+ *
+ * $RCSfile: sequenceashashmap.cxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: kz $ $Date: 2004-01-28 12:47:53 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (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.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+//_______________________________________________
+// includes
+
+#ifndef _COMPHELPER_SEQUENCEASHASHMAP_HXX_
+#include <comphelper/sequenceashashmap.hxx>
+#endif
+
+//_______________________________________________
+// namespace
+
+namespace comphelper{
+
+namespace css = ::com::sun::star;
+
+//_______________________________________________
+// definitions
+
+/*-----------------------------------------------
+ 04.11.2003 09:29
+-----------------------------------------------*/
+SequenceAsHashMap::SequenceAsHashMap()
+ : SequenceAsHashMapBase()
+{
+}
+
+/*-----------------------------------------------
+ 04.11.2003 08:30
+-----------------------------------------------*/
+SequenceAsHashMap::SequenceAsHashMap(const css::uno::Any& aSource)
+{
+ (*this) << aSource;
+}
+
+/*-----------------------------------------------
+ 04.11.2003 08:30
+-----------------------------------------------*/
+SequenceAsHashMap::SequenceAsHashMap(const css::uno::Sequence< css::beans::PropertyValue >& lSource)
+{
+ (*this) << lSource;
+}
+
+/*-----------------------------------------------
+ 04.11.2003 08:30
+-----------------------------------------------*/
+SequenceAsHashMap::SequenceAsHashMap(const css::uno::Sequence< css::beans::NamedValue >& lSource)
+{
+ (*this) << lSource;
+}
+
+/*-----------------------------------------------
+ 04.11.2003 09:04
+-----------------------------------------------*/
+SequenceAsHashMap::~SequenceAsHashMap()
+{
+}
+
+/*-----------------------------------------------
+ 04.11.2003 10:21
+-----------------------------------------------*/
+void SequenceAsHashMap::operator<<(const css::uno::Any& aSource)
+{
+ // An empty Any reset this instance!
+ if (!aSource.hasValue())
+ {
+ clear();
+ return;
+ }
+
+ css::uno::Sequence< css::beans::NamedValue > lN;
+ if (aSource >>= lN)
+ {
+ (*this) << lN;
+ return;
+ }
+
+ css::uno::Sequence< css::beans::PropertyValue > lP;
+ if (aSource >>= lP)
+ {
+ (*this) << lP;
+ return;
+ }
+
+ throw css::beans::IllegalTypeException(
+ ::rtl::OUString::createFromAscii("Any contains wrong type."),
+ css::uno::Reference< css::uno::XInterface >());
+}
+
+/*-----------------------------------------------
+ 04.11.2003 08:30
+-----------------------------------------------*/
+void SequenceAsHashMap::operator<<(const css::uno::Sequence< css::beans::PropertyValue >& lSource)
+{
+ clear();
+
+ sal_Int32 c = lSource.getLength();
+ const css::beans::PropertyValue* pSource = lSource.getConstArray();
+
+ for (sal_Int32 i=0; i<c; ++i)
+ (*this)[pSource[i].Name] = pSource[i].Value;
+}
+
+/*-----------------------------------------------
+ 04.11.2003 08:30
+-----------------------------------------------*/
+void SequenceAsHashMap::operator<<(const css::uno::Sequence< css::beans::NamedValue >& lSource)
+{
+ clear();
+
+ sal_Int32 c = lSource.getLength();
+ const css::beans::NamedValue* pSource = lSource.getConstArray();
+
+ for (sal_Int32 i=0; i<c; ++i)
+ (*this)[pSource[i].Name] = pSource[i].Value;
+}
+
+/*-----------------------------------------------
+ 04.11.2003 08:30
+-----------------------------------------------*/
+void SequenceAsHashMap::operator>>(css::uno::Sequence< css::beans::PropertyValue >& lDestination) const
+{
+ sal_Int32 c = (sal_Int32)size();
+ lDestination.realloc(c);
+ css::beans::PropertyValue* pDestination = lDestination.getArray();
+
+ sal_Int32 i = 0;
+ for (const_iterator pThis = begin();
+ pThis != end() ;
+ ++pThis )
+ {
+ pDestination[i].Name = pThis->first ;
+ pDestination[i].Value = pThis->second;
+ ++i;
+ }
+}
+
+/*-----------------------------------------------
+ 04.11.2003 08:30
+-----------------------------------------------*/
+void SequenceAsHashMap::operator>>(css::uno::Sequence< css::beans::NamedValue >& lDestination) const
+{
+ sal_Int32 c = (sal_Int32)size();
+ lDestination.realloc(c);
+ css::beans::NamedValue* pDestination = lDestination.getArray();
+
+ sal_Int32 i = 0;
+ for (const_iterator pThis = begin();
+ pThis != end() ;
+ ++pThis )
+ {
+ pDestination[i].Name = pThis->first ;
+ pDestination[i].Value = pThis->second;
+ ++i;
+ }
+}
+
+/*-----------------------------------------------
+ 04.11.2003 08:30
+-----------------------------------------------*/
+const css::uno::Sequence< css::beans::NamedValue > SequenceAsHashMap::getAsConstNamedValueList() const
+{
+ css::uno::Sequence< css::beans::NamedValue > lReturn;
+ (*this) >> lReturn;
+ return lReturn;
+}
+
+/*-----------------------------------------------
+ 04.11.2003 08:30
+-----------------------------------------------*/
+const css::uno::Sequence< css::beans::PropertyValue > SequenceAsHashMap::getAsConstPropertyValueList() const
+{
+ css::uno::Sequence< css::beans::PropertyValue > lReturn;
+ (*this) >> lReturn;
+ return lReturn;
+}
+
+/*-----------------------------------------------
+ 04.11.2003 08:30
+-----------------------------------------------*/
+#if OSL_DEBUG_LEVEL > 1
+void SequenceAsHashMap::dbg_dumpToFile(const char* pFileName,
+ const char* pComment ) const
+{
+ if (!pFileName || !pComment)
+ return;
+
+ FILE* pFile = fopen(pFileName, "a");
+ if (!pFile)
+ return;
+
+ ::rtl::OUStringBuffer sBuffer(1000);
+ sBuffer.appendAscii("\n----------------------------------------\n");
+ sBuffer.appendAscii(pComment );
+ sBuffer.appendAscii("\n----------------------------------------\n");
+ sal_Int32 i = 0;
+ for (const_iterator pIt = begin();
+ pIt != end() ;
+ ++pIt )
+ {
+ sBuffer.appendAscii("[" );
+ sBuffer.append (i++ );
+ sBuffer.appendAscii("] " );
+ sBuffer.appendAscii("\"" );
+ sBuffer.append (pIt->first);
+ sBuffer.appendAscii("\" = \"" );
+
+ ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > xv;
+ ::rtl::OUString sv;
+ sal_Int32 nv;
+ sal_Bool bv;
+
+ if (pIt->second >>= sv)
+ sBuffer.append(sv);
+ else
+ if (pIt->second >>= nv)
+ sBuffer.append(nv);
+ else
+ if (pIt->second >>= bv)
+ sBuffer.appendAscii(bv ? "true" : "false");
+ else
+ if (pIt->second >>= xv)
+ sBuffer.appendAscii(xv.is() ? "object" : "null");
+ else
+ sBuffer.appendAscii("???");
+
+ sBuffer.appendAscii("\"\n");
+ }
+
+ fprintf(pFile, ::rtl::OUStringToOString(sBuffer.makeStringAndClear(), RTL_TEXTENCODING_UTF8).getStr());
+ fclose(pFile);
+}
+#endif // OSL_DEBUG_LEVEL > 1
+
+} // namespace comphelper