forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added local filesystem backend for package manager (apache#12708)
* Added local filesystem backend for package manager * fixed package name in package-info.java * Fixed javadoc
- Loading branch information
Showing
6 changed files
with
450 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you 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. | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>pulsar-package-management</artifactId> | ||
<groupId>org.apache.pulsar</groupId> | ||
<version>2.10.0-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>pulsar-package-filesystem-storage</artifactId> | ||
<name>Apache Pulsar :: Package Management :: Filesystem Storage</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>pulsar-package-core</artifactId> | ||
<version>${project.parent.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>testmocks</artifactId> | ||
<version>${project.parent.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
150 changes: 150 additions & 0 deletions
150
...a/org/apache/pulsar/packages/management/storage/filesystem/FileSystemPackagesStorage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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. | ||
*/ | ||
package org.apache.pulsar.packages.management.storage.filesystem; | ||
|
||
import com.google.common.io.ByteStreams; | ||
import java.io.BufferedInputStream; | ||
import java.io.BufferedOutputStream; | ||
import java.io.File; | ||
import java.io.FileInputStream; | ||
import java.io.FileOutputStream; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.io.OutputStream; | ||
import java.nio.file.Paths; | ||
import java.util.Arrays; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.concurrent.CompletableFuture; | ||
import lombok.Cleanup; | ||
import lombok.extern.slf4j.Slf4j; | ||
import org.apache.pulsar.packages.management.core.PackagesStorage; | ||
import org.apache.pulsar.packages.management.core.PackagesStorageConfiguration; | ||
|
||
|
||
/** | ||
* Packages management storage implementation with filesystem. | ||
*/ | ||
@Slf4j | ||
public class FileSystemPackagesStorage implements PackagesStorage { | ||
|
||
private static final String STORAGE_PATH = "STORAGE_PATH"; | ||
private static final String DEFAULT_STORAGE_PATH = "packages-storage"; | ||
|
||
private final File storagePath; | ||
|
||
FileSystemPackagesStorage(PackagesStorageConfiguration configuration) { | ||
String storagePath = configuration.getProperty(STORAGE_PATH); | ||
if (storagePath != null) { | ||
this.storagePath = new File(storagePath); | ||
} else { | ||
this.storagePath = new File(DEFAULT_STORAGE_PATH); | ||
} | ||
} | ||
|
||
private File getPath(String path) { | ||
File f = Paths.get(storagePath.toString(), path).toFile(); | ||
if (!f.getParentFile().exists()) { | ||
if (!f.getParentFile().mkdirs()) { | ||
throw new RuntimeException("Failed to create parent dirs for " + path); | ||
} | ||
} | ||
return f; | ||
} | ||
|
||
@Override | ||
public void initialize() { | ||
if (!storagePath.exists()) { | ||
if (!storagePath.mkdirs()) { | ||
throw new RuntimeException("Failed to create base storage directory at " + storagePath); | ||
} | ||
} | ||
|
||
log.info("Packages management filesystem storage initialized on {}", storagePath); | ||
} | ||
|
||
@Override | ||
public CompletableFuture<Void> writeAsync(String path, InputStream inputStream) { | ||
try { | ||
File f = getPath(path); | ||
|
||
@Cleanup | ||
OutputStream os = new FileOutputStream(f); | ||
|
||
@Cleanup | ||
BufferedOutputStream bos = new BufferedOutputStream(os); | ||
ByteStreams.copy(inputStream, bos); | ||
|
||
return CompletableFuture.completedFuture(null); | ||
} catch (IOException e) { | ||
CompletableFuture<Void> f = new CompletableFuture<>(); | ||
f.completeExceptionally(e); | ||
return f; | ||
} | ||
} | ||
|
||
@Override | ||
public CompletableFuture<Void> readAsync(String path, OutputStream outputStream) { | ||
try { | ||
@Cleanup | ||
InputStream is = new FileInputStream(getPath(path)); | ||
|
||
@Cleanup | ||
BufferedInputStream bis = new BufferedInputStream(is); | ||
ByteStreams.copy(bis, outputStream); | ||
|
||
return CompletableFuture.completedFuture(null); | ||
} catch (IOException e) { | ||
CompletableFuture<Void> f = new CompletableFuture<>(); | ||
f.completeExceptionally(e); | ||
return f; | ||
} | ||
} | ||
|
||
@Override | ||
public CompletableFuture<Void> deleteAsync(String path) { | ||
if (getPath(path).delete()) { | ||
return CompletableFuture.completedFuture(null); | ||
} else { | ||
CompletableFuture<Void> f = new CompletableFuture<>(); | ||
f.completeExceptionally(new IOException("Failed to delete file at " + path)); | ||
return f; | ||
} | ||
} | ||
|
||
@Override | ||
public CompletableFuture<List<String>> listAsync(String path) { | ||
String[] files = getPath(path).list(); | ||
if (files == null) { | ||
return CompletableFuture.completedFuture(Collections.emptyList()); | ||
} else { | ||
return CompletableFuture.completedFuture(Arrays.asList(files)); | ||
} | ||
} | ||
|
||
@Override | ||
public CompletableFuture<Boolean> existAsync(String path) { | ||
return CompletableFuture.completedFuture(getPath(path).exists()); | ||
} | ||
|
||
@Override | ||
public CompletableFuture<Void> closeAsync() { | ||
return CompletableFuture.completedFuture(null); | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
...ache/pulsar/packages/management/storage/filesystem/FileSystemPackagesStorageProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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. | ||
*/ | ||
package org.apache.pulsar.packages.management.storage.filesystem; | ||
|
||
import org.apache.pulsar.packages.management.core.PackagesStorage; | ||
import org.apache.pulsar.packages.management.core.PackagesStorageConfiguration; | ||
import org.apache.pulsar.packages.management.core.PackagesStorageProvider; | ||
|
||
public class FileSystemPackagesStorageProvider implements PackagesStorageProvider { | ||
@Override | ||
public PackagesStorage getStorage(PackagesStorageConfiguration config) { | ||
return new FileSystemPackagesStorage(config); | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
.../src/main/java/org/apache/pulsar/packages/management/storage/filesystem/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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. | ||
*/ | ||
|
||
/** | ||
* Packages management storage implementation with filesystem. | ||
*/ | ||
package org.apache.pulsar.packages.management.storage.filesystem; |
Oops, something went wrong.