/usr/lib/python2.7/dist-packages/cylc/dump.py is in python-cylc 7.6.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | #!/usr/bin/env python
# THIS FILE IS PART OF THE CYLC SUITE ENGINE.
# Copyright (C) 2008-2017 NIWA
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Utility for "cylc cat-state" and "cylc dump"."""
from cylc.task_id import TaskID
from cylc.network.suite_state_client import SUITE_STATUS_STOPPED
from cylc.task_state import TASK_STATUS_READY
def get_stop_state_summary(lines):
"""Parse state dump content into summary maps."""
global_summary = {}
task_summary = {}
if len(lines) == 0 or len(lines) < 3:
return None
for line in list(lines):
if line.startswith('Remote command'):
lines.remove(line)
line1 = lines.pop(0)
while not line1.startswith("time :"):
line1 = lines.pop(0)
time_string = line1.rstrip().split(' : ')[1]
unix_time_string = time_string.rsplit('(', 1)[1].rstrip(")")
global_summary["last_updated"] = int(unix_time_string)
# Skip initial and final cycle points.
lines[0:2] = []
global_summary["status_string"] = SUITE_STATUS_STOPPED
while lines:
line = lines.pop(0)
if line.startswith("class") or line.startswith("Begin task"):
continue
try:
(task_id, info) = line.split(' : ')
name, point_string = TaskID.split(task_id)
except ValueError:
continue
task_summary.setdefault(task_id, {"name": name, "point": point_string,
"label": point_string})
# reconstruct state from a dumped state string
items = dict([p.split("=") for p in info.split(', ')])
state = items.get("status")
if state == 'submitting':
# backward compabitility for state dumps generated prior to #787
state = TASK_STATUS_READY
task_summary[task_id].update({"state": state})
task_summary[task_id].update({"spawned": items.get("spawned")})
global_summary["run_mode"] = "dead"
return global_summary, task_summary
def dump_to_stdout(states, sort_by_cycle=False):
"""Print states in "cylc dump" format to STDOUT.
states = {
"task_id": {
"name": name,
"label": point,
"state": state,
"spawned": True|False},
# ...
}
"""
lines = []
for item in states.values():
if item['spawned'] in [True, "True", "true"]:
spawned = 'spawned'
else:
spawned = 'unspawned'
if sort_by_cycle:
values = [item['label'], item['name'], item['state'], spawned]
else:
values = [item['name'], item['label'], item['state'], spawned]
lines.append(', '.join(values))
lines.sort()
for line in lines:
print line
|