#!python

# THIS FILE IS PART OF THE CYLC SUITE ENGINE.
# Copyright (C) 2008-2019 NIWA & British Crown (Met Office) & Contributors.
#
# 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/>.

"""cylc [control] kill [OPTIONS] ARGS

Kill jobs of active tasks and update their statuses accordingly.

To kill one or more tasks, "cylc kill REG TASK_GLOB ..."; to kill all active
tasks: "cylc kill REG".
"""

import sys
if '--use-ssh' in sys.argv[1:]:
    sys.argv.remove('--use-ssh')
    from cylc.remote import remrun
    if remrun():
        sys.exit(0)

from cylc.option_parsers import CylcOptionParser as COP
from cylc.network.client import SuiteRuntimeClient
from cylc.terminal import prompt, cli_function


@cli_function
def main():
    """CLI of "cylc kill"."""
    parser = COP(
        __doc__, comms=True, multitask=True,
        argdoc=[
            ('REG', 'Suite name'),
            ('[TASK_GLOB ...]', 'Task matching patterns')])

    options, (suite, *task_globs) = parser.parse_args()

    if task_globs:
        prompt('Kill task %s in %s' % (task_globs, suite), options.force)
    else:
        prompt('Kill ALL tasks in %s' % (suite), options.force)
    pclient = SuiteRuntimeClient(
        suite, options.owner, options.host, options.port)
    pclient(
        'kill_tasks',
        {'task_globs': task_globs},
        timeout=options.comms_timeout
    )


if __name__ == "__main__":
    main()
