Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
b7e5f455
Commit
b7e5f455
authored
Mar 07, 2013
by
Sato Hiroyuki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor: Removing the duplicated code.
parent
79cd1ca3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
48 deletions
+40
-48
app/models/network/commit.rb
app/models/network/commit.rb
+9
-0
app/models/network/graph.rb
app/models/network/graph.rb
+30
-47
app/views/graph/show.json.erb
app/views/graph/show.json.erb
+1
-1
No files found.
app/models/network/commit.rb
View file @
b7e5f455
...
...
@@ -26,5 +26,14 @@ module Network
0
end
end
def
parents
(
map
)
@commit
.
parents
.
map
do
|
p
|
if
map
.
include?
(
p
.
id
)
map
[
p
.
id
]
end
end
.
compact
end
end
end
app/models/network/graph.rb
View file @
b7e5f455
...
...
@@ -2,7 +2,7 @@ require "grit"
module
Network
class
Graph
attr_reader
:days
,
:commits
attr_reader
:days
,
:commits
,
:map
def
self
.
max_count
@max_count
||=
650
...
...
@@ -61,9 +61,7 @@ module Network
end
commits_sort_by_ref
.
each
do
|
commit
|
if
@map
.
include?
commit
.
id
then
place_chain
(
commit
)
end
place_chain
(
commit
)
end
# find parent spaces for not overlap lines
...
...
@@ -115,25 +113,21 @@ module Network
def
find_free_parent_spaces
(
commit
)
spaces
=
[]
commit
.
parents
.
each
do
|
p
|
if
@map
.
include?
(
p
.
id
)
then
parent
=
@map
[
p
.
id
]
range
=
if
commit
.
time
<
parent
.
time
then
commit
.
time
..
parent
.
time
else
parent
.
time
..
commit
.
time
end
space
=
if
commit
.
space
>=
parent
.
space
then
find_free_parent_space
(
range
,
parent
.
space
,
-
1
,
commit
.
space
)
else
find_free_parent_space
(
range
,
commit
.
space
,
-
1
,
parent
.
space
)
end
mark_reserved
(
range
,
space
)
spaces
<<
space
end
commit
.
parents
(
@map
).
each
do
|
parent
|
range
=
if
commit
.
time
<
parent
.
time
then
commit
.
time
..
parent
.
time
else
parent
.
time
..
commit
.
time
end
space
=
if
commit
.
space
>=
parent
.
space
then
find_free_parent_space
(
range
,
parent
.
space
,
-
1
,
commit
.
space
)
else
find_free_parent_space
(
range
,
commit
.
space
,
-
1
,
parent
.
space
)
end
mark_reserved
(
range
,
space
)
spaces
<<
space
end
spaces
...
...
@@ -175,25 +169,18 @@ module Network
leaves
.
each
do
|
l
|
l
.
spaces
<<
space
# Also add space to parent
l
.
parents
.
each
do
|
p
|
if
@map
.
include?
(
p
.
id
)
parent
=
@map
[
p
.
id
]
if
parent
.
space
>
0
parent
.
spaces
<<
space
end
l
.
parents
(
@map
).
each
do
|
parent
|
if
parent
.
space
>
0
parent
.
spaces
<<
space
end
end
end
# and mark it as reserved
min_time
=
leaves
.
last
.
time
parents
=
leaves
.
last
.
parents
.
collect
parents
.
each
do
|
p
|
if
@map
.
include?
p
.
id
parent
=
@map
[
p
.
id
]
if
parent
.
time
<
min_time
min_time
=
parent
.
time
end
leaves
.
last
.
parents
(
@map
).
each
do
|
parent
|
if
parent
.
time
<
min_time
min_time
=
parent
.
time
end
end
...
...
@@ -206,7 +193,7 @@ module Network
# Visit branching chains
leaves
.
each
do
|
l
|
parents
=
l
.
parents
.
collect
.
select
{
|
p
|
@map
.
include?
p
.
id
and
@map
[
p
.
id
]
.
space
.
zero?
}
parents
=
l
.
parents
(
@map
).
select
{
|
p
|
p
.
space
.
zero?
}
for
p
in
parents
place_chain
(
p
,
l
.
time
)
end
...
...
@@ -215,13 +202,10 @@ module Network
def
get_space_base
(
leaves
)
space_base
=
1
if
leaves
.
last
.
parents
.
size
>
0
first_parent
=
leaves
.
last
.
parents
.
first
if
@map
.
include?
(
first_parent
.
id
)
first_p
=
@map
[
first_parent
.
id
]
if
first_p
.
space
>
0
space_base
=
first_p
.
space
end
parents
=
leaves
.
last
.
parents
(
@map
)
if
parents
.
size
>
0
if
parents
.
first
.
space
>
0
space_base
=
parents
.
first
.
space
end
end
space_base
...
...
@@ -266,10 +250,9 @@ module Network
leaves
.
push
(
commit
)
if
commit
.
space
.
zero?
while
true
return
leaves
if
commit
.
parents
.
count
.
zero?
return
leaves
unless
@map
.
include?
commit
.
parents
.
first
.
id
return
leaves
if
commit
.
parents
(
@map
).
count
.
zero?
commit
=
@map
[
commit
.
parents
.
first
.
id
]
commit
=
commit
.
parents
(
@map
).
first
return
leaves
unless
commit
.
space
.
zero?
...
...
app/views/graph/show.json.erb
View file @
b7e5f455
...
...
@@ -5,7 +5,7 @@
days:
@graph
.
days
.
compact
.
map
{
|
d
|
[
d
.
day
,
d
.
strftime
(
"%b"
)]
},
commits:
@graph
.
commits
.
map
do
|
c
|
{
parents:
parents_zip_spaces
(
c
.
parents
,
c
.
parent_spaces
),
parents:
parents_zip_spaces
(
c
.
parents
(
@graph
.
map
)
,
c
.
parent_spaces
),
author:
{
name:
c
.
author
.
name
,
email:
c
.
author
.
email
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment