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

org.opentripplanner.gtfs.mapping.FareAttributeMapper Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.gtfs.mapping;

import org.opentripplanner.model.FareAttribute;
import org.opentripplanner.util.MapUtils;

import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

import static org.opentripplanner.gtfs.mapping.AgencyAndIdMapper.mapAgencyAndId;

/** Responsible for mapping GTFS FareAttribute into the OTP model. */
class FareAttributeMapper {
    private Map mappedStops = new HashMap<>();

    Collection map(Collection allStops) {
        return MapUtils.mapToList(allStops, this::map);
    }

    /** Map from GTFS to OTP model, {@code null} safe.  */
    FareAttribute map(org.onebusaway.gtfs.model.FareAttribute orginal) {
        return orginal == null ? null : mappedStops.computeIfAbsent(orginal, this::doMap);
    }

    private FareAttribute doMap(org.onebusaway.gtfs.model.FareAttribute rhs) {
        FareAttribute lhs = new FareAttribute();

        lhs.setId(mapAgencyAndId(rhs.getId()));
        lhs.setPrice(rhs.getPrice());
        lhs.setCurrencyType(rhs.getCurrencyType());
        lhs.setPaymentMethod(rhs.getPaymentMethod());
        lhs.setTransfers(rhs.getTransfers());
        lhs.setTransferDuration(rhs.getTransferDuration());
        lhs.setYouthPrice(rhs.getYouthPrice());
        lhs.setSeniorPrice(rhs.getSeniorPrice());
        lhs.setJourneyDuration(rhs.getJourneyDuration());

        return lhs;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy