use of org.talend.metadata.managment.ui.wizard.metadata.xml.node.FOXTreeNode in project tdi-studio-se by Talend.
the class FOXManager method initNodeOrder.
/**
* wzhang Comment method "initNodeOrder".
*/
public void initNodeOrder(FOXTreeNode node) {
if (node == null) {
return;
}
FOXTreeNode parent = node.getParent();
if (parent == null) {
node.setOrder(1);
String path = TreeUtil.getPath(node);
orderMap.put(path, order);
order++;
}
List<FOXTreeNode> childNode = node.getChildren();
for (FOXTreeNode child : childNode) {
child.setOrder(order);
String path = TreeUtil.getPath(child);
orderMap.put(path, order);
order++;
if (child.getChildren().size() > 0) {
initNodeOrder(child);
}
}
}
use of org.talend.metadata.managment.ui.wizard.metadata.xml.node.FOXTreeNode in project tdi-studio-se by Talend.
the class FOXManager method initModel.
public void initModel() {
IMetadataTable metadataTable = foxComponent.getMetadataTable();
if (metadataTable == null) {
metadataTable = new MetadataTable();
}
String componentName = foxComponent.getComponent().getName();
// if (componentName.equals("tWriteXMLField")) { //$NON-NLS-1$ //$NON-NLS-2$
IConnection inConn = null;
for (IConnection conn : foxComponent.getIncomingConnections()) {
if ((conn.getLineStyle().equals(EConnectionType.FLOW_MAIN)) || (conn.getLineStyle().equals(EConnectionType.FLOW_REF))) {
inConn = conn;
break;
}
}
if (inConn != null) {
metadataTable = inConn.getMetadataTable();
}
// }
treeData = new ArrayList<FOXTreeNode>();
FOXTreeNode rootNode = null;
FOXTreeNode current = null;
FOXTreeNode temp = null;
FOXTreeNode mainNode = null;
String mainPath = null;
String currentPath = null;
String defaultValue = null;
int nodeOrder = 0;
boolean haveOrder = true;
// build root tree
List<Map<String, String>> rootTable = (List<Map<String, String>>) foxComponent.getTableList(FileOutputXMLComponent.ROOT);
for (Map<String, String> rootMap : rootTable) {
String newPath = rootMap.get(FileOutputXMLComponent.PATH);
defaultValue = rootMap.get(FileOutputXMLComponent.VALUE);
String orderValue = rootMap.get(FileOutputXMLComponent.ORDER);
if (orderValue == null || "".equals(orderValue)) {
haveOrder = false;
}
if (haveOrder) {
nodeOrder = Integer.valueOf(rootMap.get(FileOutputXMLComponent.ORDER)).intValue();
}
if (rootMap.get(FileOutputXMLComponent.ATTRIBUTE).equals("attri")) {
//$NON-NLS-1$
temp = new Attribute(newPath);
temp.setDefaultValue(defaultValue);
temp.setAttribute(true);
current.addChild(temp);
} else if (rootMap.get(FileOutputXMLComponent.ATTRIBUTE).equals("ns")) {
//$NON-NLS-1$
temp = new NameSpaceNode(newPath);
temp.setDefaultValue(defaultValue);
temp.setNameSpace(true);
current.addChild(temp);
} else {
temp = this.addElement(current, currentPath, newPath, defaultValue);
if (rootNode == null) {
rootNode = temp;
}
if (rootMap.get(FileOutputXMLComponent.ATTRIBUTE).equals("main")) {
//$NON-NLS-1$
temp.setMain(true);
mainNode = temp;
mainPath = newPath;
}
current = temp;
currentPath = newPath;
}
if (haveOrder) {
temp.setOrder(nodeOrder);
}
String columnName = rootMap.get(FileOutputXMLComponent.COLUMN);
if (columnName != null && columnName.length() > 0) {
temp.setColumn(metadataTable.getColumn(columnName));
}
}
// build group tree
current = mainNode;
currentPath = mainPath;
boolean isFirst = true;
List<Map<String, String>> groupTable = (List<Map<String, String>>) foxComponent.getTableList(FileOutputXMLComponent.GROUP);
for (Map<String, String> groupMap : groupTable) {
String newPath = groupMap.get(FileOutputXMLComponent.PATH);
defaultValue = groupMap.get(FileOutputXMLComponent.VALUE);
String orderValue = groupMap.get(FileOutputXMLComponent.ORDER);
if (orderValue == null || "".equals(orderValue)) {
haveOrder = false;
}
if (haveOrder) {
nodeOrder = Integer.valueOf(groupMap.get(FileOutputXMLComponent.ORDER)).intValue();
}
if (groupMap.get(FileOutputXMLComponent.ATTRIBUTE).equals("attri")) {
//$NON-NLS-1$
temp = new Attribute(newPath);
temp.setDefaultValue(defaultValue);
temp.setAttribute(true);
current.addChild(temp);
} else if (groupMap.get(FileOutputXMLComponent.ATTRIBUTE).equals("ns")) {
//$NON-NLS-1$
temp = new NameSpaceNode(newPath);
temp.setDefaultValue(defaultValue);
temp.setNameSpace(true);
current.addChild(temp);
} else {
temp = this.addElement(current, currentPath, newPath, defaultValue);
if (groupMap.get(FileOutputXMLComponent.ATTRIBUTE).equals("main")) {
//$NON-NLS-1$
temp.setMain(true);
mainNode = temp;
mainPath = newPath;
}
if (isFirst) {
temp.setGroup(true);
isFirst = false;
}
current = temp;
currentPath = newPath;
}
if (haveOrder) {
temp.setOrder(nodeOrder);
}
String columnName = groupMap.get(FileOutputXMLComponent.COLUMN);
if (columnName != null && columnName.length() > 0) {
temp.setColumn(metadataTable.getColumn(columnName));
}
}
// build loop tree
current = mainNode;
currentPath = mainPath;
isFirst = true;
List<Map<String, String>> loopTable = (List<Map<String, String>>) foxComponent.getTableList(FileOutputXMLComponent.LOOP);
for (Map<String, String> loopMap : loopTable) {
String newPath = loopMap.get(FileOutputXMLComponent.PATH);
defaultValue = loopMap.get(FileOutputXMLComponent.VALUE);
String orderValue = loopMap.get(FileOutputXMLComponent.ORDER);
if (orderValue == null || "".equals(orderValue)) {
haveOrder = false;
}
if (haveOrder) {
nodeOrder = Integer.valueOf(loopMap.get(FileOutputXMLComponent.ORDER)).intValue();
}
if (loopMap.get(FileOutputXMLComponent.ATTRIBUTE).equals("attri")) {
//$NON-NLS-1$
temp = new Attribute(newPath);
temp.setDefaultValue(defaultValue);
temp.setAttribute(true);
current.addChild(temp);
} else if (loopMap.get(FileOutputXMLComponent.ATTRIBUTE).equals("ns")) {
//$NON-NLS-1$
temp = new NameSpaceNode(newPath);
temp.setDefaultValue(defaultValue);
temp.setNameSpace(true);
current.addChild(temp);
} else {
temp = this.addElement(current, currentPath, newPath, defaultValue);
if (rootNode == null) {
rootNode = temp;
}
if (loopMap.get(FileOutputXMLComponent.ATTRIBUTE).equals("main")) {
//$NON-NLS-1$
temp.setMain(true);
}
if (isFirst) {
temp.setLoop(true);
isFirst = false;
}
current = temp;
currentPath = newPath;
}
if (haveOrder) {
temp.setOrder(nodeOrder);
}
String columnName = loopMap.get(FileOutputXMLComponent.COLUMN);
if (columnName != null && columnName.length() > 0) {
temp.setColumn(metadataTable.getColumn(columnName));
}
}
if (rootNode == null) {
//$NON-NLS-1$
rootNode = new Element("rootTag");
}
rootNode.setParent(null);
if (haveOrder) {
orderNode(rootNode);
}
treeData.add(rootNode);
}
use of org.talend.metadata.managment.ui.wizard.metadata.xml.node.FOXTreeNode in project tdi-studio-se by Talend.
the class UIManager method autoMap.
/**
*
* DOC xzhang Comment method "autoMap".
*/
public void autoMap() {
FOXTreeNode root = this.foxManager.getTreeData().get(0);
List<FOXTreeNode> mappableNodes = new ArrayList<FOXTreeNode>();
getMappableNode((Element) root, mappableNodes);
List<IMetadataColumn> schemaData = this.foxManager.getSchemaData();
for (IMetadataColumn column : schemaData) {
for (FOXTreeNode node : mappableNodes) {
if (node.getLabel().equals(column.getLabel())) {
node.setDefaultValue(null);
node.setColumn(column);
break;
}
}
}
this.foxUI.refreshXMLViewer(root);
this.foxUI.redrawLinkers();
}
use of org.talend.metadata.managment.ui.wizard.metadata.xml.node.FOXTreeNode in project tdi-studio-se by Talend.
the class CreateNameSpaceAction method createChildNode.
/**
* Create the child node of the input node
*
* @param node
*/
private void createChildNode(FOXTreeNode node) {
String label = null;
String defaultValue = null;
while (!StringUtil.validateLabelForNameSpace(label) || !StringUtil.validateLabelForFixedValue(defaultValue)) {
NameSpaceDialog nsDialog = new NameSpaceDialog(null);
int status = nsDialog.open();
if (status == nsDialog.OK) {
defaultValue = nsDialog.getNSValue();
if (defaultValue != null) {
defaultValue = defaultValue.trim();
}
label = nsDialog.getPrefix().trim();
}
if (status == nsDialog.CANCEL) {
return;
}
}
FOXTreeNode child = new NameSpaceNode(label);
child.setDefaultValue(defaultValue);
// add by wzhang. set the row name
child.setRow(node.getRow());
node.addChild(child);
this.xmlViewer.refresh();
xmlViewer.expandToLevel(node, 1);
foxui.redrawLinkers();
}
use of org.talend.metadata.managment.ui.wizard.metadata.xml.node.FOXTreeNode in project tdi-studio-se by Talend.
the class DeleteNodeAction method run.
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.action.Action#run()
*/
@Override
public void run() {
List<FOXTreeNode> objectToRemove = new ArrayList<FOXTreeNode>();
final Iterator iterator = this.getStructuredSelection().iterator();
while (iterator.hasNext()) {
FOXTreeNode selectedNode = (FOXTreeNode) iterator.next();
objectToRemove.add(selectedNode);
}
for (FOXTreeNode node : objectToRemove) {
if (node == null) {
return;
}
FOXTreeNode parent = node.getParent();
if (parent == null) {
return;
}
if (node instanceof Element) {
disconnectSubTree(node);
}
parent.removeChild(node);
if (node.isLoop() || node.isGroup()) {
foxui.updateStatus();
}
xmlViewer.refresh(parent);
xmlViewer.expandToLevel(parent, 1);
}
foxui.redrawLinkers();
}
Aggregations