aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/bazel/repository/DecompressorValue.java
blob: db1e4a5900dee0f932690de7162663091fdf37c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// Copyright 2015 Google Inc. 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.bazel.repository;

import com.google.common.base.Optional;
import com.google.devtools.build.lib.vfs.Path;
import com.google.devtools.build.skyframe.SkyKey;
import com.google.devtools.build.skyframe.SkyValue;

import java.io.IOException;
import java.util.Objects;

import javax.annotation.Nullable;

/**
 * The contents of decompressed archive.
 */
public class DecompressorValue implements SkyValue {

  private final Path directory;

  public DecompressorValue(Path repositoryPath) {
    directory = repositoryPath;
  }

  public Path getDirectory() {
    return directory;
  }

  @Override
  public boolean equals(Object other) {
    if (this == other) {
      return true;
    }

    if (!(other instanceof DecompressorValue)) {
      return false;
    }

    return directory.equals(((DecompressorValue) other).directory);
  }

  @Override
  public int hashCode() {
    return directory.hashCode();
  }

  public static SkyKey fileKey(
      String targetKind, String targetName, Path archivePath, Path repositoryPath) {
    return new SkyKey(
        FileFunction.NAME,
        new DecompressorDescriptor(targetKind, targetName, archivePath, repositoryPath));
  }

  public static SkyKey jarKey(
      String targetKind, String targetName, Path archivePath, Path repositoryPath) {
    return new SkyKey(JarFunction.NAME,
        new DecompressorDescriptor(targetKind, targetName, archivePath, repositoryPath));
  }

  public static SkyKey key(
      String targetKind, String targetName, Path archivePath, Path repositoryPath)
      throws IOException {
    return key(targetKind, targetName, archivePath, repositoryPath, null);
  }

  public static SkyKey key(
      String targetKind, String targetName, Path archivePath, Path repositoryPath,
      @Nullable String prefix)
      throws IOException {
    String baseName = archivePath.getBaseName();

    DecompressorDescriptor descriptor =
        new DecompressorDescriptor(targetKind, targetName, archivePath, repositoryPath, prefix);

    if (baseName.endsWith(".zip") || baseName.endsWith(".jar") || baseName.endsWith(".war")) {
      return new SkyKey(ZipFunction.NAME, descriptor);
    } else if (baseName.endsWith(".tar.gz") || baseName.endsWith(".tgz")) {
      return new SkyKey(TarGzFunction.NAME, descriptor);
    } else {
      throw new IOException(
          String.format("Expected %s %s to create file with a .zip, .jar, .war, .tar.gz, or .tgz"
              + " suffix (got %s)", targetKind, targetName, archivePath));
    }
  }

  /**
   * Description of an archive to be decompressed for use in a SkyKey.
   * TODO(bazel-team): this should be an autovalue class.
   */
  public static class DecompressorDescriptor {
    private final String targetKind;
    private final String targetName;
    private final Path archivePath;
    private final Path repositoryPath;
    private final Optional<String> prefix;

    private DecompressorDescriptor(String targetKind, String targetName, Path archivePath,
        Path repositoryPath) {
      this(targetKind, targetName, archivePath, repositoryPath, null);
    }

    private DecompressorDescriptor(String targetKind, String targetName, Path archivePath,
        Path repositoryPath, @Nullable String prefix) {
      this.targetKind = targetKind;
      this.targetName = targetName;
      this.archivePath = archivePath;
      this.repositoryPath = repositoryPath;
      this.prefix = Optional.fromNullable(prefix);
    }

    public String targetKind() {
      return targetKind;
    }

    public String targetName() {
      return targetName;
    }

    public Path archivePath() {
      return archivePath;
    }

    public Path repositoryPath() {
      return repositoryPath;
    }

    public Optional<String> prefix() {
      return prefix;
    }

    @Override
    public boolean equals(Object other) {
      if (this == other) {
        return true;
      }

      if (!(other instanceof DecompressorDescriptor)) {
        return false;
      }

      DecompressorDescriptor descriptor = (DecompressorDescriptor) other;
      return targetKind.equals(descriptor.targetKind)
          && targetName.equals(descriptor.targetName)
          && archivePath.equals(descriptor.archivePath)
          && repositoryPath.equals(descriptor.repositoryPath)
          && prefix.equals(descriptor.prefix);
    }

    @Override
    public int hashCode() {
      return Objects.hash(targetKind, targetName, archivePath, repositoryPath, prefix);
    }
  }
}