|
| 1 | +package ch.cyberduck.core.transfer; |
| 2 | + |
| 3 | +/* |
| 4 | + * Copyright (c) 2002-2024 iterate GmbH. All rights reserved. |
| 5 | + * https://cyberduck.io/ |
| 6 | + * |
| 7 | + * This program is free software; you can redistribute it and/or modify |
| 8 | + * it under the terms of the GNU General Public License as published by |
| 9 | + * the Free Software Foundation, either version 3 of the License, or |
| 10 | + * (at your option) any later version. |
| 11 | + * |
| 12 | + * This program is distributed in the hope that it will be useful, |
| 13 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | + * GNU General Public License for more details. |
| 16 | + */ |
| 17 | + |
| 18 | +import ch.cyberduck.core.Local; |
| 19 | +import ch.cyberduck.core.Path; |
| 20 | +import ch.cyberduck.core.ProgressListener; |
| 21 | +import ch.cyberduck.core.exception.BackgroundException; |
| 22 | + |
| 23 | +import org.apache.logging.log4j.LogManager; |
| 24 | +import org.apache.logging.log4j.Logger; |
| 25 | + |
| 26 | +import java.util.Optional; |
| 27 | + |
| 28 | +public class ChainedFeatureFilter implements FeatureFilter { |
| 29 | + private static final Logger log = LogManager.getLogger(ChainedFeatureFilter.class); |
| 30 | + |
| 31 | + private final FeatureFilter[] filters; |
| 32 | + |
| 33 | + public ChainedFeatureFilter(final FeatureFilter... filters) { |
| 34 | + this.filters = filters; |
| 35 | + } |
| 36 | + |
| 37 | + @Override |
| 38 | + public TransferStatus prepare(final Path file, final Optional<Local> local, final TransferStatus status, final ProgressListener progress) throws BackgroundException { |
| 39 | + for(final FeatureFilter filter : filters) { |
| 40 | + log.debug("Prepare {} with {}", file, filter); |
| 41 | + filter.prepare(file, local, status, progress); |
| 42 | + } |
| 43 | + return status; |
| 44 | + } |
| 45 | + |
| 46 | + @Override |
| 47 | + public void complete(final Path file, final Optional<Local> local, final TransferStatus status, final ProgressListener progress) throws BackgroundException { |
| 48 | + for(final FeatureFilter filter : filters) { |
| 49 | + log.debug("Complete {} with {}", file, filter); |
| 50 | + filter.complete(file, local, status, progress); |
| 51 | + } |
| 52 | + } |
| 53 | +} |
0 commit comments