summaryrefslogtreecommitdiff
path: root/indra/llcommon/llstreamtools.cpp
blob: 1021b08ad14d6b7933dc6fe2010f666a762fc809 (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
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
/**
 * @file llstreamtools.cpp
 * @brief some helper functions for parsing legacy simstate and asset files.
 *
 * $LicenseInfo:firstyear=2005&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2010, Linden Research, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License only.
 *
 * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
 * $/LicenseInfo$
 */

#include "linden_common.h"

#include <iostream>
#include <string>

#include "llstreamtools.h"


// ----------------------------------------------------------------------------
// some std::istream helper functions
// ----------------------------------------------------------------------------

// skips spaces and tabs
bool skip_whitespace(std::istream& input_stream)
{
    int c = input_stream.peek();
    while (('\t' == c || ' ' == c) && input_stream.good())
    {
        input_stream.get();
        c = input_stream.peek();
    }
    return input_stream.good();
}

// skips whitespace, newlines, and carriage returns
bool skip_emptyspace(std::istream& input_stream)
{
    int c = input_stream.peek();
    while ( input_stream.good()
            && ('\t' == c || ' ' == c || '\n' == c || '\r' == c) )
    {
        input_stream.get();
        c = input_stream.peek();
    }
    return input_stream.good();
}

// skips emptyspace and lines that start with a #
bool skip_comments_and_emptyspace(std::istream& input_stream)
{
    while (skip_emptyspace(input_stream))
    {
        int c = input_stream.peek();
        if ('#' == c )
        {
            while ('\n' != c && input_stream.good())
            {
                c = input_stream.get();
            }
        }
        else
        {
            break;
        }
    }
    return input_stream.good();
}

bool skip_line(std::istream& input_stream)
{
    int c;
    do
    {
        c = input_stream.get();
    } while ('\n' != c  &&  input_stream.good());
    return input_stream.good();
}

bool skip_to_next_word(std::istream& input_stream)
{
    int c = input_stream.peek();
    while ( input_stream.good()
            && (   (c >= 'a' && c <= 'z')
                || (c >= 'A' && c <= 'Z')
                || (c >= '0' && c <= '9')
                || '_' == c ) )
    {
        input_stream.get();
        c = input_stream.peek();
    }
    while ( input_stream.good()
            && !(   (c >= 'a' && c <= 'z')
                 || (c >= 'A' && c <= 'Z')
                 || (c >= '0' && c <= '9')
                 || '_' == c ) )
    {
        input_stream.get();
        c = input_stream.peek();
    }
    return input_stream.good();
}

bool skip_to_end_of_next_keyword(const char* keyword, std::istream& input_stream)
{
    auto key_length = strlen(keyword);   /*Flawfinder: ignore*/
    if (0 == key_length)
    {
        return false;
    }
    while (input_stream.good())
    {
        skip_emptyspace(input_stream);
        int c = input_stream.get();
        if (keyword[0] != c)
        {
            skip_line(input_stream);
        }
        else
        {
            int key_index = 1;
            while ( key_index < key_length
                    &&  keyword[key_index - 1] == c
                    && input_stream.good())
            {
                key_index++;
                c = input_stream.get();
            }

            if (key_index == key_length
                && keyword[key_index-1] == c)
            {
                c = input_stream.peek();
                if (' ' == c || '\t' == c || '\r' == c || '\n' == c)
                {
                    return true;
                }
                else
                {
                    skip_line(input_stream);
                }
            }
            else
            {
                skip_line(input_stream);
            }
        }
    }
    return false;
}

/* skip_to_start_of_next_keyword() is disabled -- might tickle corruption bug in windows iostream
bool skip_to_start_of_next_keyword(const char* keyword, std::istream& input_stream)
{
    int key_length = strlen(keyword);
    if (0 == key_length)
    {
        return false;
    }
    while (input_stream.good())
    {
        skip_emptyspace(input_stream);
        int c = input_stream.get();
        if (keyword[0] != c)
        {
            skip_line(input_stream);
        }
        else
        {
            int key_index = 1;
            while ( key_index < key_length
                    &&  keyword[key_index - 1] == c
                    && input_stream.good())
            {
                key_index++;
                c = input_stream.get();
            }

            if (key_index == key_length
                && keyword[key_index-1] == c)
            {
                c = input_stream.peek();
                if (' ' == c || '\t' == c || '\r' == c || '\n' == c)
                {
                    // put the keyword back onto the stream
                    for (int index = key_length - 1; index >= 0; index--)
                    {
                        input_stream.putback(keyword[index]);
                    }
                    return true;
                }
                else
                {
                    skip_line(input_stream);
                    break;
                }
            }
            else
            {
                skip_line(input_stream);
            }
        }
    }
    return false;
}
*/

bool get_word(std::string& output_string, std::istream& input_stream)
{
    skip_emptyspace(input_stream);
    int c = input_stream.peek();
    while ( !isspace(c)
            && '\n' != c
            && '\r' != c
            && input_stream.good() )
    {
        output_string += c;
        input_stream.get();
        c = input_stream.peek();
    }
    return input_stream.good();
}

bool get_word(std::string& output_string, std::istream& input_stream, int n)
{
    skip_emptyspace(input_stream);
    int char_count = 0;
    int c = input_stream.peek();
    while (!isspace(c)
            && '\n' != c
            && '\r' != c
            && input_stream.good()
            && char_count < n)
    {
        char_count++;
        output_string += c;
        input_stream.get();
        c = input_stream.peek();
    }
    return input_stream.good();
}

// get everything up to and including the next newline
bool get_line(std::string& output_string, std::istream& input_stream)
{
    output_string.clear();
    int c = input_stream.get();
    while (input_stream.good())
    {
        output_string += c;
        if ('\n' == c)
        {
            break;
        }
        c = input_stream.get();
    }
    return input_stream.good();
}

// get everything up to and including the next newline
// up to the next n characters.
// add a newline on the end if bail before actual line ending
bool get_line(std::string& output_string, std::istream& input_stream, int n)
{
    output_string.clear();
    int char_count = 0;
    int c = input_stream.get();
    while (input_stream.good() && char_count < n)
    {
        char_count++;
        output_string += c;
        if ('\n' == c)
        {
            break;
        }
        if (char_count >= n)
        {
            output_string.append("\n");
            break;
        }
        c = input_stream.get();
    }
    return input_stream.good();
}

/* disabled -- might tickle bug in windows iostream
// backs up the input_stream by line_size + 1 characters
bool unget_line(const std::string& line, std::istream& input_stream)
{
    input_stream.putback('\n'); // unget the newline
    for (int line_index = line.size()-1; line_index >= 0; line_index--)
    {
        input_stream.putback(line[line_index]);
    }
    return input_stream.good();
}
*/

// removes the last char in 'line' if it matches 'c'
// returns true if removed last char
bool remove_last_char(char c, std::string& line)
{
    auto line_size = line.size();
    if (line_size > 1
        && c == line[line_size - 1])
    {
        line.replace(line_size - 1, 1, "");
        return true;
    }
    return false;
}

// replaces escaped characters with the correct characters from left to right
// "\\\\" ---> '\\' (two backslahes become one)
// "\\n" ---> '\n' (backslash n becomes carriage return)
void unescape_string(std::string& line)
{
    auto line_size = line.size();
    for (size_t index = 0; line_size >= 1 && index < line_size - 1; ++index)
    {
        if ('\\' == line[index])
        {
            if ('\\' == line[index + 1])
            {
                line.replace(index, 2, "\\");
                line_size--;
            }
            else if ('n' == line[index + 1])
            {
                line.replace(index, 2, "\n");
                line_size--;
            }
        }
    }
}

// replaces unescaped characters with expanded equivalents from left to right
// '\\' ---> "\\\\" (one backslash becomes two)
// '\n' ---> "\\n"  (carriage return becomes backslash n)
void escape_string(std::string& line)
{
    auto line_size = line.size();
    for (size_t index = 0; index < line_size; ++index)
    {
        if ('\\' == line[index])
        {
            line.replace(index, 1, "\\\\");
            line_size++;
            index++;
        }
        else if ('\n' == line[index])
        {
            line.replace(index, 1, "\\n");
            line_size++;
            index++;
        }
    }
}

// removes '\n' characters
void replace_newlines_with_whitespace(std::string& line)
{
    auto line_size = line.size();
    for (size_t index = 0; index < line_size; ++index)
    {
        if ('\n' == line[index])
        {
            line.replace(index, 1, " ");
        }
    }
}

// erases any double-quote characters in 'line'
void remove_double_quotes(std::string& line)
{
    auto line_size = line.size();
    for (size_t index = 0; index < line_size; )
    {
        if ('"' == line[index])
        {
            int count = 1;
            while (index + count < line_size
                   && '"' == line[index + count])
            {
                count++;
            }
            line.replace(index, count, "");
            line_size -= count;
        }
        else
        {
            index++;
        }
    }
}

// the 'keyword' is defined as the first word on a line
// the 'value' is everything after the keyword on the same line
// starting at the first non-whitespace and ending right before the newline
void get_keyword_and_value(std::string& keyword,
                           std::string& value,
                           const std::string& line)
{
    // skip initial whitespace
    auto line_size = line.size();
    size_t line_index = 0;
    char c;
    for ( ; line_index < line_size; ++line_index)
    {
        c = line[line_index];
        if (!LLStringOps::isSpace(c))
        {
            break;
        }
    }

    // get the keyword
    keyword.clear();
    for ( ; line_index < line_size; ++line_index)
    {
        c = line[line_index];
        if (LLStringOps::isSpace(c) || '\r' == c || '\n' == c)
        {
            break;
        }
        keyword += c;
    }

    // get the value
    value.clear();
    if (keyword.size() > 0
        && '\r' != line[line_index]
        && '\n' != line[line_index])

    {
        // discard initial white spaces
        while (line_index < line_size
                && (' ' == line[line_index]
                    || '\t' == line[line_index]) )
        {
            line_index++;
        }

        for ( ; line_index < line_size; ++line_index)
        {
            c = line[line_index];
            if ('\r' == c || '\n' == c)
            {
                break;
            }
            value += c;
        }
    }
}

std::streamsize fullread(
    std::istream& istr,
    char* buf,
    std::streamsize requested)
{
    std::streamsize got;
    std::streamsize total = 0;

    istr.read(buf, requested);   /*Flawfinder: ignore*/
    got = istr.gcount();
    total += got;
    while(got && total < requested)
    {
        if(istr.fail())
        {
            // If bad is true, not much we can doo -- it implies loss
            // of stream integrity. Bail in that case, and otherwise
            // clear and attempt to continue.
            if(istr.bad()) return total;
            istr.clear();
        }
        istr.read(buf + total, requested - total);   /*Flawfinder: ignore*/
        got = istr.gcount();
        total += got;
    }
    return total;
}

std::istream& operator>>(std::istream& str, const char *tocheck)
{
    char c = '\0';
    const char *p;
    p = tocheck;
    while (*p && !str.bad())
    {
        str.get(c);
        if (c != *p)
        {
            str.setstate(std::ios::failbit);        /*Flawfinder: ignore*/
            break;
        }
        p++;
    }
    return str;
}

int cat_streambuf::underflow()
{
    if (gptr() == egptr())
    {
        // here because our buffer is empty
        std::streamsize size = 0;
        // Until we've run out of mInputs, try reading the first of them
        // into mBuffer. If that fetches some characters, break the loop.
        while (! mInputs.empty()
               && ! (size = mInputs.front()->sgetn(mBuffer.data(), mBuffer.size())))
        {
            // We tried to read mInputs.front() but got zero characters.
            // Discard the first streambuf and try the next one.
            mInputs.pop_front();
        }
        // Either we ran out of mInputs or we succeeded in reading some
        // characters, that is, size != 0. Tell base class what we have.
        setg(mBuffer.data(), mBuffer.data(), mBuffer.data() + size);
    }
    // If we fell out of the above loop with mBuffer still empty, return
    // eof(), otherwise return the next character.
    return (gptr() == egptr())
        ? std::char_traits<char>::eof()
        : std::char_traits<char>::to_int_type(*gptr());
}