summaryrefslogtreecommitdiff
path: root/support/highlight/src/core/platform_fs.cpp
blob: 2719bf7a69bcc8fae3aaa74cf96246fcfca27986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339

/*
This file is part of Highlight.

Highlight is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Highlight 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 General Public License for more details.

You should have received a copy of the GNU General Public License
along with Highlight.  If not, see <http://www.gnu.org/licenses/>.
*/


#include "platform_fs.h"

// includes for recursive getFileNames() function
#ifdef _WIN32
#include <windows.h>
#else
#include <dirent.h>
#include <errno.h>
#include <sys/stat.h>
#ifdef __VMS
#include <unixlib.h>
#include <rms.h>
#include <ssdef.h>
#include <stsdef.h>
#include <lib$routines.h>
#include <starlet.h>
#endif /* __VMS */
#endif

#include <algorithm>
#include <iostream>
#include <errno.h>

using namespace std;

namespace Platform
{

#ifdef _WIN32
#include <windows.h>
	const char pathSeparator = '\\';
	std::string getAppPath()
	{
		char pathAndName[MAX_PATH], path[MAX_PATH], drive[3];
		GetModuleFileName ( NULL, ( wchar_t* ) pathAndName, MAX_PATH );
		_splitpath ( pathAndName, drive, path, 0, 0 );
		return std::string ( drive ) +path;
	}
#else
	const char pathSeparator = '/';

	std::string getAppPath()
	{
		return "";
	}
#endif

	bool getDirectoryEntries ( vector<string> &fileList,
	                           string wildcard,
	                           bool recursiveSearch )
	{
		if ( !wildcard.empty() )
		{
			string directory_path;
			string::size_type Pos = wildcard.find_last_of ( pathSeparator );
			if ( Pos == string::npos )
			{
				directory_path = ".";
			}
			else
			{
				directory_path = wildcard.substr ( 0, Pos + 1 );
				wildcard = wildcard.substr ( Pos + 1 );
			}

			/* old method using dirstream:
			dirstr::dirstream str( directory_path.c_str(),
			                          #ifdef USE_FN_MATCH
			                            dirstr::pred_f(FnMatcher(wildcard.c_str(), 0)),
			                          #else
			                            dirstr::pattern_f(wildcard.c_str()),
			                          #endif
			                          (recursiveSearch)?dirstr::recursive_yes:dirstr::recursive_no);
			for(string entry; str >> entry;) {
				fileList.push_back(dirstr::full_path(entry));
				//cerr << "1: "<<dirstr::full_path(entry)<<"\n";
			}
			*/

			// new method using getFileNames:
			getFileNames ( directory_path, wildcard, fileList );
		}
		return ! ( fileList.empty() );
	}


#ifdef _WIN32  // Windows specific

	/**
	 * WINDOWS function to resolve wildcards and recurse into sub directories.
	 * The fileName vector is filled with the path and names of files to process.
	 *
	 * @param directory		The path of the directory to be processed.
	 * @param wildcard		The wildcard to be processed (e.g. *.cpp).
	 * @param filenam		An empty vector which will be filled with the path and names of files to process.
	 */
	void getFileNames ( const string &directory,const string &wildcard, vector<string> &fileName )
	{
		vector<string> subDirectory;    // sub directories of directory
		WIN32_FIND_DATA FindFileData;   // for FindFirstFile and FindNextFile

		// Find the first file in the directory
		string firstFile = directory + "\\*";
		HANDLE hFind = FindFirstFile ( firstFile.c_str(), &FindFileData );

		if ( hFind == INVALID_HANDLE_VALUE )
			return;
		//error("Cannot open directory", directory.c_str());

		// save files and sub directories
		do
		{
			// skip hidden or read only
			if ( FindFileData.cFileName[0] == '.'
			        || ( FindFileData.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN )
			        || ( FindFileData.dwFileAttributes & FILE_ATTRIBUTE_READONLY ) )
				continue;

			// if a sub directory and recursive, save sub directory
			if ( ( FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY ) && true /*g_isRecursive*/ )
			{
				string subDirectoryPath = directory + pathSeparator + FindFileData.cFileName;
				//if (isPathExclued(subDirectoryPath))
				//{
				//	if (!g_isQuiet)
				//		cout << "exclude " << subDirectoryPath.substr(g_mainDirectoryLength) << endl;
				//}
				//else
				subDirectory.push_back ( subDirectoryPath );
				continue;
			}

			// save the file name
			string filePathName = directory + pathSeparator + FindFileData.cFileName;
			// check exclude before wildcmp to avoid "unmatched exclude" error
			//bool isExcluded = isPathExclued(filePathName);
			// save file name if wildcard match
			if ( wildcmp ( wildcard.c_str(), FindFileData.cFileName ) )
			{
				//if (isExcluded)
				//	cout << "exclude " << filePathName.substr(g_mainDirectoryLength) << endl;
				//else
				fileName.push_back ( filePathName );
			}
		}
		while ( FindNextFile ( hFind, &FindFileData ) != 0 );

		// check for processing error
		FindClose ( hFind );
		DWORD dwError = GetLastError();
		if ( dwError != ERROR_NO_MORE_FILES )
			return;
		//error("Error processing directory", directory.c_str());

		// recurse into sub directories
		// if not doing recursive subDirectory is empty
		for ( unsigned i = 0; i < subDirectory.size(); i++ )
		{
//        cout << "directory  " << subDirectory[i] << endl;
			getFileNames ( subDirectory[i], wildcard, fileName );
			continue;
		}

		return;
	}

#else  // not _WIN32

