org.orekit.data.DataLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orekit Show documentation
Show all versions of orekit Show documentation
OREKIT (ORbits Extrapolation KIT) is a low level space dynamics library.
It provides basic elements (orbits, dates, attitude, frames ...) and
various algorithms to handle them (conversions, analytical and numerical
propagation, pointing ...).
/* Copyright 2002-2024 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS 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 org.orekit.data;
import java.io.IOException;
import java.io.InputStream;
import java.text.ParseException;
/** Interface for loading data files from {@link DataProvider data providers}.
* @see DataProvider
* @author Luc Maisonobe
*/
public interface DataLoader {
/** Check if the loader still accepts new data.
*
* This method is used to speed up data loading by interrupting crawling
* the data sets as soon as a loader has found the data it was waiting for.
* For loaders that can merge data from any number of sources (for example
* JPL ephemerides or Earth Orientation Parameters that are split among
* several files), this method should always return true to make sure no
* data is left over.
*
* @return true while the loader still accepts new data
*/
boolean stillAcceptsData();
/** Load data from a stream.
* @param input data input stream
* @param name name of the file (or zip entry)
* @exception IOException if data can't be read
* @exception ParseException if data can't be parsed
* or if some loader specific error occurs
*/
void loadData(InputStream input, String name)
throws IOException, ParseException;
}