All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spotify.apollo.route.VersionedRouteImpl Maven / Gradle / Ivy

The newest version!
/*
 * -\-\-
 * Spotify Apollo Extra
 * --
 * Copyright (C) 2013 - 2015 Spotify AB
 * --
 * 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.spotify.apollo.route;

import com.google.auto.value.AutoValue;

import java.util.Optional;

import static com.google.common.base.Preconditions.checkArgument;

@AutoValue
abstract class VersionedRouteImpl implements VersionedRoute {

  @Override
  public VersionedRoute validFrom(int validFrom) {
    checkArgument(validFrom >= 0, "validFrom must be non-negative, got %s", validFrom);
    verifyRangeNonEmpty(validFrom, removedIn());

    return new AutoValue_VersionedRouteImpl(route(), validFrom, removedIn());
  }

  @Override
  public VersionedRoute removedIn(int removedIn) {
    checkArgument(removedIn >= 0, "removedIn must be non-negative, got %s", removedIn);
    verifyRangeNonEmpty(validFrom(), Optional.of(removedIn));

    return new AutoValue_VersionedRouteImpl(route(), validFrom(), Optional.of(removedIn));
  }

  private void verifyRangeNonEmpty(int validFrom, Optional removedIn) {
    int effectiveRemovedIn = removedIn.orElse(validFrom + 1);
    checkArgument(validFrom < effectiveRemovedIn,
                  "empty version range: [%s, %s)", validFrom, effectiveRemovedIn);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy