IntentStubberRegistry.java

/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * 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 androidx.test.runner.intent;

import static androidx.test.internal.util.Checks.checkNotNull;
import static androidx.test.internal.util.Checks.checkState;

import android.os.Looper;
import java.util.concurrent.atomic.AtomicBoolean;

/** Exposes an implementation of {@link IntentStubber}. */
public final class IntentStubberRegistry {

  private static IntentStubber instance;

  private static AtomicBoolean isLoaded = new AtomicBoolean();

  /**
   * Loads an {@link IntentStubber} into this registry. There can only be one active stubber at a
   * time.
   *
   * <p>Calling this method multiple times in the same instrumentation will result in an exception.
   *
   * <p>This method can be called from any thread.
   */
  public static void load(IntentStubber intentStubber) {
    checkNotNull(intentStubber, "IntentStubber cannot be null!");
    checkState(
        !isLoaded.getAndSet(true),
        "Intent stubber already registered! Multiple stubbers are not"
            + "allowedAre you running under an ");
    instance = intentStubber;
  }

  /** @return if an {@link IntentStubber} has been loaded. */
  public static boolean isLoaded() {
    return isLoaded.get();
  }

  /**
   * Returns the loaded Intent Stubber instance.
   *
   * @throws IllegalStateException if this method is not called on the main thread.
   * @throws IllegalStateException if no Intent Stubber has been loaded.
   */
  public static IntentStubber getInstance() {
    checkMain();
    checkState(
        null != instance,
        "No intent monitor registered! Are you running under an "
            + "Instrumentation which registers intent monitors?");
    return instance;
  }

  private static void checkMain() {
    checkState(Looper.myLooper() == Looper.getMainLooper(), "Must be called on main thread.");
  }

  private IntentStubberRegistry() {}

  /** Clears the current instance of Intent Stubber. */
  public static synchronized void reset() {
    instance = null;
    isLoaded.set(false);
  }
}