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

com.d3x.morpheus.viz.chart.pie.PieModelDefault Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
/*
 * Copyright (C) 2014-2018 D3X Systems - All Rights Reserved
 *
 * Licensed 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 com.d3x.morpheus.viz.chart.pie;

import java.util.Collections;
import java.util.function.IntFunction;
import java.util.function.IntToDoubleFunction;
import java.util.stream.IntStream;

import com.d3x.morpheus.frame.DataFrame;
import com.d3x.morpheus.frame.DataFrameColumn;

/**
 * A convenience base class for building PieModel implementations
 *
 * @author Xavier Witdouck
 *
 * 

This is open source software released under the Apache 2.0 License

*/ public class PieModelDefault implements PieModel { private DataFrame frame; private IntFunction itemFunction; private IntToDoubleFunction valueFunction; /** * Constructor */ public PieModelDefault() { super(); } /** * Returns the frame reference for model, which can be null * @return the frame reference */ public final DataFrame getFrame() { return frame; } /** * Returns the item function for model * @return the item function */ public final IntFunction getItemFunction() { return itemFunction; } /** * Returns the value function for model * @return the value function */ public final IntToDoubleFunction getValueFunction() { return valueFunction; } /** * Updates this dataset with the frame, data ordinal and label function * @param frame the frame reference * @param itemFunction the item function * @param valueFunction the value function */ private void update(DataFrame frame, IntFunction itemFunction, IntToDoubleFunction valueFunction) { if (frame == null) { clear(false); } else { this.frame = frame; this.itemFunction = itemFunction; this.valueFunction = valueFunction; } } @Override public Iterable keys() { return () -> { if (isEmpty()) { return Collections.emptyList().iterator(); } else { return IntStream.range(0, frame.rowCount()).mapToObj(itemFunction).iterator(); } }; } @Override public final boolean isEmpty() { return frame == null || itemFunction == null; } @Override public void clear(boolean notify) { this.frame = null; this.itemFunction = null; this.valueFunction = null; } @Override public void apply(DataFrame frame) { if (frame == null || frame.cols().stream().filter(DataFrameColumn::isNumeric).count() == 0) { clear(true); } else { frame.cols().first(DataFrameColumn::isNumeric).ifPresent(column -> { final int valueColOrdinal = column.ordinal(); final IntFunction itemFunction = ordinal -> frame.rows().key(ordinal); final IntToDoubleFunction valueFunction = ordinal -> frame.getDoubleAt(ordinal, valueColOrdinal); this.update(frame, itemFunction, valueFunction); }); } } @Override public void apply(DataFrame frame, S valueKey) { if (frame == null) { clear(true); } else { final int valueColOrdinal = frame.cols().ordinalOf(valueKey); final IntFunction itemFunction = ordinal -> frame.rows().key(ordinal); final IntToDoubleFunction valueFunction = ordinal -> frame.getDoubleAt(ordinal, valueColOrdinal); this.update(frame, itemFunction, valueFunction); } } @Override public void apply(DataFrame frame, S itemKey, S valueKey) { if (frame == null) { clear(true); } else { final int valueColOrdinal = frame.cols().ordinalOf(valueKey); final int itemColOrdinal = frame.cols().ordinalOf(itemKey); final IntFunction itemFunction = ordinal -> frame.getValueAt(ordinal, itemColOrdinal); final IntToDoubleFunction valueFunction = ordinal -> frame.getDoubleAt(ordinal, valueColOrdinal); this.update(frame, itemFunction, valueFunction); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy