summaryrefslogtreecommitdiffstats
path: root/collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/src/main/java/org/apache/tuscany/sca/diagram/layout/LayoutBuilder.java
blob: 87b358479aba5f6c3ab9fd029e5257cf0472e045 (plain)
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
 */

package org.apache.tuscany.sca.diagram.layout;

public class LayoutBuilder {

    private Entity[] elts = null;
    private int[][] conns = null;
    private Entity startEnt = null;
    private int currentMaxLevel = 0;

    /**
     * Constructor which takes set of entities and their connection matrix
     */
    public LayoutBuilder(Entity[] entities, int[][] connections) {
        elts = entities;
        conns = connections;
    }

    /**
     * Layout Building Algorithm
     * ~~~~~~~~~~~~~~~~~~~~~~~~~
     *
     * Here we position (i.e. assigning a level and a lane) all Entities
     * in a unique cell of a grid.
     * 
     * 		 	lane0	  lane1	  lane2	  lane3 ....
     * 		 	 _______________________________
     * level0	|		|		|		|		|
     * 			|_______|_______|_______|_______|
     * level1	|		|		|		|		|
     * 			|_______|_______|_______|_______|
     * level2	|		|		|		|		|     
     * 
     * 1) Determining the Entity at level0, lane0 (starting entity)
     * 		-First Entity in the list of Entities which has one or more adjacent Entities
     * 		-If there is only one Entity it will eventually chosen
     * 
     * 2) Get connected Entities of starting Entity. 
     * 		* If there are connected entities;
     * 			*For each connected Entity; 
     * 				*We assign a corresponding level and a lane
     * 				*Then recurse the procedure for connections of the assigned Entity
     * 	
     * 
     */
    public Entity[] placeEntities() {

        /**
         * Finding the starting entity
         */
        for (int i = 0; i < elts.length; i++) {
            //System.out.println("ELts "+elts.length);
            Entity ent = elts[i];
            if (isConnected(ent.getId())) {
                setPosition(ent, 0, 0);
                startEnt = ent;
                //System.out.println("startEnt "+ent.getId());
                break;
            }

        }

        if (startEnt != null) {
            assignPositions(startEnt);
        }

        assignPositionsOfOtherConncetedEntities();//such as a different cluster of components
        assignPositionsOfIdleEntities();
        assignCoordinates();

        return elts;

    }

    private void assignPositionsOfIdleEntities() {

        for (Entity ent : elts) {
            if (!ent.isPossitionSet()) {

                setPosition(ent, currentMaxLevel++, 0);
            }
        }
    }

    private void assignPositionsOfOtherConncetedEntities() {

        for (Entity ent : elts) {
            if (!ent.isPossitionSet() && isConnected(ent.getId())) {
                assignPositions(ent);
            }
        }
    }

    private void assignCoordinates() {

        for (Entity ent : elts) {
            ent.setX(ent.getParent().getX() + ent.getStartPosition());
            ent.setY(ent.getParent().getY() + ent.getStartPosition() / 2);
        }
    }

    private void assignPositions(Entity ent) {
        int id = ent.getId();
        int[] entConns = conns[id];

        for (int i = 0; i < entConns.length; i++) {
            if (entConns[i] == 1) {
                Entity nextEnt = findEntity(i);

                //				if(nextEnt.isPossitionSet()){
                //					currentMaxLevel = nextEnt.getLevel()+1; // for diagram clearness purpose
                //				}
                if (nextEnt != null && !nextEnt.isPossitionSet()) {
                    setPosition(nextEnt, currentMaxLevel, ent.getLane() + 1);
                    assignPositions(nextEnt);
                }
            }

        }
        currentMaxLevel = ent.getLevel() + 1;
    }

    private Entity findEntity(int i) {

        for (Entity ent : elts) {
            if (ent.getId() == i) {
                return ent;
            }
        }
        return null;
    }

    /**
     * If there's at least 1 connection, this will return true
     */
    private boolean isConnected(int id) {
        int[] entConns = conns[id];

        //System.out.println("entConns "+entConns.length);
        for (int i = 0; i < entConns.length; i++) {

            if (entConns[i] == 1) {
                return true;
            }

        }

        return false;
    }

    private void setPosition(Entity ent, int level, int lane) {
        ent.setLevel(level);
        ent.setLane(lane);
        ent.setPossitionSet(true);
    }

    public Entity getStartEnt() {
        return startEnt;
    }

    public void setStartEnt(Entity startEnt) {
        this.startEnt = startEnt;
    }

}