Search in sources :

Example 1 with StatisticType

use of org.locationtech.geowave.core.store.statistics.StatisticType in project geowave by locationtech.

the class StatsCommandLineOptions method resolveMatchingStatistics.

@SuppressWarnings({ "rawtypes", "unchecked" })
public List<Statistic<? extends StatisticValue<?>>> resolveMatchingStatistics(final DataStore dataStore, final DataStatisticsStore statsStore, final IndexStore indexStore) {
    final List<Statistic<? extends StatisticValue<?>>> matching = Lists.newArrayList();
    if ((indexName != null) && ((typeName != null) || (fieldName != null))) {
        throw new ParameterException("Unable to process index statistics for a single type. Specify either an index name or a type name.");
    }
    StatisticType statisticType = null;
    if (statType != null) {
        statisticType = StatisticsRegistry.instance().getStatisticType(statType);
        if (statisticType == null) {
            throw new ParameterException("Unrecognized statistic type: " + statType);
        }
    }
    if (statisticType != null) {
        if (statisticType instanceof IndexStatisticType) {
            if (indexName == null) {
                throw new ParameterException("An index name must be supplied when specifying an index statistic type.");
            }
            final Index index = indexStore.getIndex(indexName);
            if (index == null) {
                throw new ParameterException("Unable to find an index named: " + indexName);
            }
            try (CloseableIterator<? extends Statistic<? extends StatisticValue<?>>> stats = statsStore.getIndexStatistics(index, statisticType, tag)) {
                stats.forEachRemaining(stat -> matching.add(stat));
            }
        } else if (statisticType instanceof DataTypeStatisticType) {
            if (typeName == null) {
                throw new ParameterException("A type name must be supplied when specifying a data type statistic type.");
            }
            final DataTypeAdapter<?> adapter = dataStore.getType(typeName);
            if (adapter == null) {
                throw new ParameterException("Unable to find an type named: " + typeName);
            }
            try (CloseableIterator<? extends Statistic<? extends StatisticValue<?>>> stats = statsStore.getDataTypeStatistics(adapter, statisticType, tag)) {
                stats.forEachRemaining(stat -> matching.add(stat));
            }
        } else if (statisticType instanceof FieldStatisticType) {
            if (typeName == null) {
                throw new ParameterException("A type name must be supplied when specifying a field statistic type.");
            }
            final DataTypeAdapter<?> adapter = dataStore.getType(typeName);
            if (adapter == null) {
                throw new ParameterException("Unable to find an type named: " + typeName);
            }
            if (fieldName == null) {
                throw new ParameterException("A field name must be supplied when specifying a field statistic type.");
            }
            boolean fieldFound = false;
            final FieldDescriptor[] fields = adapter.getFieldDescriptors();
            for (int i = 0; i < fields.length; i++) {
                if (fields[i].fieldName().equals(fieldName)) {
                    fieldFound = true;
                    break;
                }
            }
            if (!fieldFound) {
                throw new ParameterException("Unable to find a field named '" + fieldName + "' on type '" + typeName + "'.");
            }
            try (CloseableIterator<? extends Statistic<? extends StatisticValue<?>>> stats = statsStore.getFieldStatistics(adapter, statisticType, fieldName, tag)) {
                stats.forEachRemaining(stat -> matching.add(stat));
            }
        }
    } else {
        try (CloseableIterator<? extends Statistic<? extends StatisticValue<?>>> stats = statsStore.getAllStatistics(null)) {
            stats.forEachRemaining(stat -> {
                // This could all be optimized to one giant check, but it's split for readability
                if ((tag != null) && !tag.equals(stat.getTag())) {
                    return;
                }
                if ((indexName != null) && (!(stat instanceof IndexStatistic) || !indexName.equals(((IndexStatistic) stat).getIndexName()))) {
                    return;
                }
                if (typeName != null) {
                    if (stat instanceof IndexStatistic) {
                        return;
                    }
                    if ((stat instanceof DataTypeStatistic) && !typeName.equals(((DataTypeStatistic) stat).getTypeName())) {
                        return;
                    }
                    if ((stat instanceof FieldStatistic) && !typeName.equals(((FieldStatistic) stat).getTypeName())) {
                        return;
                    }
                }
                if ((fieldName != null) && (!(stat instanceof FieldStatistic) || !fieldName.equals(((FieldStatistic) stat).getFieldName()))) {
                    return;
                }
                matching.add(stat);
            });
        }
    }
    return matching;
}
Also used : StatisticType(org.locationtech.geowave.core.store.statistics.StatisticType) DataTypeStatisticType(org.locationtech.geowave.core.store.statistics.adapter.DataTypeStatisticType) FieldStatistic(org.locationtech.geowave.core.store.api.FieldStatistic) FieldStatisticType(org.locationtech.geowave.core.store.statistics.field.FieldStatisticType) ParameterException(com.beust.jcommander.ParameterException) DataStore(org.locationtech.geowave.core.store.api.DataStore) Parameter(com.beust.jcommander.Parameter) DataTypeStatistic(org.locationtech.geowave.core.store.api.DataTypeStatistic) IndexStatisticType(org.locationtech.geowave.core.store.statistics.index.IndexStatisticType) IndexStatistic(org.locationtech.geowave.core.store.api.IndexStatistic) Lists(com.clearspring.analytics.util.Lists) DataStatisticsStore(org.locationtech.geowave.core.store.statistics.DataStatisticsStore) List(java.util.List) StatisticValue(org.locationtech.geowave.core.store.api.StatisticValue) StatisticsRegistry(org.locationtech.geowave.core.store.statistics.StatisticsRegistry) CloseableIterator(org.locationtech.geowave.core.store.CloseableIterator) IndexStore(org.locationtech.geowave.core.store.index.IndexStore) DataTypeAdapter(org.locationtech.geowave.core.store.api.DataTypeAdapter) Statistic(org.locationtech.geowave.core.store.api.Statistic) Index(org.locationtech.geowave.core.store.api.Index) FieldDescriptor(org.locationtech.geowave.core.store.adapter.FieldDescriptor) CloseableIterator(org.locationtech.geowave.core.store.CloseableIterator) IndexStatistic(org.locationtech.geowave.core.store.api.IndexStatistic) StatisticValue(org.locationtech.geowave.core.store.api.StatisticValue) DataTypeAdapter(org.locationtech.geowave.core.store.api.DataTypeAdapter) Index(org.locationtech.geowave.core.store.api.Index) IndexStatisticType(org.locationtech.geowave.core.store.statistics.index.IndexStatisticType) FieldDescriptor(org.locationtech.geowave.core.store.adapter.FieldDescriptor) FieldStatistic(org.locationtech.geowave.core.store.api.FieldStatistic) DataTypeStatistic(org.locationtech.geowave.core.store.api.DataTypeStatistic) IndexStatistic(org.locationtech.geowave.core.store.api.IndexStatistic) Statistic(org.locationtech.geowave.core.store.api.Statistic) StatisticType(org.locationtech.geowave.core.store.statistics.StatisticType) DataTypeStatisticType(org.locationtech.geowave.core.store.statistics.adapter.DataTypeStatisticType) FieldStatisticType(org.locationtech.geowave.core.store.statistics.field.FieldStatisticType) IndexStatisticType(org.locationtech.geowave.core.store.statistics.index.IndexStatisticType) DataTypeStatistic(org.locationtech.geowave.core.store.api.DataTypeStatistic) ParameterException(com.beust.jcommander.ParameterException) FieldStatisticType(org.locationtech.geowave.core.store.statistics.field.FieldStatisticType) DataTypeStatisticType(org.locationtech.geowave.core.store.statistics.adapter.DataTypeStatisticType) FieldStatistic(org.locationtech.geowave.core.store.api.FieldStatistic)

