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
|
/*
* Copyright (C) 2007-2013 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.
*/
#ifndef GATS_OBJECT_H
#define GATS_OBJECT_H
#include <bu/string.h>
namespace Bu
{
class Stream;
class Formatter;
};
namespace Gats
{
enum Type
{
typeDictionary,
typeList,
typeString,
typeInteger,
typeFloat,
typeBoolean,
typeNull
};
/**
* The baseclass for every type that can be stored in a packet.
*/
class Object
{
public:
Object();
virtual ~Object();
virtual Type getType() const =0;
virtual void write( Bu::Stream &rOut ) const=0;
virtual void read( Bu::Stream &rIn, char cType )=0;
virtual Object *clone() const=0;
Bu::String toPacket();
static Object *fromPacket( const Bu::String &sData );
static Object *read( Bu::Stream &rIn );
static Object *strToGats( const Bu::String &sStr );
private:
class StrPos
{
public:
StrPos( const Bu::String::const_iterator &i ) :
i( i ), iLine( 1 ), iChar( 1 )
{ }
Bu::String::const_iterator i;
int iLine;
int iChar;
char operator*()
{
return *i;
}
StrPos &operator++(int)
{
i++;
if( i )
{
if( *i == '\n' )
{
iLine++;
iChar = 0;
}
else
iChar++;
}
return *this;
}
operator bool()
{
return i;
}
};
class Thrower : public Bu::String::FormatProxyEndAction
{
public:
Thrower( Gats::Object::StrPos &i ) :
i( i )
{
}
virtual ~Thrower()
{
}
virtual void operator()( const Bu::String &sFinal )
{
throw Bu::ExceptionBase(
(Bu::String("%1: %2: ").arg(i.iLine).arg(i.iChar).end() + sFinal)
.getStr()
);
}
private:
Gats::Object::StrPos &i;
};
static Bu::String::FormatProxy posError( Gats::Object::StrPos &i, const Bu::String &msg );
static Object *strToGats( Gats::Object::StrPos &i );
static Bu::String token( Gats::Object::StrPos &i );
static void skipWs( Gats::Object::StrPos &i );
};
const char *typeToStr( Type t );
};
Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Object &obj );
Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Type &t );
#endif
|