aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/collect/ImmutableIterable.java
blob: b998147bb9a7bf517de1d85a17d4d34919d05989 (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
// Copyright 2014 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.collect;

import com.google.devtools.build.lib.skyframe.serialization.autocodec.AutoCodec;
import java.util.Iterator;

/**
 * A wrapper that signals the immutability of a certain iterable.
 *
 * <p>Intended for use in scenarios when you have an iterable that is de facto immutable, but is not
 * recognized as such by {@link CollectionUtils#checkImmutable(Iterable)}.
 *
 * <p>Only use this when you know that the contents of the underlying iterable will never change, or
 * you will be setting yourself up for aliasing bugs.
 */
@AutoCodec
public final class ImmutableIterable<T> implements Iterable<T> {

  private final Iterable<T> iterable;

  private ImmutableIterable(Iterable<T> iterable) {
    this.iterable = iterable;
  }

  @Override
  public Iterator<T> iterator() {
    return iterable.iterator();
  }

  /** Creates an {@link ImmutableIterable} instance. */
  // Use a factory method in order to avoid having to specify generic arguments.
  @AutoCodec.Instantiator
  public static <T> ImmutableIterable<T> from(Iterable<T> iterable) {
    return new ImmutableIterable<>(iterable);
  }
}