summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ftp/ftpresultsetI.cxx
diff options
context:
space:
mode:
authorAndreas Bille <abi@openoffice.org>2002-07-31 14:13:44 +0000
committerAndreas Bille <abi@openoffice.org>2002-07-31 14:13:44 +0000
commit398ba30e1dae68404e47715f29bec2cd5f115213 (patch)
treeeaac38baa2305b3b1ef15f856a5efe680d6cde76 /ucb/source/ucp/ftp/ftpresultsetI.cxx
parentb7de4d0960e007dd578760c39f5bfbb9806851ef (diff)
Saving the code
Diffstat (limited to 'ucb/source/ucp/ftp/ftpresultsetI.cxx')
-rw-r--r--ucb/source/ucp/ftp/ftpresultsetI.cxx259
1 files changed, 259 insertions, 0 deletions
diff --git a/ucb/source/ucp/ftp/ftpresultsetI.cxx b/ucb/source/ucp/ftp/ftpresultsetI.cxx
new file mode 100644
index 000000000000..5c34f48a00e7
--- /dev/null
+++ b/ucb/source/ucp/ftp/ftpresultsetI.cxx
@@ -0,0 +1,259 @@
+/*************************************************************************
+ *
+ * $RCSfile: ftpresultsetI.cxx,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: abi $ $Date: 2002-07-31 15:13:29 $
+ *
+ * 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 _COM_SUN_STAR_UCB_COMMAND_HPP_
+#include <com/sun/star/ucb/Command.hpp>
+#endif
+#ifndef _COM_SUN_STAR_UCB_XCOMMANDENVIRONMENT_HPP_
+#include <com/sun/star/ucb/XCommandEnvironment.hpp>
+#endif
+#ifndef _COM_SUN_STAR_UCB_XCOMMANDPROCESSOR_HPP_
+#include <com/sun/star/ucb/XCommandProcessor.hpp>
+#endif
+#include <com/sun/star/sdbc/XRow.hpp>
+#include <ucbhelper/propertyvalueset.hxx>
+#include <vos/ref.hxx>
+#include "ftpresultsetI.hxx"
+
+
+
+using namespace std;
+using namespace ftp;
+using namespace com::sun::star;
+using namespace com::sun::star::ucb;
+using namespace com::sun::star::lang;
+using namespace com::sun::star::uno;
+using namespace com::sun::star::beans;
+using namespace com::sun::star::sdbc;
+
+
+ResultSetI::ResultSetI(const Reference< lang::XMultiServiceFactory >& xMSF,
+ const Reference< XContentProvider >& xProvider,
+ sal_Int32 nOpenMode,
+ const Sequence< beans::Property >& seqProp,
+ const Sequence< NumberedSortingInfo >& seqSort,
+ const std::vector<FTPDirentry>& dirvec)
+ : ResultSetBase(xMSF,xProvider,nOpenMode,seqProp,seqSort)
+{
+ for(unsigned i = 0; i < dirvec.size(); ++i)
+ m_aPath.push_back(dirvec[i].m_aURL);
+
+ // m_aIdents holds the contentidentifiers
+
+ m_aItems.resize( m_aPath.size() );
+ m_aIdents.resize( m_aPath.size() );
+
+ for(unsigned n = 0; n < m_aItems.size(); ++n) {
+ vos::ORef<::ucb::PropertyValueSet> xRow =
+ new ::ucb::PropertyValueSet(xMSF);
+
+ for(i = 0; i < seqProp.getLength(); ++i) {
+ const rtl::OUString& Name = seqProp[i].Name;
+ if(Name.compareToAscii("ContentType") == 0 )
+ xRow->appendString(seqProp[i],
+ rtl::OUString::createFromAscii(
+ "application/ftp" ));
+ else if(Name.compareToAscii("Title") == 0)
+ xRow->appendString(seqProp[i],dirvec[n].m_aName);
+ else if(Name.compareToAscii("IsReadOnly") == 0)
+ xRow->appendBoolean(seqProp[i],
+ sal_Bool(dirvec[n].m_nMode &
+ INETCOREFTP_FILEMODE_WRITE));
+ else if(Name.compareToAscii("IsDocument") == 0)
+ xRow->appendBoolean(seqProp[i],
+ ! sal_Bool(dirvec[n].m_nMode &
+ INETCOREFTP_FILEMODE_ISDIR));
+ else if(Name.compareToAscii("IsFolder") == 0)
+ xRow->appendBoolean(seqProp[i],
+ sal_Bool(dirvec[n].m_nMode &
+ INETCOREFTP_FILEMODE_ISDIR));
+ else if(Name.compareToAscii("Size") == 0)
+ xRow->appendLong(seqProp[i],
+ dirvec[n].m_nSize);
+ else if(Name.compareToAscii("DateCreated") == 0)
+ xRow->appendTimestamp(seqProp[i],
+ dirvec[n].m_aDate);
+ else
+ xRow->appendVoid(seqProp[i]);
+ }
+ m_aItems[n] = Reference<XRow>(xRow.getBodyPtr());
+ }
+
+// unsigned int i;
+// vector< vector< rtl::OUString > > queryList;
+
+// {
+// sal_Int32 idx;
+// rtl::OUString query = m_aURLParameter.get_query();
+// while( query.getLength() )
+// {
+// idx = query.indexOf( sal_Unicode( ' ' ) );
+// if( idx == -1 )
+// idx = query.getLength();
+
+// vector< rtl::OUString > currentQuery;
+// currentQuery.push_back( query.copy( 0,idx ) );
+// queryList.push_back( currentQuery );
+// query = query.copy( 1 + idx );
+// }
+// }
+
+// rtl::OUString scope = m_aURLParameter.get_scope();
+// StaticModuleInformation* inf =
+// m_pDatabases->getStaticInformationForModule( m_aURLParameter.get_module(),
+// m_aURLParameter.get_language() );
+
+// if( inf )
+// {
+// if( scope.compareToAscii( "Heading" ) == 0 )
+// scope = inf->get_heading();
+// else
+// scope = inf->get_fulltext();
+// }
+
+// sal_Int32 hitCount = m_aURLParameter.get_hitCount();
+
+// QueryResults* queryResults = 0;
+// QueryHitIterator* it = 0;
+// set< rtl::OUString > aSet,aCurrent,aResultSet;
+
+// try
+// {
+// rtl::OUString idxDir =
+// m_pDatabases->getInstallPathAsURL() +
+// m_pDatabases->lang( m_aURLParameter.get_language() ) +
+// rtl::OUString::createFromAscii( "/" ) +
+// m_aURLParameter.get_module() +
+// rtl::OUString::createFromAscii( ".idx/" );
+
+// for( i = 0; i < queryList.size(); ++i )
+// {
+// QueryProcessor queryProcessor(idxDir);
+// QueryStatement queryStatement(hitCount,queryList[i],scope);
+// queryResults = queryProcessor.processQuery( queryStatement );
+
+// it = 0;
+// if( queryResults )
+// it = queryResults->makeQueryHitIterator();
+
+// aSet.clear();
+// while( it && it->next() )
+// {
+// QueryHitData* qhd = it->getHit( 0 /*PrefixTranslator*/ );
+// if(qhd)
+// aSet.insert(qhd->getDocument());
+// }
+
+// delete it; // deletes also queryResults[i]
+
+// // intersect
+// if( i == 0 )
+// aResultSet = aSet;
+// else
+// {
+// aCurrent = aResultSet;
+// aResultSet.clear();
+// set_intersection( aSet.begin(),aSet.end(),
+// aCurrent.begin(),aCurrent.end(),
+// inserter(aResultSet,aResultSet.begin()));
+// }
+// }
+// }
+// catch( IOException )
+// {
+// }
+
+// sal_Int32 replIdx = rtl::OUString::createFromAscii( "#HLP#" ).getLength();
+// rtl::OUString replWith = rtl::OUString::createFromAscii( "vnd.sun.star.help://" );
+
+// set< rtl::OUString >::const_iterator set_it = aResultSet.begin();
+// while( set_it != aResultSet.end() )
+// {
+// m_aPath.push_back(replWith + set_it->copy(replIdx));
+// ++set_it;
+// }
+
+// m_aItems.resize( m_aPath.size() );
+// m_aIdents.resize( m_aPath.size() );
+
+// Command aCommand;
+// aCommand.Name = rtl::OUString::createFromAscii( "getPropertyValues" );
+// aCommand.Argument <<= m_sProperty;
+
+// for( m_nRow = 0; m_nRow < m_aPath.size(); ++m_nRow )
+// {
+// m_aPath[m_nRow] =
+// m_aPath[m_nRow] +
+// rtl::OUString::createFromAscii( "?Language=" ) +
+// m_aURLParameter.get_language() +
+// rtl::OUString::createFromAscii( "&System=" ) +
+// m_aURLParameter.get_system();
+
+// Reference< XContent > content = queryContent();
+// if( content.is() )
+// {
+// Reference< XCommandProcessor > cmd( content,UNO_QUERY );
+// if( ! ( cmd->execute( aCommand,0,Reference< XCommandEnvironment >( 0 ) ) >>= m_aItems[m_nRow] ) )
+// ;
+// }
+// }
+// m_nRow = -1;
+}