summaryrefslogtreecommitdiff
path: root/ucbhelper/source/client/fileidentifierconverter.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sb@openoffice.org>2000-10-18 09:03:11 +0000
committerStephan Bergmann <sb@openoffice.org>2000-10-18 09:03:11 +0000
commit21b46cd0e019f206187fba717f96cf4110fdbaa8 (patch)
treeceee249b6f1128e47c1ecdb2da85f97900776e1c /ucbhelper/source/client/fileidentifierconverter.cxx
parent77a1225b55bdb2dd07a08c85f1a08b81e022d988 (diff)
Offer com::sun::star::ucb::XFileIdentifierConverter functionality at a
com::sun::star::ucb::XContentProviderManager.
Diffstat (limited to 'ucbhelper/source/client/fileidentifierconverter.cxx')
-rw-r--r--ucbhelper/source/client/fileidentifierconverter.cxx161
1 files changed, 161 insertions, 0 deletions
diff --git a/ucbhelper/source/client/fileidentifierconverter.cxx b/ucbhelper/source/client/fileidentifierconverter.cxx
new file mode 100644
index 000000000000..fbb74747ac73
--- /dev/null
+++ b/ucbhelper/source/client/fileidentifierconverter.cxx
@@ -0,0 +1,161 @@
+/*************************************************************************
+ *
+ * $RCSfile: fileidentifierconverter.cxx,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: sb $ $Date: 2000-10-18 10:03:11 $
+ *
+ * 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): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef _UCBHELPER_FILEIDENTIFIERCONVERTER_HXX_
+#include <ucbhelper/fileidentifierconverter.hxx>
+#endif
+
+#ifndef _COM_SUN_STAR_UCB_CONTENTPROVIDERINFO_HPP_
+#include <com/sun/star/ucb/ContentProviderInfo.hpp>
+#endif
+#ifndef _COM_SUN_STAR_UCB_XCONTENTPROVIDERMANAGER_HPP_
+#include <com/sun/star/ucb/XContentProviderManager.hpp>
+#endif
+#ifndef _COM_SUN_STAR_UCB_XFILEIDENTIFIERCONVERTER_HPP_
+#include <com/sun/star/ucb/XFileIdentifierConverter.hpp>
+#endif
+#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
+#include <com/sun/star/uno/Reference.hxx>
+#endif
+#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
+#include <com/sun/star/uno/Sequence.hxx>
+#endif
+#ifndef _RTL_USTRING_HXX_
+#include <rtl/ustring.hxx>
+#endif
+#ifndef _SAL_TYPES_H_
+#include <sal/types.h>
+#endif
+#ifndef _VOS_DIAGNOSE_H_
+#include <vos/diagnose.hxx>
+#endif
+
+using namespace com::sun;
+using namespace com::sun::star;
+
+//============================================================================
+//
+// getFileURLFromNormalizedPath
+//
+//============================================================================
+
+namespace ucb {
+
+rtl::OUString
+getFileURLFromNormalizedPath(
+ uno::Reference< star::ucb::XContentProviderManager > const & rManager,
+ rtl::OUString const & rHostName,
+ rtl::OUString const & rNormalizedPath)
+{
+ VOS_ASSERT(rManager.is());
+
+ uno::Sequence< star::ucb::ContentProviderInfo >
+ aProviders(rManager->queryContentProviders());
+ for (sal_Int32 i = 0; i < aProviders.getLength(); ++i)
+ {
+ uno::Reference< star::ucb::XFileIdentifierConverter >
+ xConverter(aProviders[i].ContentProvider, uno::UNO_QUERY);
+ if (xConverter.is())
+ {
+ rtl::OUString
+ aResult(xConverter->
+ getFileURLFromNormalizedPath(rHostName,
+ rNormalizedPath));
+ if (aResult.getLength() != 0)
+ return aResult;
+ }
+ }
+ return rtl::OUString();
+}
+
+//============================================================================
+//
+// getNormalizedPathFromFileURL
+//
+//============================================================================
+
+rtl::OUString
+getNormalizedPathFromFileURL(
+ uno::Reference< star::ucb::XContentProviderManager > const & rManager,
+ rtl::OUString const & rHostName,
+ rtl::OUString const & rURL)
+{
+ VOS_ASSERT(rManager.is());
+
+ uno::Sequence< star::ucb::ContentProviderInfo >
+ aProviders(rManager->queryContentProviders());
+ for (sal_Int32 i = 0; i < aProviders.getLength(); ++i)
+ {
+ uno::Reference< star::ucb::XFileIdentifierConverter >
+ xConverter(aProviders[i].ContentProvider, uno::UNO_QUERY);
+ if (xConverter.is())
+ {
+ rtl::OUString
+ aResult(xConverter->getNormalizedPathFromFileURL(rHostName,
+ rURL));
+ if (aResult.getLength() != 0)
+ return aResult;
+ }
+ }
+ return rtl::OUString();
+}
+
+}