Skip to content

Commit

Permalink
Merge fd11e39 into a46eb1a
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalperi committed Apr 27, 2017
2 parents a46eb1a + fd11e39 commit b95dc77
Showing 1 changed file with 56 additions and 0 deletions.
@@ -0,0 +1,56 @@
/*
* 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.beam.sdk.io;

import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;
import org.apache.beam.sdk.io.fs.ResourceId;
import org.apache.beam.sdk.options.ValueProvider;
import org.apache.beam.sdk.options.ValueProvider.NestedValueProvider;
import org.apache.beam.sdk.transforms.SerializableFunction;

/**
* Helper functions for producing a {@link ResourceId} that references a local file or directory.
*/
public final class LocalResources {

public static ResourceId fromFile(File file, boolean isDirectory) {
return LocalResourceId.fromPath(file.toPath(), isDirectory);
}

public static ResourceId fromPath(Path path, boolean isDirectory) {
return LocalResourceId.fromPath(path, isDirectory);
}

public static ResourceId fromString(String filename, boolean isDirectory) {
return LocalResourceId.fromPath(Paths.get(filename), isDirectory);
}

public static ValueProvider<ResourceId>
fromString(ValueProvider<String> resourceProvider, final boolean isDirectory) {
return NestedValueProvider.of(resourceProvider, new SerializableFunction<String, ResourceId>() {
@Override
public ResourceId apply(String input) {
return fromString(input, isDirectory);
}
});
}

private LocalResources() {} // prevent instantiation
}

0 comments on commit b95dc77

Please sign in to comment.