Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
A
arpeggio-gm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
backend
arpeggio-gm
Commits
ade85d0f
Commit
ade85d0f
authored
Oct 12, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed depracated textx examples.
parent
9205a7e5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
483 deletions
+0
-483
dommlite.tx
examples/textx/dommlite.tx
+0
-238
experiment.pf
examples/textx/experiment.pf
+0
-120
pyflies.tx
examples/textx/pyflies.tx
+0
-90
textx.py
examples/textx/textx.py
+0
-35
No files found.
examples/textx/dommlite.tx
deleted
100644 → 0
View file @
9205a7e5
DOMMLiteModel:
"model" name=ID (shortDesc=STRING)? (longDesc=STRING)?
((dataTypes+=UserDataType)|
(constraintTypes+=ConstraintType))*
packages*=Package;
PackageElement:
Package|Classifier;
Classifier:
Entity|Service|ValueObject|Exception|DataType|ConstraintType;
DataType:
BuildInDataType|UserDataType|Enumeration;
ConstraintType:
ValidatorType|TagType;
ValidatorType:
UserValidatorType|BuildInValidatorType;
TagType:
UserTagType|BuildInTagType;
Feature:
Property|Operation;
TypedElement:
Feature|Parameter;
NamedElement:
DOMMLiteModel|PackageElement|FeatureCompartment|OperationCompartment|EnumerationLiteral|TypedElement;
/* Ugradeni elementi modela ne bi trebalo da se definisu u modelu vec trebaju biti automatski prisutni u svakom modelu*/
BuildInDataType:
"buildinDataType" name=ID
(shortDesc=STRING)? (longDesc=STRING)?;
BuildInValidatorType:
"buildinValidator" name=ID
("("(parameters+=ConstraintTypeParameter)?(","parameters+=ConstraintTypeParameter)* ")")?
("appliesTo"
((appliesToEntity?="_entity") |
(appliesToProperty?="_prop") |
(appliesToParameter?="_param") |
(appliesToOperation?="_op") |
(appliesToService?="_service") |
(appliesToValueObject?="_valueObject"))*)?
(shortDesc=STRING)? (longDesc=STRING)?;
BuildInTagType:
"buildinTagType" name=ID
("("(parameters+=ConstraintTypeParameter)?(","parameters+=ConstraintTypeParameter)* ")")?
("appliesTo"
((appliesToEntity?="_entity") |
(appliesToProperty?="_prop") |
(appliesToParameter?="_param") |
(appliesToOperation?="_op") |
(appliesToService?="_service") |
(appliesToValueObject?="_valueObject"))*)?
(shortDesc=STRING)? (longDesc=STRING)?;
UserDataType:
"dataType" name=ID (shortDesc=STRING)? (longDesc=STRING)?;
UserTagType:
"tagType" name=ID
("("(parameters+=ConstraintTypeParameter)?(","parameters+=ConstraintTypeParameter)* ")")?
("appliesTo"
((appliesToEntity?="_entity") |
(appliesToProperty?="_prop") |
(appliesToParameter?="_param") |
(appliesToOperation?="_op") |
(appliesToService?="_service") |
(appliesToValueObject?="_valueObject"))*)?
(shortDesc=STRING)? (longDesc=STRING)?;
UserValidatorType:
"validatorType" name=ID
("("(parameters+=ConstraintTypeParameter)?(","parameters+=ConstraintTypeParameter)* ")")?
("appliesTo"
((appliesToEntity?="_entity") |
(appliesToProperty?="_prop") |
(appliesToParameter?="_param") |
(appliesToOperation?="_op") |
(appliesToService?="_service") |
(appliesToValueObject?="_valueObject"))*)?
(shortDesc=STRING)? (longDesc=STRING)?;
Enum ConstraintTypeParameter:
string="_string"|
int="_int" |
ref="_ref" |
ellipsis="..."
;
Package:
"package" name=ID (shortDesc=STRING)? (longDesc=STRING)? "{"
(packageElements+=PackageElement)*
"}";
Entity:
"entity" name=ID
("extends" extends=[Entity])?
("depends" depends+=[Service] ("," depends+=[Service])*)?
(shortDesc=STRING)? (longDesc=STRING)?
"{"
key=BusinessKey
("repr" repr+=ReprParameter ("+" repr+=ReprParameter)*)?
("[" constraints+=ConstraintSpec ("," constraints+=ConstraintSpec)* "]")?
(features+=Feature)*
(featureCompartments+=FeatureCompartment)*
"}";
ReprParameter:
ReprParameterStr|ReprParameterRef;
ReprParameterStr:
paramValue=STRING;
ReprParameterRef:
paramValue=[Property];
BusinessKey:
"key" "{"
(properties+=Property)+
"}";
ConstraintSpec:
type=[ConstraintType] ("(" (parameters+=ConstraintParameter)? ("," parameters+=ConstraintParameter)* ")")?
;
ConstraintParameter:
ConstraintIntParameter|ConstraintRefParameter|ConstraintStrParameter
;
ConstraintStrParameter:
paramValue=STRING
;
ConstraintIntParameter:
paramValue=INT
;
ConstraintRefParameter:
paramValue = [Property]
;
Exception:
"exception" name=ID (shortDesc=STRING)? (longDesc=STRING)? "{"
(properties+=Property)*
"}";
FeatureCompartment:
"compartment" name=ID (shortDesc=STRING)? (longDesc=STRING)? "{"
(features+=Feature)*
"}";
Service:
"service" name=ID
("extends" extends=[Service])?
("depends" depends+=[Service] ("," depends+=[Service])*)?
(shortDesc=STRING)? (longDesc=STRING)?
"{"
("[" constraints+=ConstraintSpec ("," constraints+=ConstraintSpec)* "]")?
(operations+=Operation)*
(operationCompartmens+=OperationCompartment)*
"}";
OperationCompartment:
"compartment" name=ID (shortDesc=STRING)? (longDesc=STRING)? "{"
(operations+=Operation)*
"}";
ValueObject:
"valueObject" name=ID
("extends" extends=[ValueObject])?
("depends" depends+=[Entity] ("," depends+=[Entity])*)?
(shortDesc=STRING)? (longDesc=STRING)?
"{"
("[" constraints+=ConstraintSpec ("," constraints+=ConstraintSpec)* "]")?
(properties+=Property)*
"}";
Operation:
"op" ( (ordered?="ordered") |
(unique?="unique") |
(required?="required"))*
type=[Classifier] (many?="[" (multiplicity=INT)? "]")?
name=ID "("(parameters+=Parameter)?(","parameters+=Parameter)* ")"
("throws" exceptions+=[Exception] ("," exceptions+=[Exception])?)?
("[" constraints+=ConstraintSpec ("," constraints+=ConstraintSpec)* "]")?
(shortDesc=STRING)? (longDesc=STRING)?;
/*
Atribut i referenca su objedinjeni u jedinstvenom konceptu property
*/
Property:
"prop"
( (ordered?="ordered") |
(unique?="unique") |
(readonly?="readonly") |
(required?="required") )*
(containment?="+")?
type=[Classifier] (many?="[" (multiplicity=INT)? "]")? name=ID
("<>" oppositeEnd=[Property])?
("[" constraints+=ConstraintSpec ("," constraints+=ConstraintSpec)* "]")?
(shortDesc=STRING)? (longDesc=STRING)?
;
Parameter:
( (ordered?="ordered") |
(unique?="unique") |
(required?="required") )*
type=[Classifier] (many?="[" (multiplicity=INT)? "]")? name=ID
("[" constraints+=ConstraintSpec ("," constraints+=ConstraintSpec)* "]")?
(shortDesc=STRING)? (longDesc=STRING)?
;
Enumeration:
"enum" name=ID (shortDesc=STRING)? (longDesc=STRING)? "{"
(literals+=EnumerationLiteral)+
"}";
EnumerationLiteral:
name=ID value=STRING (shortDesc=STRING)? (longDesc=STRING)?;
// Enum DataType:
// Str="string"|Integer="int"|Boolean="bool"|DateTime="datetime"|Void="void"|Float="float";
examples/textx/experiment.pf
deleted
100644 → 0
View file @
9205a7e5
# This is a reference example file that demonstrates all
# features of pyflies language
# base abstract test
# Used to specify timings for each test in the
# experiment
test base {
tmin 3000
tmax 5000
twait 3000
}
# test definition for simple visual
# this test is non-abstract (defines visual simple test type)
# but will not be used directly in experiment definition.
# It will be used as a base for all visual simple tests
# in this experiment.
test mytest:visual_simple {
shape square
size large
color white
}
# Inheritance.
# This test definition is non-abstract.
# It inherits definition from base and mytest
# therefore it does not need to specify test type or
# timing settings.
test mytest_3 < base, mytest {
trials 3
}
# This test is same as previous but defines
# a 30 trials to run.
test mytest_30< base, mytest {
trials 30
}
# Experiment consist of a sequence of blocks
# (tests, introductions, sequences and randomize).
experiment {
# subject block will collect data about
# the subject under experiment.
# A user will be presented with the GUI form to
# fill it. Experimenter may fill this on behalf of the subject.
# The form of the each subject line is:
# Variable_name, type, optional label
# Type can be: str, int, float or enumerated list
subject {
full_name string "First and last name"
age int
gender [Male, Female] "Gender"
}
# This is here just to show that test may be
# put under experiment directly.
# If the tests run in sequence (without randomization)
# this is an easiest way to define it.
test mytest_3
randomize {
# Following two sequences will
# be randomized.
# Sequence block will be performed in
# the order of definition.
sequence {
# This is an introduction to the following test.
# Introduction is text between ======== separators.
# Separator consist of at least 3 '=' characters.
================
Welcome
-------
In the following test you will be presented with a blank screen
where a white square will appear after a few seconds.
You should react by pressing the space bar as fast as you can when
the square appears.
This is a practice test with 3 trials.
Afterwards the real test will run with 30 trials.
Press space bar
================
# This test will run in practice mode.
# This mode tells experiment runner
# not to collect any sample data.
test mytest_3 practice
================
Real test with 30 trials
------------------------
Press space bar
================
# This is the real test run. Samples will be collected.
Test mytest_30
}
# This is here just to show that randomize block should contain
# more than 1 block. Those block runs will be randomized.
sequence {
test mytest_3 practice
=======
This is heading
---------------
This is just to show another introduction screen.
=======
test mytest_30
}
}
}
examples/textx/pyflies.tx
deleted
100644 → 0
View file @
9205a7e5
/*
This is a textX specification of pyFlies DSL for Reaction Time test
experiments definition.
Author: Igor R. Dejanovic <igor DOT dejanovic AT gmail DOT com>
Copyright: (c) 2014 Igor R. Dejanovic <igor DOT dejanovic AT gmail DOT com>
License: MIT License
*/
PyFliesModel:
elements+=ModelElement
;
ModelElement:
TestDef|Experiment
;
TestDef:
"test" name=ID (":" test_type=TestType)? ( "<" inherits*={[TestDef] ","} )? "{"
params=TestParam*
"}"
;
TestType:
name=ID
;
TestParam:
name=ID value=(ID|INT|FLOAT|STRING)
;
/* TestParamValue: */
/* (value=ID|FLOAT|INT|STRING)|( '[' value+={ID ","} ']') */
/* ; */
TestParamLabel:
label = STRING
;
Block:
Intro|Test|Sequence|Randomize|Subject
;
Experiment:
'experiment' '{'
blocks=Block*
'}'
;
Sequence:
'sequence' '{'
blocks=Block*
'}'
;
Randomize:
'randomize' '{'
blocks=Block*
'}'
;
Test:
'test' type=[TestDef] practice?="practice"
;
Intro:
/====*/
content=/([^=][^=]?[^=]?)*/
/====*/
;
Subject:
'subject' '{'
attribute+=SubjectAttribute
'}'
;
SubjectAttribute:
name=ID type=("int"|"string"|"float"|Enum) label=STRING?
;
Enum:
'[' values+={ID ','} ']'
;
// Special rule for comments
Comment:
/#.*$/
;
examples/textx/textx.py
deleted
100644 → 0
View file @
9205a7e5
#######################################################################
# Name: textx.py
# Purpose: Demonstration of textX meta-language.
# Author: Igor R. Dejanovic <igor DOT dejanovic AT gmail DOT com>
# Copyright: (c) 2014 Igor R. Dejanovic <igor DOT dejanovic AT gmail DOT com>
# License: MIT License
#######################################################################
from
arpeggio.textx
import
get_parser
def
main
(
debug
=
False
):
# Load textX description of the language
with
open
(
'pyflies.tx'
,
'r'
)
as
f
:
language_def
=
f
.
read
()
# Create parser for the new lanuage
parser
=
get_parser
(
language_def
,
debug
=
debug
)
# Parse pyflies example
with
open
(
'experiment.pf'
)
as
f
:
pyflies_input
=
f
.
read
()
parse_tree
=
parser
.
parse
(
pyflies_input
)
# Construct model from the parse_tree
model
=
parser
.
get_model
()
print
(
model
)
if
__name__
==
"__main__"
:
# In debug mode dot (graphviz) files for parser model
# and parse tree will be created for visualization.
# Checkout current folder for .dot files.
main
(
debug
=
True
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment