Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
debomatic-webui
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
debomatic-webui-admins
debomatic-webui
Commits
1745a989
Commit
1745a989
authored
Jul 13, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/parse_logs' into develop
parents
9bfbad18
d22887a2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
136 additions
and
9 deletions
+136
-9
README.md
README.md
+3
-3
debomatic-modules/JSONLogger.py
debomatic-modules/JSONLogger.py
+115
-2
debomatic-webui/public/javascripts/page_distribution.js
debomatic-webui/public/javascripts/page_distribution.js
+18
-4
No files found.
README.md
View file @
1745a989
...
...
@@ -14,10 +14,10 @@ Some **debomatic-webui** instances are already running over:
## Requirements
You need
**JSONLogger**
debomatic module (provided along with this interface) to get installed in debomatic.
You can copy
`debomatic-modules/JSONLogger.py`
or link to the modules directory. In the most cases:
You need
**JSONLogger**
debomatic module (provided along with this interface) to get installed in debomatic, type this in a command line:
```
sudo cp debomatic-modules/JSONLogger.py /usr/share/debomatic/modules/
sudo ln -s `pwd`/debomatic-modules/JSONLogger.py /usr/share/debomatic/modules/00_JSONLogger.py
sudo ln -s `pwd`/debomatic-modules/JSONLogger.py /usr/share/debomatic/modules/ZZ_JSONLogger.py
```
Restart debomatic service.
...
...
debomatic-modules/JSONLogger.py
View file @
1745a989
...
...
@@ -28,9 +28,52 @@ import os
from
time
import
time
from
json
import
dumps
as
toJSON
from
json
import
load
as
fileToJSON
from
collections
import
defaultdict
class
DebomaticModule_JSONLogger
:
# ZZ and 00 are wrappers for JSONLogger to get module run
# as first and as last one for pre_* and post_* hooks
class
DebomaticModule_00_JSONLogger
:
def
__init__
(
self
):
self
.
logger
=
JSONLogger
.
Instance
()
def
pre_chroot
(
self
,
args
):
self
.
logger
.
pre_chroot
(
args
)
def
pre_build
(
self
,
args
):
self
.
logger
.
pre_build
(
args
)
class
DebomaticModule_ZZ_JSONLogger
:
def
__init__
(
self
):
self
.
logger
=
JSONLogger
.
Instance
()
def
post_chroot
(
self
,
args
):
self
.
logger
.
post_chroot
(
args
)
def
post_build
(
self
,
args
):
self
.
logger
.
post_build
(
args
)
# Singleton decorator
class
Singleton
:
def
__init__
(
self
,
decorated
):
self
.
_decorated
=
decorated
def
Instance
(
self
):
try
:
return
self
.
_instance
except
AttributeError
:
self
.
_instance
=
self
.
_decorated
()
return
self
.
_instance
def
__call__
(
self
):
raise
TypeError
(
'Singletons must be accessed through `Instance()`.'
)
# The real JSONLogger Class
@
Singleton
class
JSONLogger
:
def
__init__
(
self
):
self
.
jsonfile
=
'/var/log/debomatic-json.log'
...
...
@@ -113,10 +156,80 @@ class DebomaticModule_JSONLogger:
status
=
self
.
_get_package_status
(
args
)
status
[
'status'
]
=
'build'
status
[
'success'
]
=
False
status
[
'tags'
]
=
{}
resultdir
=
os
.
path
.
join
(
args
[
'directory'
],
'pool'
,
args
[
'package'
])
for
filename
in
os
.
listdir
(
resultdir
):
if
filename
.
endswith
(
'.dsc'
):
status
[
'success'
]
=
True
break
else
:
full_path
=
os
.
path
.
join
(
resultdir
,
filename
)
tag
=
LogParser
(
full_path
).
parse
()
if
tag
:
status
[
'tags'
][
filename
]
=
tag
self
.
_write_package_json
(
args
,
status
)
self
.
_write_json_logfile
(
args
,
status
)
# Parser for log files
class
LogParser
():
def
__init__
(
self
,
file_path
):
self
.
file
=
file_path
self
.
basename
=
os
.
path
.
basename
(
file_path
)
self
.
extension
=
self
.
basename
.
split
(
'.'
).
pop
()
def
parse
(
self
):
if
not
os
.
path
.
isfile
(
self
.
file
):
return
None
result
=
None
if
self
.
extension
==
'lintian'
:
result
=
self
.
parse_lintian
()
elif
self
.
extension
==
'autopkgtest'
:
result
=
self
.
parse_autopkgtest
()
elif
self
.
extension
==
'piuparts'
:
result
=
self
.
parse_piuparts
()
return
result
def
parse_lintian
(
self
):
tags
=
defaultdict
(
int
)
with
open
(
self
.
file
,
'r'
)
as
fd
:
for
line
in
fd
:
if
len
(
line
)
>=
2
and
line
[
0
]
!=
'N'
and
line
[
1
]
==
':'
:
tags
[
line
[
0
]]
+=
1
return
self
.
_from_tags_to_result
(
tags
)
def
parse_autopkgtest
(
self
):
tags
=
defaultdict
(
int
)
with
open
(
self
.
file
,
'r'
)
as
fd
:
found
=
False
pass_next
=
False
for
line
in
fd
:
if
pass_next
:
pass_next
=
False
continue
if
not
found
and
line
.
find
(
'Tests summary'
)
>=
0
:
found
=
True
pass_next
=
True
elif
found
and
len
(
line
.
split
())
>=
2
:
info
=
line
.
split
()[
1
]
if
info
==
'PASS'
:
continue
tags
[
info
[
0
]]
+=
1
elif
found
and
line
==
'
\
n
'
:
break
return
self
.
_from_tags_to_result
(
tags
)
def
parse_piuparts
(
self
):
with
open
(
self
.
file
,
'r'
)
as
fd
:
last_line
=
fd
.
readlines
()[
-
1
]
if
last_line
.
find
(
'ERROR:'
)
>=
0
:
return
'E'
return
None
def
_from_tags_to_result
(
self
,
tags
):
keys
=
sorted
(
list
(
tags
.
keys
()))
result
=
[]
for
k
in
keys
:
result
.
append
(
"%s%s"
%
(
k
,
tags
[
k
]))
if
len
(
result
)
>
0
:
return
' '
.
join
(
result
)
return
None
debomatic-webui/public/javascripts/page_distribution.js
View file @
1745a989
...
...
@@ -267,8 +267,11 @@ function Page_Distrubion(socket) {
// update html
socket_data
.
package
.
files
.
forEach
(
function
(
f
)
{
tmp
.
file
=
f
;
var
html_file
=
$
(
'
<li id="file-
'
+
f
.
orig_name
+
'
"><a title="
'
+
f
.
orig_name
+
'
" href="
'
+
Utils
.
from_view_to_hash
(
tmp
)
+
'
">
'
+
f
.
name
+
'
</a></li>
'
);
var
html_file
=
$
(
'
<li id="file-
'
+
f
.
orig_name
+
'
">
'
+
'
<a title="
'
+
f
.
orig_name
+
'
" href="
'
+
Utils
.
from_view_to_hash
(
tmp
)
+
'
">
'
+
'
<span class="status pull-right"></span>
'
+
f
.
name
+
'
</a></li>
'
);
html_file
.
on
(
'
click
'
,
function
()
{
files
.
select
(
this
);
});
...
...
@@ -335,6 +338,9 @@ function Page_Distrubion(socket) {
show
:
function
()
{
$
(
'
#files
'
).
show
();
},
set_status
:
function
(
file
,
status
)
{
$
(
'
#logs li[id="file-
'
+
file
+
'
"] .status
'
).
html
(
status
);
}
};
var
package_info
=
{
...
...
@@ -361,6 +367,14 @@ function Page_Distrubion(socket) {
return
result
;
}
if
(
socket_data
.
hasOwnProperty
(
'
tags
'
))
{
var
tags
=
socket_data
.
tags
;
for
(
var
file
in
tags
)
{
if
(
tags
.
hasOwnProperty
(
file
))
files
.
set_status
(
file
,
tags
[
file
]);
}
}
var
info
=
""
;
if
(
socket_data
.
uploader
)
...
...
@@ -661,9 +675,9 @@ function Page_Distrubion(socket) {
return
;
}
else
if
(
!
Utils
.
check_view_package
(
old_view
)
||
!
Utils
.
check_view_package
(
view
)
||
view
.
package
.
orig_name
!=
old_view
.
package
.
orig_name
)
{
// new package view
package_info
.
get
();
files
.
get
();
file
.
get
();
package_info
.
get
();
}
else
if
(
!
Utils
.
check_view_file
(
old_view
)
||
!
Utils
.
check_view_file
(
view
)
||
view
.
file
.
name
!=
old_view
.
file
.
name
)
{
// new file view
file
.
get
();
...
...
@@ -684,9 +698,9 @@ function Page_Distrubion(socket) {
var
populate
=
function
()
{
clean
();
packages
.
get
();
package_info
.
get
();
files
.
get
();
file
.
get
();
package_info
.
get
();
update
.
view
();
};
...
...
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