use of org.talend.daikon.properties.property.SchemaProperty in project tdi-studio-se by Talend.
the class ComponentsUtils method getParametersFromForm.
/**
* DOC ycbai Comment method "loadParametersFromForm".
* <p>
* Get element parameters of <code>element</code> from <code>form</code>.
*
* @param node optional, used if there is a component setting up the properties
* @param element
* @param category
* @param form
* @return parameters list
*/
private static List<ElementParameter> getParametersFromForm(IElement element, boolean isInitializing, EComponentCategory category, ComponentProperties rootProperty, Properties compProperties, String parentPropertiesPath, Form form, Widget parentWidget, AtomicInteger lastRowNum) {
List<ElementParameter> elementParameters = new ArrayList<>();
List<String> parameterNames = new ArrayList<>();
EComponentCategory compCategory = category;
if (compCategory == null) {
compCategory = EComponentCategory.BASIC;
}
AtomicInteger lastRN = lastRowNum;
if (lastRN == null) {
lastRN = new AtomicInteger();
}
if (form == null) {
return elementParameters;
}
Properties componentProperties = compProperties;
if (componentProperties == null) {
componentProperties = form.getProperties();
}
if (element instanceof INode) {
INode node = (INode) element;
// Set the properties only one time to get the top-level properties object
if (node.getComponentProperties() == null) {
node.setComponentProperties(rootProperty);
}
}
// Have to initialize for the messages
Collection<Widget> formWidgets = form.getWidgets();
for (Widget widget : formWidgets) {
NamedThing widgetProperty = widget.getContent();
String propertiesPath = getPropertiesPath(parentPropertiesPath, null);
if (widgetProperty instanceof Form) {
Form subForm = (Form) widgetProperty;
Properties subProperties = subForm.getProperties();
// Reset properties path
if (!isSameComponentProperties(componentProperties, widgetProperty)) {
propertiesPath = getPropertiesPath(parentPropertiesPath, subProperties.getName());
}
elementParameters.addAll(getParametersFromForm(element, isInitializing, compCategory, rootProperty, subProperties, propertiesPath, subForm, widget, lastRN));
continue;
}
GenericElementParameter param = new GenericElementParameter(element, rootProperty, form, widget, getComponentService());
String parameterName = propertiesPath.concat(param.getName());
param.setName(parameterName);
param.setCategory(compCategory);
param.setShow(parentWidget == null ? !widget.isHidden() : !parentWidget.isHidden() && !widget.isHidden());
int rowNum = 0;
if (widget.getOrder() != 1) {
rowNum = lastRN.get();
} else {
rowNum = widget.getRow();
if (parentWidget != null) {
rowNum += parentWidget.getRow();
}
rowNum = rowNum + lastRN.get();
}
param.setNumRow(rowNum);
lastRN.set(rowNum);
// handle form...
EParameterFieldType fieldType = getFieldType(widget, widgetProperty);
param.setFieldType(fieldType != null ? fieldType : EParameterFieldType.TEXT);
if (widgetProperty instanceof SchemaProperty) {
boolean found = false;
// set a default connector
param.setContext(EConnectionType.FLOW_MAIN.getName());
for (Connector connector : rootProperty.getPossibleConnectors(true)) {
if (!(((SchemaProperty) widgetProperty).getValue() instanceof Schema)) {
continue;
}
if (connector instanceof PropertyPathConnector) {
//$NON-NLS-1$
String linkedSchema = ((PropertyPathConnector) connector).getPropertyPath() + ".schema";
if (parameterName.equals(linkedSchema)) {
found = true;
param.setContext(connector.getName());
IElementParameterDefaultValue defaultValue = new ElementParameterDefaultValue();
Schema schema = ((SchemaProperty) widgetProperty).getValue();
defaultValue.setDefaultValue(new Schema.Parser().parse(schema.toString()));
param.getDefaultValues().add(defaultValue);
}
}
}
if (!found) {
// compatibility.
for (Connector connector : rootProperty.getPossibleConnectors(false)) {
if (!(((SchemaProperty) widgetProperty).getValue() instanceof Schema)) {
continue;
}
if (connector instanceof PropertyPathConnector) {
//$NON-NLS-1$
String linkedSchema = ((PropertyPathConnector) connector).getPropertyPath() + ".schema";
if (parameterName.equals(linkedSchema)) {
if (GenericNodeConnector.INPUT_CONNECTOR.equals(connector.getName())) {
param.setContext(EConnectionType.FLOW_MAIN.getName());
} else {
param.setContext(connector.getName());
}
IElementParameterDefaultValue defaultValue = new ElementParameterDefaultValue();
Schema schema = ((SchemaProperty) widgetProperty).getValue();
defaultValue.setDefaultValue(new Schema.Parser().parse(schema.toString()));
param.getDefaultValues().add(defaultValue);
}
}
}
}
}
if (widgetProperty instanceof PresentationItem) {
param.setValue(widgetProperty.getDisplayName());
} else if (widgetProperty instanceof Property) {
Property property = (Property) widgetProperty;
param.setRequired(property.isRequired());
param.setValue(getParameterValue(element, property, fieldType));
boolean isNameProperty = IGenericConstants.NAME_PROPERTY.equals(param.getParameterName());
if (EParameterFieldType.NAME_SELECTION_AREA.equals(fieldType) || EParameterFieldType.JSON_TABLE.equals(fieldType) || EParameterFieldType.CLOSED_LIST.equals(fieldType) || EParameterFieldType.CHECK.equals(fieldType) || isNameProperty) {
// Disable context support for those filed types and name parameter.
param.setSupportContext(false);
} else {
param.setSupportContext(isSupportContext(property));
}
property.setTaggedValue(IComponentConstants.SUPPORT_CONTEXT, param.isSupportContext());
Object cmTV = property.getTaggedValue(IGenericConstants.IS_CONTEXT_MODE);
param.setReadOnly(Boolean.valueOf(String.valueOf(cmTV)));
boolean isDynamic = Boolean.valueOf(String.valueOf(property.getTaggedValue(IGenericConstants.IS_DYNAMIC)));
param.setContextMode(isDynamic);
List<?> values = property.getPossibleValues();
if (values != null || EParameterFieldType.CLOSED_LIST.equals(fieldType)) {
if (values == null) {
values = Collections.emptyList();
}
param.setPossibleValues(values);
List<String> possVals = new ArrayList<>();
List<String> possValsDisplay = new ArrayList<>();
for (Object obj : values) {
String value = null;
String valueDisplay = null;
if (obj instanceof NamedThing) {
NamedThing nal = (NamedThing) obj;
value = nal.getName();
valueDisplay = nal.getDisplayName();
} else {
value = String.valueOf(obj);
valueDisplay = String.valueOf(obj);
}
String pvDisplayName = property.getPossibleValuesDisplayName(obj);
if (StringUtils.isNotBlank(pvDisplayName) && !"null".equals(pvDisplayName)) {
//$NON-NLS-1$
valueDisplay = pvDisplayName;
}
possVals.add(value);
possValsDisplay.add(valueDisplay);
}
param.setListItemsDisplayName(possValsDisplay.toArray(new String[0]));
param.setListItemsDisplayCodeName(possValsDisplay.toArray(new String[0]));
param.setListItemsValue(possVals.toArray(new String[0]));
}
} else if (fieldType != null && fieldType.equals(EParameterFieldType.TABLE) && widgetProperty instanceof Properties) {
Properties table = (Properties) widgetProperty;
Form mainForm = table.getForm(Form.MAIN);
param.setDisplayName(mainForm.getTitle());
//$NON-NLS-1$
List<ElementParameter> parameters = getParametersFromForm(new FakeElement("table"), mainForm);
// table is always empty by default
param.setSupportContext(false);
List<String> codeNames = new ArrayList<>();
List<String> possValsDisplay = new ArrayList<>();
for (ElementParameter curParam : parameters) {
curParam.setFilter(null);
curParam.setContext(null);
curParam.setShowIf(null);
curParam.setNotShowIf(null);
curParam.setReadOnlyIf(null);
curParam.setNotReadOnlyIf(null);
curParam.setNoContextAssist(false);
curParam.setRaw(false);
curParam.setReadOnly(false);
fillDefaultValsForListType(curParam);
codeNames.add(curParam.getName());
possValsDisplay.add(curParam.getDisplayName());
}
param.setListItemsDisplayName(possValsDisplay.toArray(new String[0]));
param.setListItemsDisplayCodeName(codeNames.toArray(new String[0]));
param.setListItemsValue(parameters.toArray(new ElementParameter[0]));
String[] listItemsShowIf = new String[parameters.size()];
String[] listItemsNotShowIf = new String[parameters.size()];
param.setListItemsShowIf(listItemsShowIf);
param.setListItemsNotShowIf(listItemsNotShowIf);
param.setValue(GenericTableUtils.getTableValues(table, param));
param.setBasedOnSchema(Boolean.valueOf(String.valueOf(widget.getConfigurationValue(Widget.HIDE_TOOLBAR_WIDGET_CONF))));
}
if (!param.isReadOnly()) {
param.setReadOnly(widget.isReadonly() || element.isReadOnly());
}
// For issue TUP-16139
if (EParameterFieldType.COMPONENT_REFERENCE.equals(fieldType) && param.getNumRow() == 2 && EComponentCategory.BASIC.equals(compCategory)) {
param.setNumRow(1);
}
param.setSerialized(true);
param.setDynamicSettings(true);
// Avoid adding duplicate prameter.
if (!parameterNames.contains(parameterName)) {
elementParameters.add(param);
parameterNames.add(parameterName);
}
}
return elementParameters;
}
use of org.talend.daikon.properties.property.SchemaProperty in project tdi-studio-se by Talend.
the class GenericElementParameter method updateProperty.
private void updateProperty(Object newValue) {
if (getSubProperties() == null) {
return;
}
NamedThing widgetProperty = widget.getContent();
if (widgetProperty instanceof SchemaProperty) {
if (newValue instanceof String) {
((SchemaProperty) widgetProperty).setValue(new Schema.Parser().parse((String) newValue));
} else if (newValue instanceof Schema) {
((SchemaProperty) widgetProperty).setValue(((Schema) newValue));
}
} else if (widgetProperty instanceof Property) {
Property se = (Property<?>) widgetProperty;
Object oldValue = se.getStoredValue();
Object value = newValue;
List<?> propertyPossibleValues = ((Property<?>) widgetProperty).getPossibleValues();
if (propertyPossibleValues != null) {
for (Object possibleValue : propertyPossibleValues) {
if (possibleValue.toString().equals(newValue)) {
value = possibleValue;
break;
}
}
}
if (value != null && !value.equals(oldValue)) {
se = (Property<?>) getSubProperties().getProperty(se.getName());
if (isDrivedByForm()) {
form.setValue(se.getName(), value);
} else {
se.setStoredValue(value);
}
fireConnectionPropertyChangedEvent(newValue);
}
} else if (widgetProperty instanceof PresentationItem) {
PresentationItem pi = (PresentationItem) widgetProperty;
Form formtoShow = pi.getFormtoShow();
if (formtoShow != null) {
fireShowDialogEvent(getSubProperties().getForm(formtoShow.getName()));
}
} else if (widgetProperty instanceof ComponentProperties && Widget.TABLE_WIDGET_TYPE.equals(widget.getWidgetType())) {
GenericTableUtils.setTableValues((ComponentProperties) widgetProperty, (List<Map<String, Object>>) newValue, this);
}
}
use of org.talend.daikon.properties.property.SchemaProperty in project tdi-studio-se by Talend.
the class Component method initializeParametersForSchema.
/**
* Sometimes the property parameters of schema are base on other parameters,but they might be initialized after the
* schema. So there need to initialize the schema's again.
*
*/
private void initializeParametersForSchema(List<ElementParameter> listParam, final INode node) {
ComponentProperties rootProperty = node.getComponentProperties();
Map<String, SchemaProperty> listSchemaProperties = new HashMap<>();
findSchemaProperties(rootProperty, listParam, listSchemaProperties, null);
for (String paramName : listSchemaProperties.keySet()) {
boolean found = setupConnector(node, listParam, paramName, listSchemaProperties.get(paramName), true);
if (!found) {
// check in the input schema
// for now we only handle input schema named MAIN. But we will name them "FLOW" to keep
// compatibility.
setupConnector(node, listParam, paramName, listSchemaProperties.get(paramName), false);
}
}
ElementParameter autoSwitchParam = null;
for (ElementParameter param : listParam) {
// TUP-4161
if (EParameterFieldType.SCHEMA_REFERENCE.equals(param.getFieldType())) {
ElementParameter newParam = new ElementParameter(node);
newParam.setCategory(EComponentCategory.BASIC);
newParam.setName(EParameterName.SCHEMA_TYPE.getName());
newParam.setDisplayName(EParameterName.SCHEMA_TYPE.getDisplayName());
newParam.setListItemsDisplayName(new String[] { TEXT_BUILTIN, TEXT_REPOSITORY });
newParam.setListItemsDisplayCodeName(new String[] { BUILTIN, REPOSITORY });
newParam.setListItemsValue(new String[] { BUILTIN, REPOSITORY });
newParam.setValue(BUILTIN);
newParam.setNumRow(param.getNumRow());
newParam.setFieldType(EParameterFieldType.TECHNICAL);
newParam.setShow(false);
//$NON-NLS-1$ //$NON-NLS-2$
newParam.setShowIf(param.getName() + " =='" + REPOSITORY + "'");
newParam.setReadOnly(param.isReadOnly());
newParam.setNotShowIf(param.getNotShowIf());
newParam.setContext(IGenericConstants.CONTEXT);
newParam.setSerialized(true);
newParam.setParentParameter(param);
newParam = new ElementParameter(node);
newParam.setCategory(EComponentCategory.BASIC);
newParam.setName(EParameterName.REPOSITORY_SCHEMA_TYPE.getName());
newParam.setDisplayName(EParameterName.REPOSITORY_SCHEMA_TYPE.getDisplayName());
newParam.setListItemsDisplayName(new String[] {});
newParam.setListItemsValue(new String[] {});
newParam.setNumRow(param.getNumRow());
newParam.setFieldType(EParameterFieldType.TECHNICAL);
//$NON-NLS-1$
newParam.setValue("");
newParam.setShow(false);
newParam.setRequired(true);
newParam.setReadOnly(param.isReadOnly());
//$NON-NLS-1$//$NON-NLS-2$
newParam.setShowIf(param.getName() + " =='" + REPOSITORY + "'");
newParam.setNotShowIf(param.getNotShowIf());
newParam.setContext(IGenericConstants.CONTEXT);
newParam.setSerialized(true);
newParam.setParentParameter(param);
if (autoSwitchParam == null) {
autoSwitchParam = new ElementParameter(node);
autoSwitchParam.setCategory(EComponentCategory.TECHNICAL);
autoSwitchParam.setName(EParameterName.REPOSITORY_ALLOW_AUTO_SWITCH.getName());
autoSwitchParam.setDisplayName(EParameterName.REPOSITORY_ALLOW_AUTO_SWITCH.getDisplayName());
autoSwitchParam.setNumRow(param.getNumRow());
autoSwitchParam.setFieldType(EParameterFieldType.CHECK);
autoSwitchParam.setValue(Boolean.FALSE);
autoSwitchParam.setShow(false);
autoSwitchParam.setRequired(true);
autoSwitchParam.setReadOnly(true);
}
}
}
if (autoSwitchParam != null) {
listParam.add(autoSwitchParam);
}
}
Aggregations