Skip to content

Commit 975618f

Browse files
committed
Extract filters for protocol features used for specific file attributes in file transfers.
1 parent 37ce055 commit 975618f

26 files changed

+1573
-573
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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 java.util.Optional;
24+
25+
public interface FeatureFilter {
26+
default TransferStatus prepare(final Path file, final Optional<Local> local, final TransferStatus status, final ProgressListener progress) throws BackgroundException {
27+
// No-op
28+
return status;
29+
}
30+
31+
default void apply(final Path file, final TransferStatus status, final ProgressListener progress) throws BackgroundException {
32+
// No-op
33+
}
34+
35+
default void complete(final Path file, final Optional<Local> local, final TransferStatus status, final ProgressListener progress) throws BackgroundException {
36+
// No-op
37+
}
38+
39+
FeatureFilter noop = new FeatureFilter() {
40+
@Override
41+
public TransferStatus prepare(final Path file, final Optional<Local> local, final TransferStatus status, final ProgressListener progress) {
42+
// No-op
43+
return status;
44+
}
45+
};
46+
}

0 commit comments

Comments
 (0)