/* * Copyright 2013-2017 consulo.io * * 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 consulo.externalStorage; import com.intellij.openapi.components.RoamingType; import com.intellij.openapi.components.impl.stores.StateStorageManager; import com.intellij.openapi.components.impl.stores.StreamProvider; import com.intellij.openapi.util.text.StringUtil; import consulo.externalStorage.storage.ExternalStorage; import consulo.ide.webService.WebServiceApi; import consulo.ide.webService.WebServicesConfiguration; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.io.IOException; import java.io.InputStream; import java.util.Collection; /** * @author VISTALL * @since 11-Feb-17 */ public class ExternalStorageStreamProvider extends StreamProvider { private ExternalStorage myStorage; private StateStorageManager myStateStorageManager; public ExternalStorageStreamProvider(ExternalStorage storage, StateStorageManager stateStorageManager) { myStorage = storage; myStateStorageManager = stateStorageManager; } @Override public boolean isEnabled() { return !StringUtil.isEmpty(WebServicesConfiguration.getInstance().getOAuthKey(WebServiceApi.SYNCHRONIZE_API)); } @NotNull @Override public Collection<String> listSubFiles(@NotNull String fileSpec, @NotNull RoamingType roamingType) { return myStorage.listSubFiles(fileSpec, roamingType); } @Override public void saveContent(@NotNull String fileSpec, @NotNull byte[] content, int size, @NotNull RoamingType roamingType) throws IOException { myStorage.saveContent(fileSpec, roamingType, content, size); } @Nullable @Override public InputStream loadContent(@NotNull String fileSpec, @NotNull RoamingType roamingType) throws IOException { return myStorage.loadContent(fileSpec, roamingType, myStateStorageManager); } @Override public void delete(@NotNull String fileSpec, @NotNull RoamingType roamingType) { myStorage.delete(fileSpec, roamingType); } }