aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/cmdline/RepositoryName.java
diff options
context:
space:
mode:
authorGravatar Kristina Chodorow <kchodorow@google.com>2016-01-25 17:12:29 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-01-26 13:05:26 +0000
commitec5c07a953f546a7a336fc3ee2ba31cf6f36369a (patch)
tree5d2e95f61423312d9021b94ec4466e862c07e170 /src/main/java/com/google/devtools/build/lib/cmdline/RepositoryName.java
parent14aaeb90d14fdd61f109f34d13710815253eaa93 (diff)
Move RepositoryName to its own top-level class
As it's about to get more important in its own right. The only change that isn't just moving code around is making RepositoryName.validate package-private. -- MOS_MIGRATED_REVID=112956571
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/cmdline/RepositoryName.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/cmdline/RepositoryName.java220
1 files changed, 220 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/cmdline/RepositoryName.java b/src/main/java/com/google/devtools/build/lib/cmdline/RepositoryName.java
new file mode 100644
index 0000000000..2aa253dcb1
--- /dev/null
+++ b/src/main/java/com/google/devtools/build/lib/cmdline/RepositoryName.java
@@ -0,0 +1,220 @@
+// Copyright 2016 The Bazel Authors. All rights reserved.
+//
+// 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 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.devtools.build.lib.util.Pair;
+import com.google.devtools.build.lib.util.StringCanonicalizer;
+import com.google.devtools.build.lib.util.StringUtilities;
+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;
+
+/**
+ * A human-readable name for the repository.
+ */
+public 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.
+ */
+ 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();
+ }
+}