Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
apachedex
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xiaowu Zhang
apachedex
Commits
a7e0a644
Commit
a7e0a644
authored
Apr 09, 2013
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for reading state data from stdin.
parent
6f7c77f3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
28 deletions
+38
-28
apachedex/__init__.py
apachedex/__init__.py
+38
-28
No files found.
apachedex/__init__.py
View file @
a7e0a644
...
...
@@ -993,10 +993,12 @@ def main():
parser
.
add_argument
(
'-Q'
,
dest
=
'extra_quiet'
,
action
=
'store_true'
,
help
=
'Suppress progress indication (file being parsed, lines counter). '
'Does not imply -q.'
)
parser
.
add_argument
(
'--state-file'
,
nargs
=
'+'
,
default
=
[],
type
=
file
,
help
=
'Use given JSON files as initial state. Mixing files generated with '
'different parameters is allowed, but no correction is made. Output may '
'be unusable (ex: different --apdex, different --period, ...).'
)
parser
.
add_argument
(
'--state-file'
,
nargs
=
'+'
,
default
=
[],
help
=
'Use given JSON files as initial state. Use - for stdin. Loading'
'multiple files through stdin is not possible). Mixing '
'files generated with different parameters is allowed, but no '
'correction is made. Output may be unusable (ex: different --apdex, '
'different --period, ...).'
)
group
=
parser
.
add_argument_group
(
'generated content'
)
group
.
add_argument
(
'-a'
,
'--apdex'
,
default
=
1.0
,
type
=
float
,
...
...
@@ -1132,8 +1134,16 @@ def main():
error_detail
=
args
.
error_detail
file_count
=
len
(
infile_list
)
per_site
=
{}
for
state_file
in
args
.
state_file
:
print
>>
sys
.
stderr
,
'Loading'
,
state_file
.
name
,
'...'
,
if
'-'
in
args
.
state_file
and
'-'
in
infile_list
:
print
>>
sys
.
stderr
,
'stdin cannot be used both as log and state input.'
sys
.
exit
(
1
)
for
state_file_name
in
args
.
state_file
:
print
>>
sys
.
stderr
,
'Loading'
,
state_file_name
,
'...'
,
if
state_file_name
==
'-'
:
state_file
=
sys
.
stdin
else
:
state_file
=
open
(
state_file_name
)
with
state_file
:
load_start
=
time
.
time
()
state
=
json
.
load
(
state_file
,
encoding
=
'ascii'
)
for
url
,
site_state
in
state
:
...
...
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