Aggregations

Parameter (com.beust.jcommander.Parameter)1 ParameterException (com.beust.jcommander.ParameterException)1 Lists (com.clearspring.analytics.util.Lists)1 List (java.util.List)1 CloseableIterator (org.locationtech.geowave.core.store.CloseableIterator)1 FieldDescriptor (org.locationtech.geowave.core.store.adapter.FieldDescriptor)1 DataStore (org.locationtech.geowave.core.store.api.DataStore)1 DataTypeAdapter (org.locationtech.geowave.core.store.api.DataTypeAdapter)1 DataTypeStatistic (org.locationtech.geowave.core.store.api.DataTypeStatistic)1 FieldStatistic (org.locationtech.geowave.core.store.api.FieldStatistic)1 Index (org.locationtech.geowave.core.store.api.Index)1 IndexStatistic (org.locationtech.geowave.core.store.api.IndexStatistic)1 Statistic (org.locationtech.geowave.core.store.api.Statistic)1 StatisticValue (org.locationtech.geowave.core.store.api.StatisticValue)1 IndexStore (org.locationtech.geowave.core.store.index.IndexStore)1 DataStatisticsStore (org.locationtech.geowave.core.store.statistics.DataStatisticsStore)1 StatisticType (org.locationtech.geowave.core.store.statistics.StatisticType)1 StatisticsRegistry (org.locationtech.geowave.core.store.statistics.StatisticsRegistry)1 DataTypeStatisticType (org.locationtech.geowave.core.store.statistics.adapter.DataTypeStatisticType)1 FieldStatisticType (org.locationtech.geowave.core.store.statistics.field.FieldStatisticType)1