aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/string.cpp
blob: f8e40719e344c3bb02405cdaf4526f60063a1270 (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
/*
 * Copyright (C) 2007-2012 Xagasoft, All rights reserved.
 *
 * This file is part of the libgats library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include "gats/string.h"

#include "gats/integer.h"

#include <bu/formatter.h>

Gats::String::String()
{
}

Gats::String::String( const char *s ) :
    Bu::String( s )
{
}

Gats::String::String( const char *s, long iLength ) :
    Bu::String( s, iLength )
{
}

Gats::String::String( long iLength ) :
    Bu::String( iLength )
{
}

Gats::String::String( const String &s ) :
    Bu::String( s )
{
}

Gats::String::String( const Bu::String &s ) :
    Bu::String( s )
{
}

Gats::String::~String()
{
}

Gats::Object *Gats::String::clone() const
{
    return new Gats::String( Bu::String::clone() );
}

void Gats::String::write( Bu::Stream &rOut ) const
{
    rOut.write("s", 1 );
    uint32_t iSize = getSize();
    Gats::Integer::writePackedInt( rOut, iSize );
    rOut.write( getStr(), iSize );
}

void Gats::String::read( Bu::Stream &rIn, char cType )
{
    uint32_t iSize;
    Gats::Integer::readPackedInt( rIn, iSize );
    setSize( iSize );
    rIn.read( getStr(), iSize );
}

Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::String &s )
{
    for( Gats::String::const_iterator i = s.begin(); i; i++ )
    {
        if( *i >= 127 || *i <= 31 )
            return f << "(binary str) " << s.getSize() << " bytes";
    }
    return f << "(str) \"" << dynamic_cast<const Bu::String &>(s) << "\"";
}