All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.streampipes.manager.assets.AssetManager Maven / Gradle / Ivy

There is a newer version: 0.65.0
Show newest version
/*
Copyright 2019 FZI Forschungszentrum Informatik

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.
*/
package org.streampipes.manager.assets;

import org.apache.commons.io.FileUtils;
import org.streampipes.commons.constants.GlobalStreamPipesConstants;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

public class AssetManager {

  public static byte[] getAssetIcon(String appId) throws IOException {
    return Files.readAllBytes(Paths.get(getAssetIconPath(appId)));
  }

  public static String getAssetDocumentation(String appId) throws IOException {
    return new String(Files.readAllBytes(Paths.get(getAssetDocumentationPath(appId))));
  }

  public static byte[] getAsset(String appId, String assetName) throws IOException {
    return Files.readAllBytes(Paths.get(getAssetPath(appId, assetName)));
  }

  public static void storeAsset(String pipelineElementUri, String appId) throws IOException {
    InputStream assetStream = new AssetFetcher(pipelineElementUri, appId)
            .fetchPipelineElementAssets();
    new AssetExtractor(assetStream, appId).extractAssetContents();
  }

  public static void deleteAsset(String appId) throws IOException {
    Path path = Paths.get(getAssetDir(appId));
    if (Files.exists(path)) {
      FileUtils.deleteDirectory(path.toFile());
    }
  }

  private static String getAssetPath(String appId, String assetName) {
    return getAssetDir(appId) + File.separator + assetName;
  }

  private static String getAssetIconPath(String appId) {
    return getAssetDir(appId) + File.separator + GlobalStreamPipesConstants.STD_ICON_NAME;
  }

  private static String getAssetDocumentationPath(String appId) {
    return getAssetDir(appId) + File.separator + GlobalStreamPipesConstants.STD_DOCUMENTATION_NAME;
  }

  private static String getAssetDir(String appId) {
    return AssetConstants.ASSET_BASE_DIR + File.separator + appId;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy