Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kieker-TeeTime-Stages
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeeTime
Kieker-TeeTime-Stages
Commits
74630717
Commit
74630717
authored
9 years ago
by
Sören Henning
Browse files
Options
Downloads
Patches
Plain Diff
work on nested graph library
parent
b7b44524
No related branches found
No related tags found
1 merge request
!17
Get impletemented stages and Java 8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/kieker/analysis/graph/impl/GraphImpl.java
+6
-9
6 additions, 9 deletions
src/main/java/kieker/analysis/graph/impl/GraphImpl.java
src/main/java/kieker/analysis/graph/impl/VertexImpl.java
+36
-29
36 additions, 29 deletions
src/main/java/kieker/analysis/graph/impl/VertexImpl.java
with
42 additions
and
38 deletions
src/main/java/kieker/analysis/graph/impl/GraphImpl.java
+
6
−
9
View file @
74630717
...
...
@@ -66,7 +66,7 @@ public class GraphImpl implements Graph {
@Override
public
Edge
addEdge
(
final
Object
id
,
final
Vertex
outVertex
,
final
Vertex
inVertex
)
{
String
idString
=
null
;
String
idString
;
if
(
id
==
null
)
{
do
{
idString
=
getDefaultId
();
...
...
@@ -78,10 +78,10 @@ public class GraphImpl implements Graph {
}
}
Edge
edge
=
new
EdgeImpl
(
idString
,
outVertex
,
inVertex
,
this
);
final
Edge
edge
=
new
EdgeImpl
(
idString
,
outVertex
,
inVertex
,
this
);
this
.
edges
.
put
(
edge
.
getId
().
toString
(),
edge
);
((
VertexImpl
)
outVertex
).
addOutEdge
(
idString
,
edge
);
((
VertexImpl
)
inVertex
).
addInEdge
(
idString
,
edge
);
((
VertexImpl
)
outVertex
).
addOutEdge
(
edge
);
((
VertexImpl
)
inVertex
).
addInEdge
(
edge
);
return
edge
;
}
...
...
@@ -106,11 +106,8 @@ public class GraphImpl implements Graph {
throw
ExceptionFactory
.
edgeWithIdDoesNotExist
(
edge
.
getId
());
}
final
VertexImpl
outVertex
=
(
VertexImpl
)
edge
.
getVertex
(
Direction
.
OUT
);
outVertex
.
outEdges
.
remove
(
edge
.
getId
().
toString
());
final
VertexImpl
inVertex
=
(
VertexImpl
)
edge
.
getVertex
(
Direction
.
IN
);
inVertex
.
inEdges
.
remove
(
edge
.
getId
().
toString
());
((
VertexImpl
)
edge
.
getVertex
(
Direction
.
IN
)).
removeInEdge
(
edge
);
((
VertexImpl
)
edge
.
getVertex
(
Direction
.
OUT
)).
removeOutEdge
(
edge
);
this
.
edges
.
remove
(
edge
.
getId
().
toString
());
}
...
...
This diff is collapsed.
Click to expand it.
src/main/java/kieker/analysis/graph/impl/VertexImpl.java
+
36
−
29
View file @
74630717
package
kieker.analysis.graph.impl
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
import
java.util.HashSet
;
import
java.util.Map
;
import
java.util.Set
;
import
kieker.analysis.graph.Direction
;
import
kieker.analysis.graph.Edge
;
...
...
@@ -12,8 +11,8 @@ import kieker.analysis.graph.Vertex;
class
VertexImpl
extends
ElementImpl
implements
Vertex
{
protected
Map
<
String
,
Set
<
Edge
>
>
outEdges
=
new
HashMap
<
String
,
Set
<
Edge
>
>
();
protected
Map
<
String
,
Set
<
Edge
>
>
inEdges
=
new
HashMap
<
String
,
Set
<
Edge
>
>
();
protected
Map
<
String
,
Edge
>
outEdges
=
new
HashMap
<
String
,
Edge
>();
protected
Map
<
String
,
Edge
>
inEdges
=
new
HashMap
<
String
,
Edge
>();
protected
VertexImpl
(
final
String
id
,
final
GraphImpl
graph
)
{
super
(
id
,
graph
);
...
...
@@ -33,21 +32,31 @@ class VertexImpl extends ElementImpl implements Vertex {
@Override
public
Iterable
<
Edge
>
getEdges
(
final
Direction
direction
)
{
// TODO Auto-generated method stub
return
n
ull
;
/*
* if (direction.equals(Direction.OUT)) {
* return this.getOutEdges(labels);
* } else if (direction.equals(Direction.IN
))
* return
this.
getI
nEdges
(labels
);
* }
*/
if
(
direction
.
equals
(
Direction
.
OUT
))
{
return
n
ew
ArrayList
<>(
this
.
outEdges
.
values
())
;
}
else
if
(
direction
.
equals
(
Direction
.
IN
))
{
return
new
ArrayList
<>(
this
.
inEdges
.
values
());
}
else
{
ArrayList
<
Edge
>
edges
=
new
ArrayList
<>(
this
.
outEdges
.
values
(
))
;
edges
.
addAll
(
this
.
i
nEdges
.
values
()
);
return
edges
;
}
}
@Override
public
Iterable
<
Vertex
>
getVertices
(
final
Direction
direction
)
{
// TODO Auto-generated method stub
return
null
;
if
(
direction
.
equals
(
Direction
.
BOTH
))
{
ArrayList
<
Vertex
>
vertices
=
(
ArrayList
<
Vertex
>)
getVertices
(
Direction
.
IN
);
vertices
.
addAll
((
ArrayList
<
Vertex
>)
getVertices
(
Direction
.
OUT
));
return
vertices
;
}
ArrayList
<
Vertex
>
vertices
=
new
ArrayList
<>();
for
(
Edge
edge
:
getEdges
(
direction
))
{
vertices
.
add
(
edge
.
getVertex
(
direction
.
opposite
()));
}
return
vertices
;
}
@Override
...
...
@@ -65,22 +74,20 @@ class VertexImpl extends ElementImpl implements Vertex {
return
this
.
graph
.
addEdge
(
id
,
this
,
inVertex
);
}
protected
void
addOutEdge
(
final
String
idString
,
final
Edge
edge
)
{
Set
<
Edge
>
edges
=
this
.
outEdges
.
get
(
idString
);
if
(
edges
==
null
)
{
edges
=
new
HashSet
<
Edge
>();
this
.
outEdges
.
put
(
idString
,
edges
);
}
edges
.
add
(
edge
);
protected
void
addOutEdge
(
final
Edge
edge
)
{
this
.
outEdges
.
put
(
edge
.
getId
().
toString
(),
edge
);
}
protected
void
addInEdge
(
final
String
idString
,
final
Edge
edge
)
{
Set
<
Edge
>
edges
=
this
.
inEdges
.
get
(
idString
);
if
(
edges
==
null
)
{
edges
=
new
HashSet
<
Edge
>();
this
.
inEdges
.
put
(
idString
,
edges
);
}
edges
.
add
(
edge
);
protected
void
addInEdge
(
final
Edge
edge
)
{
this
.
inEdges
.
put
(
edge
.
getId
().
toString
(),
edge
);
}
protected
void
removeInEdge
(
final
Edge
edge
)
{
this
.
inEdges
.
remove
(
edge
.
getId
().
toString
());
}
protected
void
removeOutEdge
(
final
Edge
edge
)
{
this
.
outEdges
.
remove
(
edge
.
getId
().
toString
());
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment