Ejemplo n.º 1
0
        protected virtual ConstraintBindingSet[] CloneConstraintBindingSet(EiffelStructures.table.HASH_TABLE_REFERENCE_REFERENCE o)
        {
            ConstraintBindingSet[] result = null;

            if (o != null && o.count() > 0)
            {
                result = new ConstraintBindingSet[o.count()];
                o.start();

                for (int i = 1; i <= result.Length; i++)
                {
                    ConstraintBindingSet constraintBindingSet = new ConstraintBindingSet();
                    constraintBindingSet.terminology = o.key_for_iteration().ToString();
                    EiffelStructures.table.Impl.HASH_TABLE_REFERENCE_REFERENCE adlTerms = o.item_for_iteration() as EiffelStructures.table.Impl.HASH_TABLE_REFERENCE_REFERENCE;
                    CONSTRAINT_BINDING_ITEM[] localTerms = new CONSTRAINT_BINDING_ITEM[adlTerms.count()];
                    adlTerms.start();

                    for (int j = 1; j <= adlTerms.count(); j++)
                    {
                        openehr.common_libs.basic.Impl.URI term      = adlTerms.item_for_iteration() as openehr.common_libs.basic.Impl.URI;
                        CONSTRAINT_BINDING_ITEM            localTerm = new CONSTRAINT_BINDING_ITEM();
                        localTerm.code    = adlTerms.key_for_iteration().ToString();
                        localTerm.value   = adlTerms.item_for_iteration().ToString();
                        localTerms[j - 1] = localTerm;
                        adlTerms.forth();
                    }

                    constraintBindingSet.items = localTerms;
                    result[i - 1] = constraintBindingSet;
                    o.forth();
                }
            }

            return(result);
        }
Ejemplo n.º 2
0
        protected virtual TermBindingSet[] CloneTermBindingSet(EiffelStructures.table.HASH_TABLE_REFERENCE_REFERENCE o)
        {
            TermBindingSet[] result = null;

            if (o != null && o.count() > 0)
            {
                result = new TermBindingSet[o.count()];
                o.start();

                for (int i = 1; i <= o.count(); i++)
                {
                    TermBindingSet termBindingSet = new TermBindingSet();
                    termBindingSet.terminology = o.key_for_iteration().ToString();

                    EiffelStructures.table.Impl.HASH_TABLE_REFERENCE_REFERENCE adlTerms = o.item_for_iteration() as EiffelStructures.table.Impl.HASH_TABLE_REFERENCE_REFERENCE;
                    SortedList <string, TERM_BINDING_ITEM> localTerms = new SortedList <string, TERM_BINDING_ITEM>();
                    adlTerms.start();

                    for (int j = 1; j <= adlTerms.count(); j++)
                    {
                        openehr.openehr.rm.data_types.text.CODE_PHRASE term = adlTerms.item_for_iteration() as openehr.openehr.rm.data_types.text.CODE_PHRASE;

                        if (term != null)
                        {
                            TERM_BINDING_ITEM localTerm = new TERM_BINDING_ITEM();
                            localTerm.code = adlTerms.key_for_iteration().ToString();
                            CODE_PHRASE codePhrase = new CODE_PHRASE();
                            codePhrase.code_string = term.code_string().ToString();

                            if (term.code_string() != null)
                            {
                                TERMINOLOGY_ID terminologyId = new TERMINOLOGY_ID();
                                terminologyId.value       = term.terminology_id().value().ToString();
                                codePhrase.terminology_id = terminologyId;
                            }

                            localTerm.value = codePhrase;
                            localTerms.Add(localTerm.code, localTerm);
                        }

                        adlTerms.forth();
                    }

                    termBindingSet.items = new TERM_BINDING_ITEM[localTerms.Count];
                    localTerms.Values.CopyTo(termBindingSet.items, 0);
                    result[i - 1] = termBindingSet;
                    o.forth();
                }
            }

            return(result);
        }
