This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1679 from sl-slaing/poc/relational-data
841- Relational data - beta feature
- Loading branch information
Showing
69 changed files
with
1,984 additions
and
226 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
.idea/runConfigurations/Example_generation__relational_.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...main/java/com/scottlogic/datahelix/generator/common/output/RelationalGeneratedObject.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Copyright 2019 Scott Logic Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.scottlogic.datahelix.generator.common.output; | ||
|
||
import java.util.Map; | ||
|
||
public interface RelationalGeneratedObject { | ||
Map<String, SubGeneratedObject> getSubObjects(); | ||
} |
27 changes: 27 additions & 0 deletions
27
...on/src/main/java/com/scottlogic/datahelix/generator/common/output/SubGeneratedObject.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Copyright 2019 Scott Logic Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.scottlogic.datahelix.generator.common.output; | ||
|
||
import com.scottlogic.datahelix.generator.common.profile.Field; | ||
|
||
import java.util.List; | ||
|
||
public interface SubGeneratedObject { | ||
List<Field> getFields(); | ||
List<GeneratedObject> getData(); | ||
boolean isArray(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
common/src/main/java/com/scottlogic/datahelix/generator/common/profile/ProfileFields.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* Copyright 2019 Scott Logic Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.scottlogic.datahelix.generator.common.profile; | ||
|
||
import java.util.Iterator; | ||
import java.util.List; | ||
import java.util.stream.Stream; | ||
|
||
public class ProfileFields implements Fields { | ||
private final List<Field> fields; | ||
|
||
public ProfileFields(List<Field> fields) { | ||
this.fields = fields; | ||
} | ||
|
||
public Field getByName(String fieldName) { | ||
return this.fields.stream() | ||
.filter(f -> f.getName().equals(fieldName)) | ||
.findFirst() | ||
.orElseThrow(() -> new IllegalArgumentException("Profile fields do not contain " + fieldName)); | ||
} | ||
|
||
public int size() { | ||
return this.fields.size(); | ||
} | ||
|
||
@Override | ||
public Iterator<Field> iterator() { | ||
return fields.iterator(); | ||
} | ||
|
||
public Stream<Field> stream() { | ||
return this.fields.stream(); | ||
} | ||
|
||
public Stream<Field> getExternalStream() { | ||
return this.stream().filter(f -> !f.isInternal()); | ||
} | ||
|
||
public List<Field> asList() { | ||
return fields; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object obj) { | ||
if (obj == null) { | ||
return false; | ||
} | ||
if (obj.getClass() != getClass()) { | ||
return false; | ||
} | ||
|
||
ProfileFields fields = (ProfileFields) obj; | ||
return this.fields.equals(fields.fields); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return fields.hashCode(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.