Skip to content

Commit 3047414

Browse files
committed
Parse CSV QualifiedNames instead of just Identifier for ADTs
1 parent 8acdf49 commit 3047414

File tree

7 files changed

+19
-3
lines changed

7 files changed

+19
-3
lines changed

src/include/souffle/io/ReadStream.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class ReadStream : public SerialisationStream<false> {
149149

150150
// Consume initial character
151151
consumeChar(source, '$', pos);
152-
std::string constructor = readIdentifier(source, pos);
152+
std::string constructor = readQualifiedName(source, pos);
153153

154154
json11::Json branchInfo = [&]() -> json11::Json {
155155
for (auto branch : branches.array_items()) {
@@ -250,7 +250,7 @@ class ReadStream : public SerialisationStream<false> {
250250
* Consume preceding whitespace.
251251
* TODO (darth_tytus): use std::string_view?
252252
*/
253-
std::string readIdentifier(const std::string& source, std::size_t& pos) {
253+
std::string readQualifiedName(const std::string& source, std::size_t& pos) {
254254
consumeWhiteSpace(source, pos);
255255
if (pos >= source.length()) {
256256
throw std::invalid_argument("Unexpected end of input");
@@ -259,7 +259,7 @@ class ReadStream : public SerialisationStream<false> {
259259
const std::size_t bgn = pos;
260260
while (pos < source.length()) {
261261
unsigned char ch = static_cast<unsigned char>(source[pos]);
262-
bool valid = std::isalnum(ch) || ch == '_' || ch == '?';
262+
bool valid = std::isalnum(ch) || ch == '_' || ch == '?' || ch == '.';
263263
if (!valid) break;
264264
++pos;
265265
}

tests/syntactic/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ positive_test(type)
6464
positive_test(union_comp_type)
6565
positive_test(dot_identifiers)
6666
positive_test(input_adt_names1)
67+
positive_test(input_adt_names2)
6768
positive_test(input_directive_rfc4180)
6869
if (NOT MSVC)
6970
# does not pass with Visual Studio pre-processor because it preserves all whitespaces
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
$MyInstance.A
2+
$MyInstance.A2(123)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
$MyInstance.A
2+
$MyInstance.A2(123)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.comp Component {
2+
.type ADT = A {} | A2 { n: number }
3+
}
4+
.init MyInstance = Component
5+
.decl A(value: MyInstance.ADT)
6+
.decl B(value: MyInstance.ADT)
7+
8+
B(v) :- A(v).
9+
10+
.input A
11+
.output B

tests/syntactic/input_adt_names2/input_adt_names2.err

Whitespace-only changes.

tests/syntactic/input_adt_names2/input_adt_names2.out

Whitespace-only changes.

0 commit comments

Comments
 (0)