com.d3x.morpheus.viz.jfree.JFPieModel Maven / Gradle / Ivy
The 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.jfree;
import java.util.Collections;
import java.util.List;
import java.util.stream.IntStream;
import org.jfree.data.general.AbstractDataset;
import org.jfree.data.general.PieDataset;
import com.d3x.morpheus.array.ArrayBuilder;
import com.d3x.morpheus.frame.DataFrame;
import com.d3x.morpheus.index.Index;
import com.d3x.morpheus.viz.chart.pie.PieModel;
import com.d3x.morpheus.viz.chart.pie.PieModelDefault;
/**
* The PieModel implementation for JFreeChart based pie charts
*
* @author Xavier Witdouck
*
* This is open source software released under the Apache 2.0 License
*/
class JFPieModel extends AbstractDataset implements PieModel, PieDataset {
private Index itemKeys = Index.empty();
private PieModelDefault model = new PieModelDefault<>();
/**
* Constructor
*/
JFPieModel() {
super();
}
/**
* Updates the item keys for this model
*/
private void updateItemKeys() {
if (isEmpty()) {
this.itemKeys = Index.empty();
} else {
final int size = model.getFrame().rowCount();
final ArrayBuilder builder = ArrayBuilder.of(size);
IntStream.range(0, size).forEach(i -> builder.append(model.getItemFunction().apply(i)));
this.itemKeys = Index.of(builder.toArray());
}
}
@Override
public Iterable keys() {
return model.keys();
}
@Override
public final boolean isEmpty() {
return model.isEmpty();
}
@Override
public void clear(boolean notify) {
this.model.clear(notify);
if (notify) {
fireDatasetChanged();
}
}
@Override
public void apply(DataFrame frame) {
this.model.apply(frame);
this.updateItemKeys();
}
@Override
public void apply(DataFrame frame, S valueKey) {
this.model.apply(frame, valueKey);
this.updateItemKeys();
}
@Override
public void apply(DataFrame,S> frame, S itemKey, S valueKey) {
this.model.apply(frame, itemKey, valueKey);
this.updateItemKeys();
}
@Override
public final int getItemCount() {
return isEmpty() ? 0 : model.getFrame().rowCount();
}
@Override
public final List getKeys() {
return isEmpty() ? Collections.emptyList() : itemKeys.toList();
}
@Override
public final Comparable getKey(int index) {
return isEmpty() ? null : (Comparable)itemKeys.getKey(index);
}
@Override
@SuppressWarnings("unchecked")
public final int getIndex(Comparable itemKey) {
return isEmpty() ? -1 : itemKeys.getOrdinal((X)itemKey);
}
@Override
@SuppressWarnings("unchecked")
public final Number getValue(Comparable itemKey) {
if (isEmpty()) {
return null;
} else {
final int ordinal = itemKeys.getCoordinate((X)itemKey);
return model.getValueFunction().applyAsDouble(ordinal);
}
}
@Override
public final Number getValue(int index) {
if (isEmpty()) {
return null;
} else {
return model.getValueFunction().applyAsDouble(index);
}
}
}