3 * OpenStack Swift based file backend.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup FileBackend
25 namespace Wikimedia\FileBackend\FileOpHandle
;
28 use Wikimedia\FileBackend\SwiftFileBackend
;
30 class SwiftFileOpHandle
extends FileBackendStoreOpHandle
{
31 /** @var array[] List of HTTP request maps for SwiftFileBackend::requestWithAuth */
33 /** @var Closure Function to run after each HTTP request finishes */
36 /** @var int Class CONTINUE_* constant */
37 public $state = self
::CONTINUE_IF_OK
;
39 /** @var int Continue with the next requests stages if no errors occurred */
40 public const CONTINUE_IF_OK
= 0;
41 /** @var int Cancel the next requests stages */
42 public const CONTINUE_NO
= 1;
45 * Construct a handle to be use with SwiftFileOpHandle::doExecuteOpHandlesInternal()
47 * The callback returns a class CONTINUE_* constant and takes the following parameters:
48 * - An HTTP request map array with 'response' filled
49 * - A StatusValue instance to be updated as needed
51 * @param SwiftFileBackend $backend
52 * @param Closure $callback
53 * @param array $httpOp Request to send via SwiftFileBackend::requestWithAuth()
55 public function __construct( SwiftFileBackend
$backend, Closure
$callback, array $httpOp ) {
56 $this->backend
= $backend;
57 $this->callback
= $callback;
58 $this->httpOp
= $httpOp;
62 /** @deprecated class alias since 1.43 */
63 class_alias( SwiftFileOpHandle
::class, 'SwiftFileOpHandle' );