Commit c3975e55 authored by Sergiy Byelozyorov's avatar Sergiy Byelozyorov Committed by Commit Bot

Allow using pipes to specify properties for buildbucket.py

R=machenbach@chromium.org, smut@google.com

Change-Id: Ibdad06fa32294c19347eb4f52322b050f45b6a01
Reviewed-on: https://chromium-review.googlesource.com/1127895Reviewed-by: 's avatarRobbie Iannucci <iannucci@chromium.org>
Reviewed-by: 's avatarsmut <smut@google.com>
Commit-Queue: Sergiy Byelozyorov <sergiyb@chromium.org>
parent 92745a5b
...@@ -71,7 +71,10 @@ def main(argv): ...@@ -71,7 +71,10 @@ def main(argv):
put_parser.add_argument( put_parser.add_argument(
'-p', '-p',
'--properties', '--properties',
help='A file to load a JSON dict of properties from.', help=(
'A file to load a JSON dict of properties from. Use "-" to pipe JSON '
'from another command.'
),
) )
args = parser.parse_args() args = parser.parse_args()
...@@ -93,8 +96,13 @@ def main(argv): ...@@ -93,8 +96,13 @@ def main(argv):
properties = {} properties = {}
if args.properties: if args.properties:
try: try:
with open(args.properties) as fp: # Allow using pipes to stream properties from another command, e.g.
properties.update(json.load(fp)) # echo '{"foo": "bar", "baz": 42}' | buildbucket.py -p -
if args.properties == '-':
properties.update(json.load(sys.stdin))
else:
with open(args.properties) as fp:
properties.update(json.load(fp))
except (TypeError, ValueError): except (TypeError, ValueError):
sys.stderr.write('%s contained invalid JSON dict.\n' % args.properties) sys.stderr.write('%s contained invalid JSON dict.\n' % args.properties)
raise raise
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment