Search in sources :

Example 1 with Type

use of model.Type in project tdi-studio-se by Talend.

the class HL7MessageTreeLabelProvider method getColumnText.

public String getColumnText(Object element, int columnIndex) {
    if (element instanceof Type) {
        Type datatype = (Type) element;
        return datatype.getName();
    }
    if (element instanceof IModel) {
        if (element instanceof TypeModel) {
            TypeModel tm = (TypeModel) element;
            allPrimitives.addAll(Arrays.asList(tm.getPrimitives()));
        }
        return ((IModel) element).getDisplayName();
    }
    // }
    if (element instanceof Group) {
        Group group = (Group) element;
        String groupName = group.getName();
        groupName = groupName.substring(groupName.lastIndexOf('.') + 1, groupName.length());
        return groupName;
    }
    if (element instanceof Structure) {
        Structure structure = (Structure) element;
        return structure.getName();
    }
    return null;
}
Also used : Group(ca.uhn.hl7v2.model.Group) Type(ca.uhn.hl7v2.model.Type) IModel(org.talend.designer.hl7.model.IModel) TypeModel(org.talend.designer.hl7.model.TypeModel) Structure(ca.uhn.hl7v2.model.Structure)

Example 2 with Type

use of model.Type in project tdi-studio-se by Talend.

the class TypeModel method getComponent.

private Type getComponent(Type type, int comp) {
    Type ret = null;
    if (Varies.class.isAssignableFrom(type.getClass())) {
        Varies v = (Varies) type;
        try {
            if (comp > 1 && GenericPrimitive.class.isAssignableFrom(v.getData().getClass())) {
                v.setData(new GenericComposite(v.getMessage()));
            }
        } catch (DataTypeException de) {
            String message = "Unexpected exception copying data to generic composite: " + de.getMessage();
            throw new Error(message);
        }
        ret = getComponent(v.getData(), comp);
    } else {
        if (Primitive.class.isAssignableFrom(type.getClass()) && comp == 1) {
            ret = type;
        } else if (GenericComposite.class.isAssignableFrom(type.getClass()) || (Composite.class.isAssignableFrom(type.getClass()) && comp <= numStandardComponents(type))) {
            try {
                ret = ((Composite) type).getComponent(comp - 1);
            } catch (Exception e) {
                throw new Error("Internal error: HL7Exception thrown on getComponent(x) where x < # standard components.", e);
            }
        } else {
            ret = type.getExtraComponents().getComponent(comp - numStandardComponents(type) - 1);
        }
    }
    return ret;
}
Also used : Type(ca.uhn.hl7v2.model.Type) Primitive(ca.uhn.hl7v2.model.Primitive) GenericPrimitive(ca.uhn.hl7v2.model.GenericPrimitive) DataTypeException(ca.uhn.hl7v2.model.DataTypeException) GenericComposite(ca.uhn.hl7v2.model.GenericComposite) Composite(ca.uhn.hl7v2.model.Composite) GenericComposite(ca.uhn.hl7v2.model.GenericComposite) GenericPrimitive(ca.uhn.hl7v2.model.GenericPrimitive) Varies(ca.uhn.hl7v2.model.Varies) DataTypeException(ca.uhn.hl7v2.model.DataTypeException) HL7Exception(ca.uhn.hl7v2.HL7Exception)

Example 3 with Type

use of model.Type in project tdi-studio-se by Talend.

the class SegmentModel method generateDataTypes.

