-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature(concero) Add new version of metamodel
Signed-off-by: jeromesimeon <[email protected]>
- Loading branch information
1 parent
e992da2
commit 0fa6720
Showing
1 changed file
with
210 additions
and
0 deletions.
There are no files selected for viewing
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,210 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
namespace concerto.metamodel | ||
|
||
/** | ||
* The metadmodel for Concerto files | ||
*/ | ||
abstract concept DecoratorLiteral { | ||
} | ||
|
||
concept DecoratorString extends DecoratorLiteral { | ||
o String value | ||
} | ||
|
||
concept DecoratorNumber extends DecoratorLiteral { | ||
o Double value | ||
} | ||
|
||
concept DecoratorBoolean extends DecoratorLiteral { | ||
o Boolean value | ||
} | ||
|
||
concept TypeIdentifier { | ||
@FormEditor("selectOptions", "types") | ||
o String name | ||
} | ||
|
||
concept DecoratorIdentifier extends DecoratorLiteral { | ||
o TypeIdentifier identifier | ||
o Boolean isArray default=false | ||
} | ||
|
||
concept Decorator { | ||
o String name | ||
o DecoratorLiteral[] arguments optional | ||
} | ||
|
||
concept Identified { | ||
} | ||
|
||
concept IdenfiedBy extends Identified { | ||
o String name | ||
} | ||
|
||
@FormEditor("defaultSubclass","concerto.metamodel.ConceptDeclaration") | ||
abstract concept ClassDeclaration { | ||
@FormEditor("hide", true) | ||
o Decorator[] decorators optional | ||
o Boolean isAbstract default=false | ||
// TODO use regex /^(?!null|true|false)(\\p{Lu}|\\p{Ll}|\\p{Lt}|\\p{Lm}|\\p{Lo}|\\p{Nl}|\\$|_|\\\\u[0-9A-Fa-f]{4})(?:\\p{Lu}|\\p{Ll}|\\p{Lt}|\\p{Lm}|\\p{Lo}|\\p{Nl}|\\$|_|\\\\u[0-9A-Fa-f]{4}|\\p{Mn}|\\p{Mc}|\\p{Nd}|\\p{Pc}|\\u200C|\\u200D)*/u | ||
@FormEditor("title", "name") | ||
o String name // regex=/^(?!null|true|false)(\\w|\\d|\\$|_|\\\\u[0-9A-Fa-f]{4})(?:\\w|\\d|\\$|_|\\\\u[0-9A-Fa-f]{4}|\\S|\\u200C|\\u200D)*$/ | ||
o Identified identified optional | ||
@FormEditor("title", "parentType") | ||
o TypeIdentifier superType optional | ||
o FieldDeclaration[] fields | ||
} | ||
|
||
concept AssetDeclaration extends ClassDeclaration { | ||
} | ||
|
||
concept ParticipantDeclaration extends ClassDeclaration { | ||
} | ||
|
||
concept TransactionDeclaration extends ClassDeclaration { | ||
} | ||
|
||
concept EventDeclaration extends ClassDeclaration { | ||
} | ||
|
||
concept ConceptDeclaration extends ClassDeclaration { | ||
} | ||
|
||
concept EnumDeclaration extends ClassDeclaration { | ||
} | ||
|
||
concept StringDefault { | ||
o String value | ||
} | ||
|
||
concept BooleanDefault { | ||
o Boolean value | ||
} | ||
|
||
concept IntegerDefault { | ||
o Integer value | ||
} | ||
|
||
concept LongDefault { | ||
o Long value | ||
} | ||
|
||
concept DoubleDefault { | ||
o Double value | ||
} | ||
|
||
@FormEditor("defaultSubclass","concerto.metamodel.StringFieldDeclaration") | ||
abstract concept FieldDeclaration { | ||
// TODO Allow regex modifiers e.g. //ui | ||
// regex /^(?!null|true|false)(\\p{Lu}|\\p{Ll}|\\p{Lt}|\\pLm}|\\p{Lo}|\\p{Nl}|\\$|_|\\\\u[0-9A-Fa-f]{4})(?:\\p{Lu}|\\p{Ll}|\\p{Lt}|\\p{Lm}|\\p{Lo}|\\p{Nl}|\\$|_|\\\\u[0-9A-Fa-f]{4}|\\p{Mn}|\\p{Mc}|\\p{Nd}|\\p{Pc}|\\u200C|\\u200D)*/u | ||
// This regex is an approximation of what the parser accepts without using unicode character classes | ||
o String name // regex=/^(?!null|true|false)(\\w|\\d|\\$|_|\\\\u[0-9A-Fa-f]{4})(?:\\w|\\d|\\$|_|\\\\u[0-9A-Fa-f]{4}|\\S|\\u200C|\\u200D)*$/ | ||
@FormEditor("title", "isArray?") | ||
o Boolean isArray | ||
@FormEditor("title", "isOptional?") | ||
o Boolean isOptional | ||
@FormEditor("hide", true) | ||
o Decorator[] decorators optional | ||
} | ||
|
||
concept ObjectFieldDeclaration extends FieldDeclaration { | ||
@FormEditor("hide", true) | ||
o StringDefault defaultValue optional | ||
@FormEditor("title", "typeIdentifier", "selectOptions", "types") | ||
o TypeIdentifier type | ||
} | ||
|
||
concept EnumFieldDeclaration extends FieldDeclaration { | ||
} | ||
|
||
concept BooleanFieldDeclaration extends FieldDeclaration { | ||
@FormEditor("hide", true) | ||
o BooleanDefault defaultValue optional | ||
} | ||
|
||
concept DateTimeFieldDeclaration extends FieldDeclaration { | ||
} | ||
|
||
concept StringFieldDeclaration extends FieldDeclaration { | ||
@FormEditor("hide", true) | ||
o StringDefault defaultValue optional | ||
@FormEditor("hide", true) | ||
o StringRegexValidator validator optional | ||
} | ||
|
||
concept StringRegexValidator { | ||
o String regex | ||
} | ||
|
||
concept DoubleDomainValidator { | ||
o Double lower optional | ||
o Double upper optional | ||
} | ||
|
||
concept IntegerDomainValidator { | ||
o Integer lower optional | ||
o Integer upper optional | ||
} | ||
|
||
concept LongDomainValidator { | ||
o Long lower optional | ||
o Long upper optional | ||
} | ||
|
||
concept DoubleFieldDeclaration extends FieldDeclaration { | ||
o DoubleDefault defaultValue optional | ||
o DoubleDomainValidator validator optional | ||
} | ||
|
||
concept IntegerFieldDeclaration extends FieldDeclaration { | ||
@FormEditor("hide", true) | ||
o IntegerDefault defaultValue optional | ||
@FormEditor("hide", true) | ||
o IntegerDomainValidator validator optional | ||
} | ||
|
||
concept LongFieldDeclaration extends FieldDeclaration { | ||
@FormEditor("hide", true) | ||
o LongDefault defaultValue optional | ||
@FormEditor("hide", true) | ||
o LongDomainValidator validator optional | ||
} | ||
|
||
concept RelationshipDeclaration extends FieldDeclaration { | ||
@FormEditor("title", "typeIdentifier", "selectOptions", "types") | ||
o TypeIdentifier type | ||
} | ||
|
||
abstract concept Import { | ||
o String namespace | ||
o String uri optional | ||
} | ||
|
||
concept ImportAll extends Import { | ||
} | ||
|
||
concept ImportType extends Import { | ||
o TypeIdentifier identifier | ||
} | ||
|
||
concept ModelFile { | ||
@FormEditor("hide", true) | ||
o String namespace | ||
@FormEditor("hide", true) | ||
o Import[] imports optional | ||
@FormEditor("title", "classes") | ||
o ClassDeclaration[] declarations optional | ||
} |