samples/uml2sql.yml2
author Volker Birk <vb@pep.foundation>
Tue, 20 Nov 2018 22:35:38 +0100
changeset 24 1cb8f7566a07
parent 0 76005e62091d
permissions -rw-r--r--
Added tag 2.5.9 for changeset 8138b86a9196
define operator "†(\w+)" as call "printType" with "name", "%1";
define operator "“(.*?)”" as call "ucase" with "text", "%1";

function "ucase" {
    param "text";

    > «translate(substring($text, 1, 1), 'abcdefghijklmnopqrstuvwxyz', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')»
    > «substring($text, 2)»
}

function "printType" {
    param "name";

    choose {
        when '$name/@href = "http://schema.omg.org/spec/UML/2.1/uml.xml#UnlimitedNatural"'
            > INTEGER
        when '$name/@href = "http://schema.omg.org/spec/UML/2.1/uml.xml#String"'
            > VARCHAR
    }
}