private void generateDataTypes() {
    int number = this.seg.numFields();
    ArrayList<TypeModel> datatypes = new ArrayList<TypeModel>();
    Method method = null;
    try {
        for (Method curMethod : seg.getClass().getDeclaredMethods()) {
            if (curMethod.getName().equals("createNewTypeWithoutReflection")) {
                method = curMethod;
                method.setAccessible(true);
                break;
            }
        }
        if (method != null) {
            // so add test of null in case this method doesn't exist, even if it should be in every subclass.
            for (int i = 0; i < number; i++) {
                Type type = (Type) method.invoke(seg, i);
                TypeModel tm = new TypeModel(type, seg, 0, i + 1);
                datatypes.add(tm);
            }
        }
    } catch (SecurityException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IllegalArgumentException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IllegalAccessException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (InvocationTargetException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    if (method == null) {
        // but it means it won't get optional fields.
        try {
            int lastNotEmptyFiledIndex = 0;
            for (int i = 1; i < number; i++) {
                Type[] reps = seg.getField(i);
                if (reps.length > 0) {
                    lastNotEmptyFiledIndex = i;
                }
            }
            for (int i = 1; i <= lastNotEmptyFiledIndex; i++) {
                Type[] reps = seg.getField(i);
                if (reps.length > 0) {
                    for (int j = 0; j < reps.length; j++) {
                        TypeModel tm = new TypeModel(reps[j], seg, j, i);
                        datatypes.add(tm);
                    }
                } else {
                    // for empty column
                    TypeModel tm = new TypeModel(null, seg, 0, i);
                    datatypes.add(tm);
                }
            }
        } catch (HL7Exception e) {
            e.printStackTrace();
        }
    }
    this.types = datatypes.toArray(new TypeModel[0]);
}
Also used : Type(ca.uhn.hl7v2.model.Type) ArrayList(java.util.ArrayList) HL7Exception(ca.uhn.hl7v2.HL7Exception) Method(java.lang.reflect.Method) InvocationTargetException(java.lang.reflect.InvocationTargetException)

Example 4 with Type

use of model.Type in project tdi-studio-se by Talend.

the class TypeModel method getPrimitive.

public Primitive getPrimitive(Type type, int component, int subcomponent) {
    Type comp = getComponent(type, component);
    Type sub = getComponent(comp, subcomponent);
    return getPrimitive(sub);
}
Also used : Type(ca.uhn.hl7v2.model.Type)

Example 5 with Type

use of model.Type in project nifi by apache.

the class ExtractHL7Attributes method getAllFields.

private static Map<String, Type> getAllFields(final String segmentKey, final Segment segment, final boolean useNames) throws HL7Exception {
    final Map<String, Type> fields = new TreeMap<>();
    final String[] segmentNames = segment.getNames();
    for (int i = 1; i <= segment.numFields(); i++) {
        final Type field = segment.getField(i, 0);
        if (!isEmpty(field)) {
            final String fieldName;
            if (useNames) {
                fieldName = WordUtils.capitalize(segmentNames[i - 1]).replaceAll("\\W+", "");
            } else {
                fieldName = String.valueOf(i);
            }
            final String fieldKey = new StringBuilder().append(segmentKey).append(".").append(fieldName).toString();
            fields.put(fieldKey, field);
        }
    }
    return fields;
}
Also used : Type(ca.uhn.hl7v2.model.Type) TreeMap(java.util.TreeMap)

Aggregations

Type (model.Type)14 Type (ca.uhn.hl7v2.model.Type)10 AlertType (javafx.scene.control.Alert.AlertType)8 ButtonType (javafx.scene.control.ButtonType)5 HL7Exception (ca.uhn.hl7v2.HL7Exception)4 TypeController (controller.controller.TypeController)4 Property (model.Property)4 Composite (ca.uhn.hl7v2.model.Composite)3 ChangeListener (javafx.beans.value.ChangeListener)3 ObservableValue (javafx.beans.value.ObservableValue)3 Alert (javafx.scene.control.Alert)3 TreeItem (javafx.scene.control.TreeItem)3 KeyEvent (javafx.scene.input.KeyEvent)3 Category (model.Category)3 Group (ca.uhn.hl7v2.model.Group)2 Segment (ca.uhn.hl7v2.model.Segment)2 Structure (ca.uhn.hl7v2.model.Structure)2 Varies (ca.uhn.hl7v2.model.Varies)2 ArrayList (java.util.ArrayList)2 TreeMap (java.util.TreeMap)2