author | František Kučera <franta-hg@frantovo.cz> |
Sat, 21 Jul 2018 17:30:25 +0200 | |
branch | v_0 |
changeset 9 | 0a40752e401d |
parent 5 | include/DataTypeWriterBase.h@7fe870c3362f |
child 15 | 8fd6c4d44071 |
permissions | -rw-r--r-- |
1 | 1 |
#pragma once |
2 |
||
3 |
#include <string> |
|
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
4 |
#include "../include/typedefs.h" |
1 | 5 |
|
6 |
namespace relpipe { |
|
7 |
namespace writer { |
|
8 |
||
9 |
/** |
|
10 |
* This class contains common features that are independent from particular data type (generic/template type) |
|
11 |
*/ |
|
12 |
class DataTypeWriterBase { |
|
13 |
private: |
|
14 |
const integer_t typeId; |
|
15 |
const string_t typeCode; |
|
16 |
public: |
|
17 |
||
18 |
DataTypeWriterBase(const integer_t typeId, const string_t typeCode) : |
|
19 |
typeId(typeId), typeCode(typeCode) { |
|
20 |
} |
|
21 |
||
22 |
virtual ~DataTypeWriterBase() { |
|
23 |
}; |
|
24 |
||
4
e6db28447957
documentation for readString() and writeString() methods
František Kučera <franta-hg@frantovo.cz>
parents:
3
diff
changeset
|
25 |
/** |
e6db28447957
documentation for readString() and writeString() methods
František Kučera <franta-hg@frantovo.cz>
parents:
3
diff
changeset
|
26 |
* @param output output stream, should be at position where the value is to be written; the stream will not be closed not flushed after writing |
e6db28447957
documentation for readString() and writeString() methods
František Kučera <franta-hg@frantovo.cz>
parents:
3
diff
changeset
|
27 |
* @param stringValue write value as given data type (e.g. integer or boolean); stringValue parameter contains given value in string representation of given data type |
e6db28447957
documentation for readString() and writeString() methods
František Kučera <franta-hg@frantovo.cz>
parents:
3
diff
changeset
|
28 |
* E.g. integer 123 is passed as a character string "123" |
e6db28447957
documentation for readString() and writeString() methods
František Kučera <franta-hg@frantovo.cz>
parents:
3
diff
changeset
|
29 |
* boolean true is passed as a character string "true". |
e6db28447957
documentation for readString() and writeString() methods
František Kučera <franta-hg@frantovo.cz>
parents:
3
diff
changeset
|
30 |
* See Relational pipes format specification for details. |
e6db28447957
documentation for readString() and writeString() methods
František Kučera <franta-hg@frantovo.cz>
parents:
3
diff
changeset
|
31 |
*/ |
1 | 32 |
virtual void writeString(std::ostream& output, const string_t &stringValue) = 0; |
33 |
||
34 |
/** |
|
35 |
* @param dataType data type code as defined in DDP L0 |
|
36 |
* @return whether this class supports conversions of this type |
|
37 |
*/ |
|
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
38 |
virtual bool supports(const integer_t &dataType) { |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
39 |
return dataType == typeId; |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
40 |
} |
1 | 41 |
|
42 |
/** |
|
43 |
* @param dataType data type name as defined in DDP L0 |
|
44 |
* @return whether this class supports conversions of this type |
|
45 |
*/ |
|
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
46 |
virtual bool supports(const string_t &dataType) { |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
47 |
return dataType == typeCode; |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
48 |
} |
1 | 49 |
|
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
50 |
integer_t getTypeId() { |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
51 |
return typeId; |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
52 |
} |
1 | 53 |
|
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
54 |
string_t getTypeCode() { |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
55 |
return typeCode; |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
56 |
} |
1 | 57 |
}; |
58 |
||
59 |
} |
|
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
60 |
} |