summaryrefslogtreecommitdiff
path: root/ecos/packages/language/cxx/ustl/current/tests/bvt07.cpp
blob: 91d99d08dbbc6d05a2e255d318d8141d864f924f (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
// This file is part of the uSTL library, an STL implementation.
//
// Copyright (c) 2005 by Mike Sharov <msharov@users.sourceforge.net>
// This file is free software, distributed under the MIT License.

#include "stdtest.h"

void MyFormat (const char* fmt, ...) __attribute__((__format__(__printf__,1,2)));

void TestString (void)
{
    static const char c_TestString1[] = "123456789012345678901234567890";
    static const char c_TestString2[] = "abcdefghijklmnopqrstuvwxyz";
    static const char c_TestString3[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    string s1 (c_TestString1);
    string s2 (VectorRange (c_TestString2));
    string s3 (s1);

    cout << s1 << endl;
    cout << s2 << endl;
    cout << s3 << endl;
    s3.reserve (48);
    s3.resize (20);

    uoff_t i;
    for (i = 0; i < s3.length(); ++ i)
	s3.at(i) = s3.at(i);
    for (i = 0; i < s3.length(); ++ i)
	s3[i] = s3[i];
    cout.format ("%s\ns3.size() = %zu, max_size() = ", s3.c_str(), s3.size());
    if (s3.max_size() == SIZE_MAX - 1)
	cout << "(SIZE_MAX/elsize)-1";
    else
	cout << s3.max_size();
    cout.format (", capacity() = %zu\n", s3.capacity());

    s1.unlink();
    s1 = c_TestString2;
    s1 += c_TestString3;
    s1 += '$';
    cout << s1 << endl;

    s1 = "Hello";
    s2.unlink();
    s2 = "World";
    s3 = s1 + s2;
    cout << s3 << endl;
    s3 = "Concatenated " + s1 + s2 + " string.";
    cout << s3 << endl;

    if (s1 < s2)
	cout << "s1 < s2\n";
    if (s1 == s1)
	cout << "s1 == s1\n";
    if (s1[0] != s1[0])
	cout << "s1[0] != s1[0]\n";

    string s4;
    s4.link (s1);
    if (s1 == s4)
	cout << "s1 == s4\n";

    s1 = c_TestString1;
    string s5 (s1.begin() + 4, s1.begin() + 4 + 5);
    string s6 (s1.begin() + 4, s1.begin() + 4 + 5);
    if (s5 == s6)
	cout.format ("%s == %s\n", s5.c_str(), s6.c_str());
    string tail (s1.begin() + 7, s1.end());
    cout.format ("&s1[7] = %s\n", tail.c_str());

    cout.format ("initial:\t\t%s\n", s1.c_str());
    cout << "erase(5,find(9)-5)\t";
    s1.erase (5, s1.find ('9')-5);
    cout << s1 << endl;
    cout << "erase(5,5)\t\t";
    s1.erase (s1.begin() + 5, 2U);
    s1.erase (5, 3);
    assert (!*s1.end());
    cout << s1 << endl;
    cout << "push_back('x')\t\t";
    s1.push_back ('x');
    assert (!*s1.end());
    cout << s1 << endl;
    cout << "pop_back()\n";
    s1.pop_back();
    assert (!*s1.end());
    cout << "insert(10,#)\t\t";
    s1.insert (s1.begin() + 10, '#');
    assert (!*s1.end());
    cout << s1 << endl;
    cout << "replace(0,5,@)\t\t";
    s1.replace (s1.begin(), s1.begin() + 5, 1, '@');
    assert (!*s1.end());
    cout << s1 << endl;

    s1 = c_TestString1;
    cout.format ("8 found at %zu\n", s1.find ('8'));
    cout.format ("9 found at %zu\n", s1.find ("9"));
    cout.format ("7 rfound at %zu\n", s1.rfind ('7'));
    cout.format ("7 rfound again at %zu\n", s1.rfind ('7', s1.rfind ('7') - 1));
    cout.format ("67 rfound at %zu\n", s1.rfind ("67"));
    if (s1.rfind("X") == string::npos)
	cout << "X was not rfound\n";
    else
	cout.format ("X rfound at %zu\n", s1.rfind ("X"));
    uoff_t poundfound = s1.find ("#");
    if (poundfound != string::npos)
	cout.format ("# found at %zu\n", poundfound);
    cout.format ("[456] found at %zu\n", s1.find_first_of ("456"));
    cout.format ("[456] last found at %zu\n", s1.find_last_of ("456"));

    s2.clear();
    assert (!*s2.end());
    if (s2.empty())
	cout.format ("s2 is empty [%s], capacity %zu bytes\n", s2.c_str(), s2.capacity());

    s2.format ("<const] %d, %s, 0x%08X", 42, "[rfile>", 0xDEADBEEF);
    cout.format ("<%zu bytes of %zu> Format '%s'\n", s2.length(), s2.capacity(), s2.c_str());
    MyFormat ("'<const] %d, %s, 0x%08X'", 42, "[rfile>", 0xDEADBEEF);

    cout.format ("hash_value(s2) = %08X, string::hash(s2) = %08X\n", hash_value (s2.begin()), string::hash (s2.begin(), s2.end()));
}

void MyFormat (const char* fmt, ...)
{
    string buf;
    simd::reset_mmx();
    va_list args;
    va_start (args, fmt);
    buf.vformat (fmt, args);
    cout.format ("Custom vararg MyFormat: %s\n", buf.c_str());
    va_end (args);
}

StdBvtMain (TestString)