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 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
|
/* Strings.cpp
*
* Copyright (C) 1992-2011 Paul Boersma
*
* This program 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 2 of the License, or (at
* your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* pb 2002/07/16 GPL
* pb 2003/07/02 corrected Strings_randomize so that the first element can sometimes go to the first place
* pb 2004/03/21 Strings_createAsFileList now accepts spaces in directory names on Unix and Mac
* pb 2004/04/20 the previous thing now done with backslashes rather than double quotes,
* because double quotes prevent the expansion of the wildcard asterisk
* pb 2006/02/14 Strings_createAsDirectoryList for Windows
* pb 2006/03/08 allow 1,000,000 file names in Strings_createAsFileList
* pb 2006/09/19 Strings_createAsDirectoryList for Mac and Unix
* pb 2006/10/04 return fewer errors in Strings_createAsFileList and Strings_createAsDirectoryList
* pb 2006/10/28 erased MacOS 9 stuff
* pb 2006/12/10 MelderInfo
* pb 2007/01/24 Strings_createAsFileList: removed gigantic memory leak
* pb 2007/01/24 Strings_createAsFileList: used stat instead of platform-specific struct dirent. entry
* pb 2007/08/10 wchar_t
* pb 2007/10/01 can write as encoding
* pb 2007/10/01 corrected nativization
* pb 2007/11/17 getVectorStr
* pb 2007/12/10 Strings_createAsFileList precomposes characters
* pb 2011/05/03 Windows: ignore file or directory names starting with '.'
* pb 2011/05/15 C++
*/
//#define USE_STAT 1
#ifndef USE_STAT
#if defined (_WIN32)
#define USE_STAT 0
#else
#define USE_STAT 1
#endif
#endif
#if USE_STAT
#include <sys/types.h>
//#define __USE_BSD
#include <sys/stat.h>
#include <dirent.h>
#endif
#if defined (_WIN32)
#include "winport_on.h"
#include <windows.h>
#include "winport_off.h"
#endif
#include "Strings.h"
#include "longchar.h"
#include "oo_DESTROY.h"
#include "Strings_def.h"
#include "oo_COPY.h"
#include "Strings_def.h"
#include "oo_EQUAL.h"
#include "Strings_def.h"
#include "oo_CAN_WRITE_AS_ENCODING.h"
#include "Strings_def.h"
#include "oo_WRITE_TEXT.h"
#include "Strings_def.h"
#include "oo_READ_TEXT.h"
#include "Strings_def.h"
#include "oo_WRITE_BINARY.h"
#include "Strings_def.h"
#include "oo_READ_BINARY.h"
#include "Strings_def.h"
#include "oo_DESCRIPTION.h"
#include "Strings_def.h"
Thing_implement (Strings, Data, 0);
static long Strings_totalLength (Strings me) {
long totalLength = 0;
for (long i = 1; i <= my numberOfStrings; i ++) {
totalLength += wcslen (my strings [i]);
}
return totalLength;
}
static long Strings_maximumLength (Strings me) {
long maximumLength = 0;
for (long i = 1; i <= my numberOfStrings; i ++) {
long length = wcslen (my strings [i]);
if (length > maximumLength) {
maximumLength = length;
}
}
return maximumLength;
}
void structStrings :: v_info () {
structData :: v_info ();
MelderInfo_writeLine2 (L"Number of strings: ", Melder_integer (numberOfStrings));
MelderInfo_writeLine3 (L"Total length: ", Melder_integer (Strings_totalLength (this)), L" characters");
MelderInfo_writeLine3 (L"Longest string: ", Melder_integer (Strings_maximumLength (this)), L" characters");
}
const wchar * structStrings :: v_getVectorStr (long icol) {
if (icol < 1 || icol > numberOfStrings) return L"";
wchar *stringValue = strings [icol];
return stringValue == NULL ? L"" : stringValue;
}
#define Strings_createAsFileOrDirectoryList_TYPE_FILE 0
#define Strings_createAsFileOrDirectoryList_TYPE_DIRECTORY 1
static Strings Strings_createAsFileOrDirectoryList (const wchar *path, int type) {
#if USE_STAT
/*
* Initialize.
*/
DIR *d = NULL;
try {
autoMelderString filePath, searchDirectory, left, right;
/*
* Parse the path.
* Example: in /Users/paul/sounds/h*.wav",
* the search directory is "/Users/paul/sounds",
* the left environment is "h", and the right environment is ".wav".
*/
MelderString_copy (& searchDirectory, path);
wchar *asterisk = wcsrchr (searchDirectory. string, '*');
if (asterisk != NULL) {
*asterisk = '\0';
searchDirectory. length = asterisk - searchDirectory. string; // probably superfluous, but correct
wchar *lastSlash = wcsrchr (searchDirectory. string, Melder_DIRECTORY_SEPARATOR);
if (lastSlash != NULL) {
*lastSlash = '\0'; // This fixes searchDirectory.
searchDirectory. length = lastSlash - searchDirectory. string; // probably superfluous, but correct
MelderString_copy (& left, lastSlash + 1);
} else {
MelderString_copy (& left, searchDirectory. string); // quickly save...
MelderString_empty (& searchDirectory); // ...before destruction
}
MelderString_copy (& right, asterisk + 1);
}
char buffer8 [1+kMelder_MAXPATH];
Melder_wcsTo8bitFileRepresentation_inline (searchDirectory. string, buffer8);
d = opendir (buffer8 [0] ? buffer8 : ".");
if (d == NULL)
Melder_throw ("Cannot open directory ", searchDirectory. string, ".");
//Melder_casual ("opened");
autoStrings me = Thing_new (Strings);
my strings = NUMvector <wchar *> (1, 1000000);
struct dirent *entry;
while ((entry = readdir (d)) != NULL) {
MelderString_copy (& filePath, searchDirectory. string [0] ? searchDirectory. string : L".");
MelderString_appendCharacter (& filePath, Melder_DIRECTORY_SEPARATOR);
wchar_t bufferW [1+kMelder_MAXPATH];
Melder_8bitFileRepresentationToWcs_inline (entry -> d_name, bufferW);
MelderString_append (& filePath, bufferW);
//Melder_casual ("read %s", filePath. string);
Melder_wcsTo8bitFileRepresentation_inline (filePath. string, buffer8);
struct stat stats;
if (stat (buffer8, & stats) != 0) {
Melder_throw ("Cannot look at file ", filePath. string, ".");
//stats. st_mode = -1L;
}
//Melder_casual ("statted %s", filePath. string);
//Melder_casual ("file %s mode %s", filePath. string, Melder_integer (stats. st_mode / 4096));
if ((type == Strings_createAsFileOrDirectoryList_TYPE_FILE && S_ISREG (stats. st_mode)) ||
(type == Strings_createAsFileOrDirectoryList_TYPE_DIRECTORY && S_ISDIR (stats. st_mode)))
{
Melder_8bitFileRepresentationToWcs_inline (entry -> d_name, bufferW);
unsigned long length = wcslen (bufferW);
if (bufferW [0] != '.' &&
(left. length == 0 || wcsnequ (bufferW, left. string, left. length)) &&
(right. length == 0 || (length >= right. length && wcsequ (bufferW + (length - right. length), right. string))))
{
my strings [++ my numberOfStrings] = Melder_wcsdup (bufferW);
}
}
}
closedir (d);
Strings_sort (me.peek());
return me.transfer();
} catch (MelderError) {
if (d) closedir (d); // "finally"
throw;
}
#elif defined (_WIN32)
try {
wchar searchPath [1+kMelder_MAXPATH];
int len = wcslen (path), hasAsterisk = wcschr (path, '*') != NULL, endsInSeparator = len != 0 && path [len - 1] == '\\';
autoStrings me = Thing_new (Strings);
my strings = NUMvector <wchar *> (1, 1000000);
swprintf (searchPath, 1+kMelder_MAXPATH, L"%ls%ls%ls", path, hasAsterisk || endsInSeparator ? L"" : L"\\", hasAsterisk ? L"" : L"*");
WIN32_FIND_DATAW findData;
HANDLE searchHandle = FindFirstFileW (searchPath, & findData);
if (searchHandle != INVALID_HANDLE_VALUE) {
do {
if ((type == Strings_createAsFileOrDirectoryList_TYPE_FILE &&
(findData. dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
|| (type == Strings_createAsFileOrDirectoryList_TYPE_DIRECTORY &&
(findData. dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0))
{
if (findData. cFileName [0] != '.') {
my strings [++ my numberOfStrings] = Melder_wcsdup (findData. cFileName);
}
}
} while (FindNextFileW (searchHandle, & findData));
FindClose (searchHandle);
}
Strings_sort (me.peek());
return me.transfer();
} catch (MelderError) {
throw;
}
#endif
}
Strings Strings_createAsFileList (const wchar *path) {
try {
return Strings_createAsFileOrDirectoryList (path, Strings_createAsFileOrDirectoryList_TYPE_FILE);
} catch (MelderError) {
Melder_throw ("Strings object not created as file list.");
}
}
Strings Strings_createAsDirectoryList (const wchar *path) {
try {
return Strings_createAsFileOrDirectoryList (path, Strings_createAsFileOrDirectoryList_TYPE_DIRECTORY);
} catch (MelderError) {
Melder_throw ("Strings object not created as directory list.");
}
}
Strings Strings_readFromRawTextFile (MelderFile file) {
try {
autoMelderReadText text = MelderReadText_createFromFile (file);
/*
* Count number of strings.
*/
long n = MelderReadText_getNumberOfLines (text.peek());
/*
* Create.
*/
autoStrings me = Thing_new (Strings);
if (n > 0) my strings = NUMvector <wchar *> (1, n);
my numberOfStrings = n;
/*
* Read strings.
*/
for (long i = 1; i <= n; i ++) {
wchar_t *line = MelderReadText_readLine (text.peek());
my strings [i] = Melder_wcsdup (line);
}
return me.transfer();
} catch (MelderError) {
Melder_throw ("Strings not read from raw text file ", file, ".");
}
}
void Strings_writeToRawTextFile (Strings me, MelderFile file) {
autoMelderString buffer;
for (long i = 1; i <= my numberOfStrings; i ++) {
MelderString_append (& buffer, my strings [i], L"\n");
}
MelderFile_writeText (file, buffer.string);
}
void Strings_randomize (Strings me) {
for (long i = 1; i < my numberOfStrings; i ++) {
long other = NUMrandomInteger (i, my numberOfStrings);
wchar_t *dummy = my strings [other];
my strings [other] = my strings [i];
my strings [i] = dummy;
}
}
void Strings_genericize (Strings me) {
autostring buffer = Melder_calloc (wchar, Strings_maximumLength (me) * 3 + 1);
for (long i = 1; i <= my numberOfStrings; i ++) {
const wchar *p = (const wchar *) my strings [i];
while (*p) {
if (*p > 126) { // backslashes are not converted, i.e. genericize^2 == genericize
Longchar_genericizeW (my strings [i], buffer.peek());
autostring newString = Melder_wcsdup (buffer.peek());
/*
* Replace string only if copying was OK.
*/
Melder_free (my strings [i]);
my strings [i] = newString.transfer();
break;
}
p ++;
}
}
}
void Strings_nativize (Strings me) {
autostring buffer = Melder_calloc (wchar, Strings_maximumLength (me) + 1);
for (long i = 1; i <= my numberOfStrings; i ++) {
Longchar_nativizeW (my strings [i], buffer.peek(), false);
autostring newString = Melder_wcsdup (buffer.peek());
/*
* Replace string only if copying was OK.
*/
Melder_free (my strings [i]);
my strings [i] = newString.transfer();
}
}
void Strings_sort (Strings me) {
NUMsort_str (my numberOfStrings, my strings);
}
void Strings_remove (Strings me, long position) {
Melder_assert (position >= 1);
Melder_assert (position <= my numberOfStrings);
Melder_free (my strings [position]);
for (long i = position; i < my numberOfStrings; i ++) {
my strings [i] = my strings [i + 1];
}
my numberOfStrings --;
}
void Strings_replace (Strings me, long position, const wchar *text) {
Melder_assert (position >= 1);
Melder_assert (position <= my numberOfStrings);
if (Melder_wcsequ (my strings [position], text))
return; // nothing to change
/*
* Create without change.
*/
autostring newString = Melder_wcsdup (text);
/*
* Change without error.
*/
Melder_free (my strings [position]);
my strings [position] = newString.transfer();
}
void Strings_insert (Strings me, long position, const wchar *text) {
if (position == 0) position = my numberOfStrings + 1;
Melder_assert (position >= 1);
Melder_assert (position <= my numberOfStrings + 1);
/*
* Create without change.
*/
autostring newString = Melder_wcsdup (text);
/*
* Change without error.
*/
for (long i = my numberOfStrings + 1; i > position; i --) {
my strings [i] = my strings [i - 1];
}
my strings [position] = newString.transfer();
my numberOfStrings ++;
}
/* End of file Strings.cpp */
|