aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/cmdline/PackageIdentifier.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/cmdline/PackageIdentifier.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/cmdline/PackageIdentifier.java201
1 files changed, 0 insertions, 201 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/cmdline/PackageIdentifier.java b/src/main/java/com/google/devtools/build/lib/cmdline/PackageIdentifier.java
index b29e820b9c..4c995eb5cf 100644
--- a/src/main/java/com/google/devtools/build/lib/cmdline/PackageIdentifier.java
+++ b/src/main/java/com/google/devtools/build/lib/cmdline/PackageIdentifier.java
@@ -14,27 +14,14 @@
package com.google.devtools.build.lib.cmdline;
-import com.google.common.base.Throwables;
-import com.google.common.cache.CacheBuilder;
-import com.google.common.cache.CacheLoader;
-import com.google.common.cache.LoadingCache;
import com.google.common.collect.ComparisonChain;
import com.google.common.collect.Interner;
import com.google.common.collect.Interners;
-import com.google.devtools.build.lib.util.Pair;
import com.google.devtools.build.lib.util.Preconditions;
-import com.google.devtools.build.lib.util.StringCanonicalizer;
-import com.google.devtools.build.lib.util.StringUtilities;
import com.google.devtools.build.lib.vfs.Canonicalizer;
import com.google.devtools.build.lib.vfs.PathFragment;
-import java.io.IOException;
-import java.io.ObjectInputStream;
-import java.io.ObjectOutputStream;
-import java.io.ObjectStreamException;
import java.io.Serializable;
-import java.util.concurrent.ExecutionException;
-import java.util.regex.Pattern;
import javax.annotation.concurrent.Immutable;
@@ -60,194 +47,6 @@ public final class PackageIdentifier implements Comparable<PackageIdentifier>, S
return INTERNER.intern(new PackageIdentifier(repository, pkgName));
}
- /**
- * A human-readable name for the repository.
- */
- public static final class RepositoryName implements Serializable {
- private static final Pattern VALID_REPO_NAME = Pattern.compile("@[\\w\\-.]*");
-
- /** Helper for serializing {@link RepositoryName}. */
- private static final class SerializationProxy implements Serializable {
- private RepositoryName repositoryName;
-
- private SerializationProxy(RepositoryName repositoryName) {
- this.repositoryName = repositoryName;
- }
-
- private void writeObject(ObjectOutputStream out) throws IOException {
- out.writeObject(repositoryName.toString());
- }
-
- private void readObject(ObjectInputStream in)
- throws IOException, ClassNotFoundException {
- try {
- repositoryName = RepositoryName.create((String) in.readObject());
- } catch (LabelSyntaxException e) {
- throw new IOException("Error serializing repository name: " + e.getMessage());
- }
- }
-
- @SuppressWarnings("unused")
- private void readObjectNoData() throws ObjectStreamException {
- }
-
- private Object readResolve() {
- return repositoryName;
- }
- }
-
- private void readObject(@SuppressWarnings("unused") ObjectInputStream in) throws IOException {
- throw new IOException("Serialization is allowed only by proxy");
- }
-
- private Object writeReplace() {
- return new SerializationProxy(this);
- }
-
- private static final LoadingCache<String, RepositoryName> repositoryNameCache =
- CacheBuilder.newBuilder()
- .weakValues()
- .build(
- new CacheLoader<String, RepositoryName> () {
- @Override
- public RepositoryName load(String name) throws LabelSyntaxException {
- String errorMessage = validate(name);
- if (errorMessage != null) {
- errorMessage = "invalid repository name '"
- + StringUtilities.sanitizeControlChars(name) + "': " + errorMessage;
- throw new LabelSyntaxException(errorMessage);
- }
- return new RepositoryName(StringCanonicalizer.intern(name));
- }
- });
-
- /**
- * Makes sure that name is a valid repository name and creates a new RepositoryName using it.
- *
- * @throws LabelSyntaxException if the name is invalid
- */
- public static RepositoryName create(String name) throws LabelSyntaxException {
- try {
- return repositoryNameCache.get(name);
- } catch (ExecutionException e) {
- Throwables.propagateIfInstanceOf(e.getCause(), LabelSyntaxException.class);
- throw new IllegalStateException("Failed to create RepositoryName from " + name, e);
- }
- }
-
- /**
- * Extracts the repository name from a PathFragment that was created with
- * {@code PackageIdentifier.getPathFragment}.
- *
- * @return a {@code Pair} of the extracted repository name and the path fragment with stripped
- * of "external/"-prefix and repository name, or null if none was found or the repository name
- * was invalid.
- */
- public static Pair<RepositoryName, PathFragment> fromPathFragment(PathFragment path) {
- if (path.segmentCount() < 2 || !path.getSegment(0).equals(Label.EXTERNAL_PATH_PREFIX)) {
- return null;
- }
- try {
- RepositoryName repoName = RepositoryName.create("@" + path.getSegment(1));
- PathFragment subPath = path.subFragment(2, path.segmentCount());
- return Pair.of(repoName, subPath);
- } catch (LabelSyntaxException e) {
- return null;
- }
- }
-
- private final String name;
-
- private RepositoryName(String name) {
- this.name = name;
- }
-
- /**
- * Performs validity checking. Returns null on success, an error message otherwise.
- */
- private static String validate(String name) {
- if (name.isEmpty()) {
- return null;
- }
-
- // Some special cases for more user-friendly error messages.
- if (!name.startsWith("@")) {
- return "workspace names must start with '@'";
- }
- if (name.equals("@.")) {
- return "workspace names are not allowed to be '@.'";
- }
- if (name.equals("@..")) {
- return "workspace names are not allowed to be '@..'";
- }
-
- if (!VALID_REPO_NAME.matcher(name).matches()) {
- return "workspace names may contain only A-Z, a-z, 0-9, '-', '_' and '.'";
- }
-
- return null;
- }
-
- /**
- * Returns the repository name without the leading "{@literal @}". For the default repository,
- * returns "".
- */
- public String strippedName() {
- if (name.isEmpty()) {
- return name;
- }
- return name.substring(1);
- }
-
- /**
- * Returns if this is the default repository, that is, {@link #name} is "".
- */
- public boolean isDefault() {
- return name.isEmpty();
- }
-
- /**
- * Returns the repository name, with leading "{@literal @}" (or "" for the default repository).
- */
- // TODO(bazel-team): Use this over toString()- easier to track its usage.
- public String getName() {
- return name;
- }
-
- /**
- * Returns the path at which this repository is mapped within the exec root.
- */
- public PathFragment getPathFragment() {
- return isDefault()
- ? PathFragment.EMPTY_FRAGMENT
- : new PathFragment(Label.EXTERNAL_PATH_PREFIX).getRelative(strippedName());
- }
-
- /**
- * Returns the repository name, with leading "{@literal @}" (or "" for the default repository).
- */
- @Override
- public String toString() {
- return name;
- }
-
- @Override
- public boolean equals(Object object) {
- if (this == object) {
- return true;
- }
- if (!(object instanceof RepositoryName)) {
- return false;
- }
- return name.equals(((RepositoryName) object).name);
- }
-
- @Override
- public int hashCode() {
- return name.hashCode();
- }
- }
-
public static final String DEFAULT_REPOSITORY = "";
public static final RepositoryName DEFAULT_REPOSITORY_NAME;
public static final RepositoryName MAIN_REPOSITORY_NAME;