OverdueWrapper.java

73 lines | 3.024 kB Blame History Raw Download
/*
 * Copyright 2010-2011 Ning, Inc.
 *
 * Ning licenses this file to you 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.ning.billing.overdue.wrapper;

import com.ning.billing.junction.api.Blockable;
import com.ning.billing.junction.api.BlockingApi;
import com.ning.billing.overdue.OverdueApiException;
import com.ning.billing.overdue.OverdueState;
import com.ning.billing.overdue.applicator.OverdueStateApplicator;
import com.ning.billing.overdue.calculator.BillingStateCalculator;
import com.ning.billing.overdue.config.api.BillingState;
import com.ning.billing.overdue.config.api.OverdueError;
import com.ning.billing.overdue.config.api.OverdueStateSet;
import com.ning.billing.util.clock.Clock;

public class OverdueWrapper<T extends Blockable> {
    private final T overdueable;
    private final BlockingApi api;
    private final Clock clock;
    private final OverdueStateSet<T> overdueStateSet;
    private final BillingStateCalculator<T> billingStateCalcuator;
    private final OverdueStateApplicator<T> overdueStateApplicator;

    public OverdueWrapper(final T overdueable, final BlockingApi api,
                          final OverdueStateSet<T> overdueStateSet,
                          final Clock clock,
                          final BillingStateCalculator<T> billingStateCalcuator,
                          final OverdueStateApplicator<T> overdueStateApplicator) {
        this.overdueable = overdueable;
        this.overdueStateSet = overdueStateSet;
        this.api = api;
        this.clock = clock;
        this.billingStateCalcuator = billingStateCalcuator;
        this.overdueStateApplicator = overdueStateApplicator;
    }

    public OverdueState<T> refresh() throws OverdueError, OverdueApiException {
        if (overdueStateSet.size() < 1) { // No configuration available
            return overdueStateSet.getClearState();
        }

        final OverdueState<T> nextOverdueState;
        final BillingState<T> billingState = billingState();
        final String previousOverdueStateName = api.getBlockingStateFor(overdueable).getStateName();
        nextOverdueState = overdueStateSet.calculateOverdueState(billingState, clock.getUTCNow());

        if (nextOverdueState != null && !previousOverdueStateName.equals(nextOverdueState.getName())) {
            overdueStateApplicator.apply(overdueable, previousOverdueStateName, nextOverdueState);
        }

        return nextOverdueState;

    }

    public BillingState<T> billingState() throws OverdueError {
        return billingStateCalcuator.calculateBillingState(overdueable);
    }
}