author | František Kučera <franta-hg@frantovo.cz> |
Mon, 13 Aug 2018 20:30:55 +0200 | |
branch | v_0 |
changeset 20 | bef6648e79b1 |
parent 19 | 98b901d7bb95 |
child 25 | 135ef93a4ac2 |
permissions | -rw-r--r-- |
1 | 1 |
#pragma once |
2 |
||
3 |
#include <string> |
|
20
bef6648e79b1
relpipe-lib-writer: move public header files to: include/relpipe/writer/
František Kučera <franta-hg@frantovo.cz>
parents:
19
diff
changeset
|
4 |
#include "../include/relpipe/writer/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: |
|
15
8fd6c4d44071
use more TypeId enum
František Kučera <franta-hg@frantovo.cz>
parents:
9
diff
changeset
|
14 |
const TypeId typeId; |
1 | 15 |
const string_t typeCode; |
16 |
public: |
|
17 |
||
15
8fd6c4d44071
use more TypeId enum
František Kučera <franta-hg@frantovo.cz>
parents:
9
diff
changeset
|
18 |
DataTypeWriterBase(const TypeId typeId, const string_t typeCode) : |
1 | 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 |
/** |
|
16
3613617d3076
writeAttribute() with raw pointer and type_info
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
35 |
* @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 |
3613617d3076
writeAttribute() with raw pointer and type_info
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
36 |
* @param value raw pointer to the value, must exactly match data type of this writer |
3613617d3076
writeAttribute() with raw pointer and type_info
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
37 |
* @param type used as a safety mechanism to avoid wrong pointer interpretation; |
18
90efe2db1ca8
documentation for RelationalWriter and DataTypeWriterBase
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
38 |
* should be called in this way: writeRaw(output, &value, typeid(value)); |
16
3613617d3076
writeAttribute() with raw pointer and type_info
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
39 |
* if the type does not match, the RelpipeWriterException is thrown |
19
98b901d7bb95
ASan: add AddressSanitizer g++ option: -fsanitize=address
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
40 |
* |
98b901d7bb95
ASan: add AddressSanitizer g++ option: -fsanitize=address
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
41 |
* TODO: typeid() / type_info seems working but consider also sizeof() / size_t and teplates |
16
3613617d3076
writeAttribute() with raw pointer and type_info
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
42 |
*/ |
3613617d3076
writeAttribute() with raw pointer and type_info
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
43 |
virtual void writeRaw(std::ostream& output, const void * value, const std::type_info& type) = 0; |
3613617d3076
writeAttribute() with raw pointer and type_info
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
44 |
|
3613617d3076
writeAttribute() with raw pointer and type_info
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
45 |
/** |
1 | 46 |
* @param dataType data type code as defined in DDP L0 |
47 |
* @return whether this class supports conversions of this type |
|
48 |
*/ |
|
15
8fd6c4d44071
use more TypeId enum
František Kučera <franta-hg@frantovo.cz>
parents:
9
diff
changeset
|
49 |
virtual bool supports(const TypeId &dataType) { |
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
50 |
return dataType == typeId; |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
51 |
} |
1 | 52 |
|
53 |
/** |
|
54 |
* @param dataType data type name as defined in DDP L0 |
|
55 |
* @return whether this class supports conversions of this type |
|
56 |
*/ |
|
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
57 |
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
|
58 |
return dataType == typeCode; |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
59 |
} |
1 | 60 |
|
15
8fd6c4d44071
use more TypeId enum
František Kučera <franta-hg@frantovo.cz>
parents:
9
diff
changeset
|
61 |
TypeId getTypeId() { |
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
62 |
return typeId; |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
63 |
} |
1 | 64 |
|
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
65 |
string_t getTypeCode() { |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
66 |
return typeCode; |
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
67 |
} |
1 | 68 |
}; |
69 |
||
70 |
} |
|
9
0a40752e401d
shared library with pure abstract class (interface)
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
71 |
} |