Ejemplo n.º 3
0
        protected virtual CodeDefinitionSet[] CloneCodeDefinitions(EiffelStructures.table.HASH_TABLE_REFERENCE_REFERENCE o)
        {
            CodeDefinitionSet[] result = null;

            if (o != null)
            {
                result = new CodeDefinitionSet[o.count()];
                o.start();

                for (int i = 1; i <= result.Length; i++)
                {
                    CodeDefinitionSet codeDefinitionSet = new CodeDefinitionSet();
                    codeDefinitionSet.language = o.key_for_iteration().ToString();
                    EiffelStructures.table.Impl.HASH_TABLE_REFERENCE_REFERENCE adlTerms = o.item_for_iteration() as EiffelStructures.table.Impl.HASH_TABLE_REFERENCE_REFERENCE;
                    SortedList <string, ARCHETYPE_TERM> localTerms = new SortedList <string, ARCHETYPE_TERM>();
                    adlTerms.start();

                    for (int j = 1; j <= adlTerms.count(); j++)
                    {
                        openehr.openehr.am.archetype.ontology.Impl.ARCHETYPE_TERM term = adlTerms.item_for_iteration() as openehr.openehr.am.archetype.ontology.Impl.ARCHETYPE_TERM;
                        ARCHETYPE_TERM localTerm = new ARCHETYPE_TERM();
                        localTerm.code  = term.code().ToString();
                        localTerm.items = CloneHashTableAny(term.items());
                        localTerms.Add(localTerm.code, localTerm);
                        adlTerms.forth();
                    }

                    codeDefinitionSet.items = new ARCHETYPE_TERM[localTerms.Count];
                    localTerms.Values.CopyTo(codeDefinitionSet.items, 0);
                    CleanUpCodeDefinitionSet(codeDefinitionSet);
                    result[i - 1] = codeDefinitionSet;
                    o.forth();
                }
            }

            return(result);
        }
Ejemplo n.º 4
0
        protected virtual StringDictionaryItem[] CloneHashTableAny(EiffelStructures.table.HASH_TABLE_REFERENCE_REFERENCE o)
        {
            StringDictionaryItem[] result = null;

            if (o != null && o.count() > 0)
            {
                SortedList <string, StringDictionaryItem> dictionaryItem = new SortedList <string, StringDictionaryItem>();
                o.start();

                while (!o.off())
                {
                    StringDictionaryItem item = new StringDictionaryItem();
                    item.id    = o.key_for_iteration().ToString();
                    item.Value = o.item_for_iteration().ToString();
                    dictionaryItem.Add(item.id, item);
                    o.forth();
                }

                result = new StringDictionaryItem[dictionaryItem.Count];
                dictionaryItem.Values.CopyTo(result, 0);
            }

            return(result);
        }
        protected override TermBindingSet[] CloneTermBindingSet(EiffelSoftware.Library.Base.structures.table.HASH_TABLE_REFERENCE_REFERENCE currentObject)
        {
            List <TermBindingSet> termBindingSets = new List <TermBindingSet>();

            if (currentObject != null)
            {
                if (currentObject.count() > 0)
                {
                    currentObject.start();

                    // 0..* items TERM_BINDING_ITEM
                    for (int i = 1; i <= currentObject.count(); i++)
                    {
                        TermBindingSet termBindingSet = new TermBindingSet();

                        //1 terminology string
                        termBindingSet.terminology = currentObject.key_for_iteration().ToString();

                        //terms HASH table
                        EiffelStructures.table.Impl.HASH_TABLE_REFERENCE_REFERENCE adlTerms;
                        adlTerms = currentObject.item_for_iteration() as EiffelStructures.table.Impl.HASH_TABLE_REFERENCE_REFERENCE;
                        SortedList <string, TERM_BINDING_ITEM> localTerms = new SortedList <string, TERM_BINDING_ITEM>();

                        adlTerms.start();

                        if (adlTerms.count() > 0)
                        {
                            for (int j = 1; j <= adlTerms.count(); j++)
                            {
                                openehr.openehr.rm.data_types.text.CODE_PHRASE term = adlTerms.item_for_iteration() as openehr.openehr.rm.data_types.text.CODE_PHRASE;

                                if (term != null)
                                {
                                    TERM_BINDING_ITEM localTerm = new TERM_BINDING_ITEM();

                                    // 1 code string
                                    localTerm.code = adlTerms.key_for_iteration().ToString();

                                    // 1 value CODE_PHRASE (CODE_PHRASE to HASH TABLE)
                                    CODE_PHRASE codePhrase = new CODE_PHRASE();

                                    // 1 code_string string
                                    codePhrase.code_string = term.code_string().ToString();

                                    // 1 terminology_id TERMINOLOGY_ID
                                    if (term.code_string() != null)
                                    {
                                        TERMINOLOGY_ID terminologyId = new TERMINOLOGY_ID();
                                        terminologyId.value       = term.terminology_id().value().ToString();
                                        codePhrase.terminology_id = terminologyId;
                                    }

                                    localTerm.value = codePhrase;
                                    localTerms.Add(localTerm.code, localTerm);
                                }

                                adlTerms.forth();
                            }

                            termBindingSet.items = new TERM_BINDING_ITEM[localTerms.Count];
                            localTerms.Values.CopyTo(termBindingSet.items, 0);
                        }

                        if (termBindingSet.items != null)
                        {
                            termBindingSets.Add(termBindingSet);
                        }

                        currentObject.forth();
                    }
                }
            }

            if (termBindingSets.Count > 0)
            {
                TermBindingSet[] termBindingSetArray = new TermBindingSet[termBindingSets.Count];
                termBindingSets.CopyTo(termBindingSetArray);
                return(termBindingSetArray);
            }
            else
            {
                return(null);
            }
        }