UtcTaiOffsetLoader.java

  1. /* Contributed in the public domain.
  2.  * Licensed to CS GROUP (CS) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * CS licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *   http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.orekit.time;

  18. import java.io.IOException;
  19. import java.io.InputStream;
  20. import java.util.ArrayList;
  21. import java.util.List;

  22. import org.orekit.data.DataLoader;

  23. /**
  24.  * A {@link DataLoader} based on a {@link UTCTAIOffsetsLoader.Parser} that loads a single
  25.  * file.
  26.  *
  27.  * @author Evan Ward
  28.  * @since 10.1
  29.  */
  30. class UtcTaiOffsetLoader implements DataLoader {

  31.     /** Leap second parser. */
  32.     private final UTCTAIOffsetsLoader.Parser parser;

  33.     /** UTC-TAI offsets. */
  34.     private final List<OffsetModel> offsets;

  35.     /**
  36.      * Create a data loader from a lep second parser.
  37.      *
  38.      * @param parser leap second parser.
  39.      */
  40.     UtcTaiOffsetLoader(final UTCTAIOffsetsLoader.Parser parser) {
  41.         this.parser = parser;
  42.         this.offsets = new ArrayList<>();
  43.     }

  44.     /**
  45.      * Get the parsed offsets.
  46.      *
  47.      * @return parsed offsets
  48.      */
  49.     public List<OffsetModel> getOffsets() {
  50.         return offsets;
  51.     }

  52.     @Override
  53.     public boolean stillAcceptsData() {
  54.         return offsets.isEmpty();
  55.     }

  56.     @Override
  57.     public void loadData(final InputStream input, final String name)
  58.             throws IOException {
  59.         offsets.clear();
  60.         offsets.addAll(parser.parse(input, name));
  61.     }

  62. }