	/**
	* LINUX function to resolve wildcards and recurse into sub directories.
	* The fileName vector is filled with the path and names of files to process.
	*
	* @param directory		The path of the directory to be processed.
	* @param wildcard		The wildcard to be processed (e.g. *.cpp).
	* @param filenam		An empty vector which will be filled with the path and names of files to process.
	*/
	void getFileNames ( const string &directory,const string &wildcard, vector<string> &fileName )
	{
		struct dirent *entry;           // entry from readdir()
		struct stat statbuf;            // entry from stat()
		vector<string> subDirectory;    // sub directories of this directory

		// errno is defined in <errno.h> and is set for errors in opendir, readdir, or stat
		errno = 0;

		DIR *dp = opendir ( directory.c_str() );
		if ( errno )
			return;
		//error("Cannot open directory", directory.c_str());

		// save the first fileName entry for this recursion
		const unsigned firstEntry = fileName.size();

		// save files and sub directories
		while ( ( entry = readdir ( dp ) ) != NULL )
		{
			// get file status
			string entryFilepath = directory + pathSeparator + entry->d_name;
			stat ( entryFilepath.c_str(), &statbuf );
			if ( errno )
				return;
			//error("Error getting file status in directory", directory.c_str());

			// skip hidden or read only
			if ( entry->d_name[0] == '.' || ! ( statbuf.st_mode & S_IWUSR ) )
				continue;
			// if a sub directory and recursive, save sub directory
			if ( S_ISDIR ( statbuf.st_mode ) && /*g_isRecursive*/ true ) ///TODO
			{
				//	if (isPathExclued(entryFilepath))
				//		cout << "exclude " << entryFilepath.substr(g_mainDirectoryLength) << endl;
				//	else
				subDirectory.push_back ( entryFilepath );
				continue;
			}

			// if a file, save file name
			if ( S_ISREG ( statbuf.st_mode ) )
			{
				// check exclude before wildcmp to avoid "unmatched exclude" error
				//	bool isExcluded = isPathExclued(entryFilepath);
				// save file name if wildcard match
				if ( wildcmp ( wildcard.c_str(), entry->d_name ) )
				{
					//	if (isExcluded)
					//		cout << "exclude " << entryFilepath.substr(g_mainDirectoryLength) << endl;
					//	else
					fileName.push_back ( entryFilepath );
				}
			}
		}
		closedir ( dp );

		if ( errno )
			return;
		//error("Error reading directory", directory.c_str());

		// sort the current entries for fileName
		if ( firstEntry < fileName.size() )
			sort ( &fileName[firstEntry], &fileName[fileName.size() ] );

		// recurse into sub directories
		// if not doing recursive, subDirectory is empty
		if ( subDirectory.size() > 1 )
			sort ( subDirectory.begin(), subDirectory.end() );
		for ( unsigned i = 0; i < subDirectory.size(); i++ )
		{
			getFileNames ( subDirectory[i], wildcard, fileName );
			continue;
		}

		return;
	}

#endif

// From The Code Project http://www.codeproject.com/string/wildcmp.asp
// Written by Jack Handy - jakkhandy@hotmail.com
// Modified to compare case insensitive for Windows (the LC macro)
	int wildcmp ( const char *wild, const char *data )
	{
		const char *cp = NULL, *mp = NULL;
		bool cmpval;

		while ( ( *data ) && ( *wild != '*' ) )
		{
#ifdef _WIN32
			cmpval = ( tolower ( *wild ) != tolower ( *data ) ) && ( *wild != '?' );
#else
			cmpval = ( *wild != *data ) && ( *wild != '?' );
#endif

			if ( cmpval )
			{
				return 0;
			}
			wild++;
			data++;
		}

		while ( *data )
		{
			if ( *wild == '*' )
			{
				if ( !*++wild )
				{
					return 1;
				}
				mp = wild;
				cp = data+1;
			}
			else
			{
#ifdef _WIN32
				cmpval = ( tolower ( *wild ) == tolower ( *data ) || ( *wild == '?' ) );
#else
				cmpval = ( *wild == *data ) || ( *wild == '?' );
#endif

				if ( cmpval )
				{
					wild++;
					data++;
				}
				else
				{
					wild = mp;
					data = cp++;
				}
			}
		}

		while ( *wild == '*' )
		{
			wild++;
		}
		return !*wild;
	}

}