To avoid the dead-lock scenario when green futures are being waited on in the same call as non-green futures just disallow this rare and unlikely scenario in the first place. Change-Id: I5b57f7aae94ae40d22047b0b085e4d99e034c2a6
51 lines
1.8 KiB
Python
51 lines
1.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2013 Yahoo! Inc. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from concurrent import futures
|
|
|
|
from taskflow.utils import eventlet_utils as eu
|
|
|
|
|
|
def wait_for_any(fs, timeout=None):
|
|
"""Wait for one of the futures to complete.
|
|
|
|
Works correctly with both green and non-green futures (but not both
|
|
together, since this can't be guaranteed to avoid dead-lock due to how
|
|
the waiting implementations are different when green threads are being
|
|
used).
|
|
|
|
Returns pair (done futures, not done futures).
|
|
"""
|
|
green_fs = sum(1 for f in fs if isinstance(f, eu.GreenFuture))
|
|
if not green_fs:
|
|
return tuple(futures.wait(fs, timeout=timeout,
|
|
return_when=futures.FIRST_COMPLETED))
|
|
else:
|
|
non_green_fs = len(fs) - green_fs
|
|
if non_green_fs:
|
|
raise RuntimeError("Can not wait on %s green futures and %s"
|
|
" non-green futures in the same `wait_for_any`"
|
|
" call" % (green_fs, non_green_fs))
|
|
else:
|
|
return eu.wait_for_any(fs, timeout=timeout)
|
|
|
|
|
|
def make_completed_future(result):
|
|
"""Make with completed with given result."""
|
|
future = futures.Future()
|
|
future.set_result(result)
|
|
return future
|