Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #define CSV_USE_CSV_ASSERTIONS
21 : #include <cosv/csv_env.hxx>
22 :
23 : #include <cosv/comfunc.hxx>
24 : #include <cosv/string.hxx>
25 : #include <cosv/streamstr.hxx>
26 : #include <cosv/std_outp.hxx>
27 : #include <cosv/tpl/dyn.hxx>
28 : #include <cosv/ploc_dir.hxx>
29 :
30 : // NOT FULLY DECLARED SERVICES
31 : #include <cosv/ploc.hxx>
32 :
33 :
34 : namespace csv
35 : {
36 : namespace ploc
37 : {
38 :
39 1 : Directory::Directory()
40 : {
41 1 : }
42 :
43 122 : Directory::Directory( const Path & i_rPath )
44 122 : : aPath(i_rPath)
45 : // sPath
46 : {
47 122 : }
48 :
49 0 : Directory::Directory( const Directory & i_rDir )
50 0 : : Persistent(), aPath(i_rDir.aPath)
51 : // sPath
52 : {
53 0 : }
54 :
55 119 : Directory::Directory( const char * i_rLocation )
56 119 : : aPath(i_rLocation, true)
57 : {
58 119 : }
59 :
60 242 : Directory::~Directory()
61 : {
62 242 : }
63 :
64 : Directory &
65 0 : Directory::operator+=( const String & i_sName )
66 : {
67 0 : InvalidatePath();
68 0 : aPath.DirChain() += i_sName;
69 0 : return *this;
70 : }
71 :
72 : Directory &
73 0 : Directory::operator+=( const DirectoryChain & i_sDirChain )
74 : {
75 0 : InvalidatePath();
76 0 : aPath.DirChain() += i_sDirChain;
77 0 : return *this;
78 : }
79 :
80 : Directory &
81 0 : Directory::operator-=( uintt i_nLevels )
82 : {
83 0 : InvalidatePath();
84 0 : aPath.DirChain().PopBack(i_nLevels);
85 0 : return *this;
86 : }
87 :
88 : bool
89 119 : Directory::PhysicalCreate( bool i_bCreateParentsIfNecessary ) const
90 : {
91 119 : bool ret = PhysicalCreate_Dir( StrPath() );
92 119 : if ( ret OR NOT i_bCreateParentsIfNecessary )
93 119 : return ret;
94 :
95 0 : ret = Check_Parent();
96 0 : if (ret)
97 0 : ret = PhysicalCreate_Dir( StrPath() );
98 0 : return ret;
99 : }
100 :
101 : bool
102 0 : Directory::Check_Parent() const
103 : {
104 : // There is no parent of root directories:
105 0 : if ( aPath.DirChain().Size() == 0 )
106 0 : return false;
107 :
108 : // Become my own parent:
109 0 : String sLastToken = aPath.DirChain().Back();
110 0 : const_cast< Directory* >(this)->operator-=(1);
111 :
112 : // Begin behaving as parent:
113 0 : bool ret = Exists();
114 0 : if (NOT ret)
115 : {
116 0 : ret = Check_Parent();
117 0 : if (ret)
118 0 : ret = PhysicalCreate_Dir( StrPath() );
119 : }
120 : // End behaving as parent.
121 :
122 : // Become myself again:
123 0 : const_cast< Directory* >(this)->operator+=(sLastToken);
124 0 : return ret;
125 : }
126 :
127 : } // namespace ploc
128 : } // namespace csv
129 :
130 :
131 : #ifdef WNT
132 : #include <direct.h>
133 : #include <io.h>
134 :
135 : namespace csv
136 : {
137 : namespace ploc
138 : {
139 :
140 : bool
141 : Directory::PhysicalCreate_Dir( const char * i_sStr ) const
142 : {
143 : return mkdir( i_sStr ) == 0;
144 : }
145 :
146 : void
147 : Directory::GetContainedDirectories( StringVector & o_rResult ) const
148 : {
149 : const char * c_sANYDIR = "\\*.*";
150 : String sNew;
151 :
152 : StreamStr sFilter(200);
153 : sFilter << StrPath()
154 : << c_sANYDIR;
155 :
156 : struct _finddata_t
157 : aEntry;
158 : long hFile = _findfirst( sFilter.c_str(), &aEntry );
159 :
160 : for ( int bFindMore = (hFile == -1 ? 1 : 0);
161 : bFindMore == 0;
162 : bFindMore = _findnext( hFile, &aEntry ) )
163 : {
164 : if ( (aEntry.attrib & _A_SUBDIR) AND *aEntry.name != '.' )
165 : {
166 : sNew = aEntry.name;
167 : o_rResult.push_back( sNew );
168 : }
169 : } // end for
170 : _findclose(hFile);
171 : }
172 :
173 : void
174 : Directory::GetContainedFiles( StringVector & o_rResult,
175 : const char * i_sFilter,
176 : E_Recursivity i_eRecursivity ) const
177 : {
178 : StreamStr sNew(240);
179 : sNew << aPath;
180 : StreamStr::size_type
181 : nStartFilename = sNew.tellp();
182 :
183 : StreamStr sFilter(200);
184 : sFilter << StrPath()
185 : << "\\"
186 : << i_sFilter;
187 :
188 : struct _finddata_t
189 : aEntry;
190 : long hFile = _findfirst( sFilter.c_str(), &aEntry );
191 : for ( int bFindMore = (hFile == -1 ? 1 : 0);
192 : bFindMore == 0;
193 : bFindMore = _findnext( hFile, &aEntry ) )
194 : {
195 : sNew.seekp(nStartFilename);
196 : sNew << aEntry.name;
197 : String sNewAsString( sNew.c_str() );
198 : o_rResult.push_back(sNewAsString);
199 : } // end for
200 :
201 : _findclose(hFile);
202 : if ( i_eRecursivity == flat )
203 : return;
204 :
205 : // gathering from subdirectories:
206 : StringVector aSubDirectories;
207 : GetContainedDirectories( aSubDirectories );
208 :
209 : StringVector::const_iterator dEnd = aSubDirectories.end();
210 : for ( StringVector::const_iterator d = aSubDirectories.begin();
211 : d != dEnd;
212 : ++d )
213 : {
214 : Directory aSub(*this);
215 : aSub += *d;
216 : aSub.GetContainedFiles( o_rResult,
217 : i_sFilter,
218 : i_eRecursivity );
219 : }
220 : }
221 :
222 : } // namespace ploc
223 : } // namespace csv
224 :
225 :
226 : #elif defined(UNX)
227 : #include <sys/types.h>
228 : #include <sys/stat.h>
229 : #include <dirent.h>
230 :
231 : namespace csv
232 : {
233 : namespace ploc
234 : {
235 :
236 : bool
237 119 : Directory::PhysicalCreate_Dir( const char * i_sStr ) const
238 : {
239 119 : return mkdir( i_sStr, 00777 ) == 0;
240 : }
241 :
242 : void
243 119 : Directory::GetContainedDirectories( StringVector & o_rResult ) const
244 : {
245 119 : StreamStr sNew(240);
246 119 : sNew << aPath;
247 : StreamStr::size_type
248 119 : nStartFilename = sNew.tellp();
249 :
250 119 : DIR * pDir = opendir( StrPath() );
251 119 : dirent * pEntry = 0;
252 : struct stat aEntryStatus;
253 :
254 4731 : while ( (pEntry = readdir(pDir)) != 0 )
255 : {
256 4493 : sNew.seekp(nStartFilename);
257 4493 : sNew << pEntry->d_name;
258 :
259 4493 : stat(sNew.c_str(), &aEntryStatus);
260 4493 : if ( (aEntryStatus.st_mode & S_IFDIR) == S_IFDIR
261 : AND *pEntry->d_name != '.' )
262 : {
263 118 : String sNew2(pEntry->d_name);
264 118 : o_rResult.push_back(sNew2);
265 : } // endif (aEntry.attrib == _A_SUBDIR)
266 : } // end while
267 119 : closedir( pDir );
268 119 : }
269 :
270 : void
271 119 : Directory::GetContainedFiles( StringVector & o_rResult,
272 : const char * i_sFilter,
273 : E_Recursivity i_eRecursivity ) const
274 : {
275 119 : StreamStr sNew(240);
276 119 : sNew << aPath;
277 : StreamStr::size_type
278 119 : nStartFilename = sNew.tellp();
279 :
280 119 : bool bUseFilter = strcmp( i_sFilter, "*.*" ) != 0
281 119 : AND strncmp( i_sFilter, "*.", 2) == 0;
282 :
283 119 : DIR * pDir = opendir( StrPath() );
284 119 : dirent * pEntry = 0;
285 : struct stat aEntryStatus;
286 :
287 4731 : while ( (pEntry = readdir(pDir)) != 0 )
288 : {
289 4493 : sNew.seekp(nStartFilename);
290 4493 : sNew << pEntry->d_name;
291 :
292 4493 : stat(sNew.c_str(), &aEntryStatus);
293 4493 : if ( (aEntryStatus.st_mode & S_IFDIR) == S_IFDIR )
294 356 : continue; // Don't gather directories.
295 :
296 4137 : if ( bUseFilter )
297 : {
298 4137 : const char * pEnding = strrchr(pEntry->d_name,'.');
299 4137 : if (pEnding == 0)
300 0 : continue;
301 4137 : if ( strcasecmp( pEnding + 1, i_sFilter + 2 ) != 0 )
302 0 : continue;
303 : }
304 :
305 4137 : sNew.seekp(nStartFilename);
306 4137 : sNew << pEntry->d_name;
307 4137 : String sNewAsString( sNew.c_str() );
308 4137 : o_rResult.push_back(sNewAsString);
309 4137 : } // end while
310 :
311 119 : closedir( pDir );
312 119 : if ( i_eRecursivity == flat )
313 119 : return;
314 :
315 : // gathering from subdirectories:
316 0 : StringVector aSubDirectories;
317 0 : GetContainedDirectories( aSubDirectories );
318 :
319 0 : StringVector::const_iterator dEnd = aSubDirectories.end();
320 0 : for ( StringVector::const_iterator d = aSubDirectories.begin();
321 : d != dEnd;
322 : ++d )
323 : {
324 0 : Directory aSub(*this);
325 0 : aSub += *d;
326 : aSub.GetContainedFiles( o_rResult,
327 : i_sFilter,
328 0 : i_eRecursivity );
329 0 : }
330 : }
331 :
332 : } // namespace ploc
333 : } // namespace csv
334 :
335 :
336 : #else
337 : #error For using csv::ploc there has to be defined: WNT or UNX.
338 : #endif
339 :
340 :
341 : namespace csv
342 : {
343 : namespace ploc
344 : {
345 :
346 : const Path &
347 483 : Directory::inq_MyPath() const
348 : {
349 483 : return aPath;
350 : }
351 :
352 :
353 :
354 : } // namespace ploc
355 3 : } // namespace csv
356 :
357 :
358 :
359 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|