xref: /AOO41X/main/sot/source/base/filelist.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_sot.hxx"
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include<tools/list.hxx>
32*cdf0e10cSrcweir #include<tools/stream.hxx>
33*cdf0e10cSrcweir #include<tools/string.hxx>
34*cdf0e10cSrcweir #include<tools/rtti.hxx>
35*cdf0e10cSrcweir #include<sot/exchange.hxx>
36*cdf0e10cSrcweir #include<sot/filelist.hxx>
37*cdf0e10cSrcweir #include <osl/thread.h>
38*cdf0e10cSrcweir 
39*cdf0e10cSrcweir TYPEINIT1_AUTOFACTORY( FileList, SvDataCopyStream );
40*cdf0e10cSrcweir 
41*cdf0e10cSrcweir // String-Liste zum Speichern der Namen deklarieren
42*cdf0e10cSrcweir DECLARE_LIST( FileStringList, String* )
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir 
45*cdf0e10cSrcweir /*************************************************************************
46*cdf0e10cSrcweir |*
47*cdf0e10cSrcweir |*    FileList - Ctor/Dtor
48*cdf0e10cSrcweir |*
49*cdf0e10cSrcweir \*************************************************************************/
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir FileList::FileList()
52*cdf0e10cSrcweir {
53*cdf0e10cSrcweir 	pStrList = new FileStringList();
54*cdf0e10cSrcweir }
55*cdf0e10cSrcweir 
56*cdf0e10cSrcweir FileList::~FileList()
57*cdf0e10cSrcweir {
58*cdf0e10cSrcweir 	ClearAll();
59*cdf0e10cSrcweir }
60*cdf0e10cSrcweir 
61*cdf0e10cSrcweir void FileList::ClearAll( void )
62*cdf0e10cSrcweir {
63*cdf0e10cSrcweir 	// Strings in der Liste loeschen
64*cdf0e10cSrcweir 	sal_uLong nCount = pStrList->Count();
65*cdf0e10cSrcweir 	for( sal_uLong i = 0 ; i < nCount ; i++ )
66*cdf0e10cSrcweir 		delete pStrList->GetObject( i );
67*cdf0e10cSrcweir 
68*cdf0e10cSrcweir 	// Liste loeschen
69*cdf0e10cSrcweir 	delete pStrList;
70*cdf0e10cSrcweir }
71*cdf0e10cSrcweir 
72*cdf0e10cSrcweir /*************************************************************************
73*cdf0e10cSrcweir |*
74*cdf0e10cSrcweir |*    FileList - Zuweisungsoperator
75*cdf0e10cSrcweir |*
76*cdf0e10cSrcweir \*************************************************************************/
77*cdf0e10cSrcweir 
78*cdf0e10cSrcweir FileList& FileList::operator=( const FileList& rFileList )
79*cdf0e10cSrcweir {
80*cdf0e10cSrcweir 	// Liste duplizieren
81*cdf0e10cSrcweir 	*pStrList = *rFileList.pStrList;
82*cdf0e10cSrcweir 
83*cdf0e10cSrcweir 	// Strings in der Liste kopieren
84*cdf0e10cSrcweir 	sal_uLong nCount = pStrList->Count();
85*cdf0e10cSrcweir 	for( sal_uLong i = 0 ; i < nCount ; i++ )
86*cdf0e10cSrcweir 		pStrList->Replace( new String( *rFileList.pStrList->GetObject( i ) ), i );
87*cdf0e10cSrcweir 
88*cdf0e10cSrcweir 	return *this;
89*cdf0e10cSrcweir }
90*cdf0e10cSrcweir 
91*cdf0e10cSrcweir /*************************************************************************
92*cdf0e10cSrcweir |*
93*cdf0e10cSrcweir |*    FileList::GetFormatName()
94*cdf0e10cSrcweir |*
95*cdf0e10cSrcweir \*************************************************************************/
96*cdf0e10cSrcweir 
97*cdf0e10cSrcweir sal_uLong FileList::GetFormat()
98*cdf0e10cSrcweir {
99*cdf0e10cSrcweir 	return FORMAT_FILE_LIST;
100*cdf0e10cSrcweir }
101*cdf0e10cSrcweir 
102*cdf0e10cSrcweir /******************************************************************************
103*cdf0e10cSrcweir |*
104*cdf0e10cSrcweir |*	virtuelle SvData-Methoden
105*cdf0e10cSrcweir |*
106*cdf0e10cSrcweir \******************************************************************************/
107*cdf0e10cSrcweir 
108*cdf0e10cSrcweir void FileList::Load( SvStream& rIStm )
109*cdf0e10cSrcweir {
110*cdf0e10cSrcweir     rIStm >> *this;
111*cdf0e10cSrcweir }
112*cdf0e10cSrcweir 
113*cdf0e10cSrcweir void FileList::Save( SvStream& rOStm )
114*cdf0e10cSrcweir {
115*cdf0e10cSrcweir     rOStm << *this;
116*cdf0e10cSrcweir }
117*cdf0e10cSrcweir 
118*cdf0e10cSrcweir void FileList::Assign( const SvDataCopyStream& rCopyStream )
119*cdf0e10cSrcweir {
120*cdf0e10cSrcweir     *this = (const FileList&)rCopyStream;
121*cdf0e10cSrcweir }
122*cdf0e10cSrcweir 
123*cdf0e10cSrcweir /******************************************************************************
124*cdf0e10cSrcweir |*
125*cdf0e10cSrcweir |*	Stream-Operatoren
126*cdf0e10cSrcweir |*
127*cdf0e10cSrcweir \******************************************************************************/
128*cdf0e10cSrcweir 
129*cdf0e10cSrcweir /*
130*cdf0e10cSrcweir  * NOTE: to correctly handle this Protocol with Unicode, native Win32 must be called:
131*cdf0e10cSrcweir  * e.g. DropQueryFile
132*cdf0e10cSrcweir  */
133*cdf0e10cSrcweir 
134*cdf0e10cSrcweir SvStream& operator<<( SvStream& rOStm, const FileList& /*rFileList*/ )
135*cdf0e10cSrcweir {
136*cdf0e10cSrcweir     OSL_ENSURE(false, "Not implemented!");
137*cdf0e10cSrcweir 	return rOStm;
138*cdf0e10cSrcweir }
139*cdf0e10cSrcweir 
140*cdf0e10cSrcweir /* #i28176#
141*cdf0e10cSrcweir    The Windows clipboard bridge now provides a double '\0'
142*cdf0e10cSrcweir    terminated list of file names for format SOT_FORMAT_FILE_LIST
143*cdf0e10cSrcweir    instead of the original Windows Sv_DROPFILES structure. All strings
144*cdf0e10cSrcweir    in this list are UTF16 strings. Shell link files will be already
145*cdf0e10cSrcweir    resolved by the Windows clipboard bridge.*/
146*cdf0e10cSrcweir SvStream& operator>>( SvStream& rIStm, FileList& rFileList )
147*cdf0e10cSrcweir {
148*cdf0e10cSrcweir     rFileList.ClearAll();
149*cdf0e10cSrcweir 	rFileList.pStrList = new FileStringList();
150*cdf0e10cSrcweir 
151*cdf0e10cSrcweir 	String aStr;
152*cdf0e10cSrcweir 	sal_uInt16 c;
153*cdf0e10cSrcweir 
154*cdf0e10cSrcweir     while (!rIStm.IsEof())
155*cdf0e10cSrcweir 	{
156*cdf0e10cSrcweir 		aStr.Erase();
157*cdf0e10cSrcweir 
158*cdf0e10cSrcweir 		// read first character of filepath; c==0 > reach end of stream
159*cdf0e10cSrcweir 		rIStm >> c;
160*cdf0e10cSrcweir 		if (!c)
161*cdf0e10cSrcweir 			break;
162*cdf0e10cSrcweir 
163*cdf0e10cSrcweir 		// read string till c==0
164*cdf0e10cSrcweir 		while (c && !rIStm.IsEof())
165*cdf0e10cSrcweir 		{
166*cdf0e10cSrcweir 			aStr += (sal_Unicode)c;
167*cdf0e10cSrcweir 			rIStm >> c;
168*cdf0e10cSrcweir 		}
169*cdf0e10cSrcweir 
170*cdf0e10cSrcweir 		// append the filepath
171*cdf0e10cSrcweir 		rFileList.AppendFile(aStr);
172*cdf0e10cSrcweir 	}
173*cdf0e10cSrcweir 	return rIStm;
174*cdf0e10cSrcweir }
175*cdf0e10cSrcweir 
176*cdf0e10cSrcweir /******************************************************************************
177*cdf0e10cSrcweir |*
178*cdf0e10cSrcweir |*	Liste fuellen/abfragen
179*cdf0e10cSrcweir |*
180*cdf0e10cSrcweir \******************************************************************************/
181*cdf0e10cSrcweir 
182*cdf0e10cSrcweir void FileList::AppendFile( const String& rStr )
183*cdf0e10cSrcweir {
184*cdf0e10cSrcweir 	pStrList->Insert( new String( rStr ) , pStrList->Count() );
185*cdf0e10cSrcweir }
186*cdf0e10cSrcweir 
187*cdf0e10cSrcweir String FileList::GetFile( sal_uLong i ) const
188*cdf0e10cSrcweir {
189*cdf0e10cSrcweir 	String aStr;
190*cdf0e10cSrcweir 	if( i < pStrList->Count() )
191*cdf0e10cSrcweir 		aStr = *pStrList->GetObject( i );
192*cdf0e10cSrcweir 	return aStr;
193*cdf0e10cSrcweir }
194*cdf0e10cSrcweir 
195*cdf0e10cSrcweir sal_uLong FileList::Count( void ) const
196*cdf0e10cSrcweir {
197*cdf0e10cSrcweir 	return pStrList->Count();
198*cdf0e10cSrcweir }
199*cdf0e10cSrcweir 
200