Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5b74e836c25f110e0fce79e11db1494e91c4c439 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*******************************************************************************
 * Copyright (c) 2004, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.ws.internal.explorer.platform.engine.transformer;

import java.util.Hashtable;
import java.util.Vector;
import org.eclipse.wst.ws.internal.explorer.platform.constants.ActionInputs;
import org.eclipse.wst.ws.internal.explorer.platform.constants.ModelConstants;
import org.eclipse.wst.ws.internal.explorer.platform.perspective.Controller;

public class MassNodeIdTransformer extends NodeIdTransformer
{
  protected String massNodeIdKey;

  public MassNodeIdTransformer(Controller controller, String massNodeIdKey)
  {
    super(controller);
    this.massNodeIdKey = massNodeIdKey;
  }

  public Hashtable normalize(Hashtable properties)
  {
    if (!properties.containsKey(massNodeIdKey))
      return super.normalize(properties);
    Object origNodeId = properties.get(ActionInputs.NODEID);
    String[] massNodeIds = getValueAsStringArray(properties, massNodeIdKey);
    for (int i = 0; i < massNodeIds.length; i++)
    {
      properties.put(ActionInputs.NODEID, massNodeIds[i]);
      properties = super.normalize(properties);
      String[] rels = getValueAsStringArray(properties, ModelConstants.REL_ID);
      if (rels.length > 0)
      {
        StringBuffer sb = new StringBuffer(ModelConstants.REL_ID);
        sb.append(ModelConstants.REL_LOCALNAME_SEPARATOR);
        sb.append(massNodeIds[i]);
        properties.put(sb.toString(), rels);
      }
      properties.remove(ActionInputs.NODEID);
      properties.remove(ModelConstants.REL_ID);
    }
    if (origNodeId != null)
      properties.put(ActionInputs.NODEID, origNodeId);
    return properties;
  }

  public Hashtable deNormalize(Hashtable properties)
  {
    if (!properties.containsKey(massNodeIdKey))
      return super.deNormalize(properties);
    Vector massNodeIdVector = new Vector();
    Object origNodeId = properties.get(ActionInputs.NODEID);
    properties.remove(ActionInputs.NODEID);
    String[] massNodeIds = getValueAsStringArray(properties, massNodeIdKey);
    for (int i = 0; i < massNodeIds.length; i++)
    {
      StringBuffer sb = new StringBuffer(ModelConstants.REL_ID);
      sb.append(ModelConstants.REL_LOCALNAME_SEPARATOR);
      sb.append(massNodeIds[i]);
      Object rels = properties.get(sb.toString());
      if (rels != null)
      {
        properties.put(ModelConstants.REL_ID, rels);
        properties = super.deNormalize(properties);
        Object nodeId = properties.get(ActionInputs.NODEID);
        if (nodeId != null)
        {
          massNodeIdVector.add(nodeId);
          properties.remove(ActionInputs.NODEID);
        }
        properties.remove(ModelConstants.REL_ID);
      }
    }
    if (origNodeId != null)
      properties.put(ActionInputs.NODEID, origNodeId);
    int size = massNodeIdVector.size();
    if (size == 1)
      properties.put(massNodeIdKey, massNodeIdVector.get(0));
    else if (size > 1)
      properties.put(massNodeIdKey, massNodeIdVector.toArray(new String[0]));
    else
      properties.remove(massNodeIdKey);
    return properties;
  }

  private String[] getValueAsStringArray(Hashtable properties, String key)
  {
    Object values = properties.get(key);
    if (values == null)
      return new String[0];
    else if (values instanceof String[])
      return (String[])values;
    else
      return new String[] {values.toString()};
  }
}

Back to the top