public class McvDataManager extends DataManager
The McvDataManager exists purely as a UI nicety. In the IDV, the list of
DataSource
s are presented in the same ordering found in
datasources.xml
.
While ordering the contents of datasources.xml
certainly would have
been easier, the approach taken here is a bit more future-proof. McV simply
sorts the data sources known to the IDV.
Modifier and Type | Field and Description |
---|---|
private Map<DataChoice,HydraControl> |
hydraDataToControl |
private Map<DataChoice,MultiSpectralDisplay> |
hydraDataToDisplay |
private static String |
STILL_LUCKY_ID
ID of the "I'm Still Feeling Lucky" data source.
|
allDataSourceIds, allFilters, ATTR_DOESMULTIPLES, ATTR_FACTORY, ATTR_FILESELECTION, ATTR_ID, ATTR_LABEL, ATTR_NAME, ATTR_NCMLTEMPLATE, ATTR_PATTERNS, ATTR_STANDALONE, ATTR_VALUE, dataSourceNameMap, DATATYPE_ID, DATATYPE_UNKNOWN, descriptors, fileDataSourceIds, fileFilters, idToDescriptor, PREF_GRIBINDEXINCACHE, PROP_CACHE_PERCENT, PROP_DEFAULT_DISPLAY, PROP_GEOSUBSET_BBOX, PROP_NETCDF_CONVENTIONHANDLERS, PROP_SHOW_IN_TREE, seenFilters, TAG_DATASOURCE, TAG_DATASOURCES, TAG_PROPERTY
Constructor and Description |
---|
McvDataManager()
Default constructor.
|
McvDataManager(DataContext dataContext)
Creates a new DataManager with the given
DataContext . |
Modifier and Type | Method and Description |
---|---|
boolean |
containsHydraControl(DataChoice choice) |
boolean |
containsHydraDisplay(DataChoice choice) |
HydraControl |
getHydraControl(DataChoice choice) |
MultiSpectralDisplay |
getHydraDisplay(DataChoice choice) |
void |
loadDataSourceXml(XmlResourceCollection resources)
Process the list of xml documents that define the different
DataSource s used within the idv. |
void |
setHydraControl(DataChoice choice,
HydraControl control) |
void |
setHydraDisplay(DataChoice choice,
MultiSpectralDisplay display) |
private ArrayList<TwoFacedObject> |
sortTwoFacedObjects(ArrayList<TwoFacedObject> objs)
Sorts an
ArrayList of TwoFacedObject s by label. |
addDataSource, createDataSource, createDataSource, createDataSource, createDataSourceAndAskForType, findDataSource, getAllDataSourceIds, getCurrent, getDataCacheDirectory, getDataContext, getDataSourceHtml, getDataSources, getDatasourceXml, getDatasourceXml, getDescriptor, getDescriptors, getFileDataSourceList, getFileFilters, getNewVariableName, getProperty, getProperty, getStandaloneDescriptors, haveDataSource, initEncoder, initResources, initURLStreamHandlers, isFormulaDataSource, loadGribResources, loadIospResources, main, reloadAllDataSources, removeAllDataSources, removeDataSource, setDODSCompression, validDatasourceId, validDatasourceId
private static final String STILL_LUCKY_ID
private final Map<DataChoice,HydraControl> hydraDataToControl
private final Map<DataChoice,MultiSpectralDisplay> hydraDataToDisplay
public McvDataManager()
public McvDataManager(DataContext dataContext)
DataContext
.dataContext
- The DataContext
that this DataManager exists
within (this is usually an instance of
IntegratedDataViewer
).public boolean containsHydraControl(DataChoice choice)
public boolean containsHydraDisplay(DataChoice choice)
public void setHydraControl(DataChoice choice, HydraControl control)
public void setHydraDisplay(DataChoice choice, MultiSpectralDisplay display)
public HydraControl getHydraControl(DataChoice choice)
public MultiSpectralDisplay getHydraDisplay(DataChoice choice)
public void loadDataSourceXml(XmlResourceCollection resources)
DataSource
s used within the idv. Overridden so that McIDAS-V
can alphabetize the lists of DataSource
s presented in the UI.loadDataSourceXml
in class DataManager
resources
- The XmlResourceCollection
that holds the set of
datasource xml documents. This may be null.private ArrayList<TwoFacedObject> sortTwoFacedObjects(ArrayList<TwoFacedObject> objs)
Sorts an ArrayList
of TwoFacedObject
s by label. Case is
ignored.
NOTE: If the ID of one of the objects represents the "I'm Still Feeling Lucky" data source, it'll always wind up at the end of the list.
objs
- The list that needs some sortin' out.objs
.