blob: 4db2b199ea80f7e69376ec1be2aee29b976ffd46 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2009, 2019 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.rj.data.impl;
import java.io.IOException;
import org.eclipse.statet.jcommons.lang.NonNullByDefault;
import org.eclipse.statet.jcommons.lang.Nullable;
import org.eclipse.statet.rj.data.RCharacterStore;
import org.eclipse.statet.rj.data.RDataFrame;
import org.eclipse.statet.rj.data.RJIO;
import org.eclipse.statet.rj.data.RObject;
import org.eclipse.statet.rj.data.RObjectFactory;
import org.eclipse.statet.rj.data.RStore;
@NonNullByDefault
public class RDataFrame32Impl extends RList32Impl
implements RDataFrame, ExternalizableRObject {
private RStore<?> rownamesAttribute;
private long rowCount;
public RDataFrame32Impl(final RObject[] columns, final String className1, final String[] initialNames, final String[] initialRownames) {
this(columns, className1, initialNames, initialRownames, true);
}
protected RDataFrame32Impl(final RObject[] columns, final String className1, final String[] initialNames, final String[] initialRownames, final boolean check) {
super(columns, className1, initialNames);
if (columns.length == 0) {
this.rowCount= 0;
}
else {
this.rowCount= columns[0].getLength();
if (check) {
for (int i= 0; i < columns.length; i++) {
if (columns[i].getRObjectType() != RObject.TYPE_VECTOR
|| (columns[i].getLength() != this.rowCount)) {
throw new IllegalArgumentException("Length of column " + i + ": " + columns[i].getLength());
}
}
}
}
if (initialRownames != null && initialRownames.length == this.rowCount) {
this.rownamesAttribute= new RUniqueCharacter32Store(initialRownames);
if (this.rownamesAttribute.getLength() != this.rowCount) {
throw new IllegalArgumentException("Length of row names: " + this.rownamesAttribute.getLength());
}
}
}
public RDataFrame32Impl(final RJIO io, final RObjectFactory factory, final int options) throws IOException {
super(io, factory, options);
this.rowCount= io.readLong();
if ((options & RObjectFactory.O_WITH_NAMES) != 0) {
this.rownamesAttribute= factory.readNames(io, this.rowCount);
}
}
@Override
public void writeExternal(final RJIO io, final RObjectFactory factory) throws IOException {
int options= 0;
if ((io.flags & RObjectFactory.F_ONLY_STRUCT) == 0 && this.rownamesAttribute != null) {
options |= RObjectFactory.O_WITH_NAMES;
}
super.doWriteExternal(io, factory, options);
io.writeLong(this.rowCount);
if ((options & RObjectFactory.O_WITH_NAMES) != 0) {
factory.writeNames(this.rownamesAttribute, io);
}
}
@Override
public byte getRObjectType() {
return TYPE_DATAFRAME;
}
@Override
protected String getDefaultRClassName() {
return RObject.CLASSNAME_DATAFRAME;
}
@Override
public long getColumnCount() {
return getLength();
}
@Override
public RCharacterStore getColumnNames() {
return getNames();
}
public String getColumnName(final int idx) {
return getName(idx);
}
@Override
public RStore<?> getColumn(final int idx) {
return get(idx).getData();
}
@Override
public RStore<?> getColumn(final long idx) {
return get(idx).getData();
}
@Override
public @Nullable RStore<?> getColumn(final String name) {
final RObject obj= get(name);
return (obj != null) ? obj.getData() : null;
}
// public void setColumn(final int idx, final RStore<?> column) {
// if (this.length == 0) {
// throw new IndexOutOfBoundsException(Long.toString(idx));
// }
// else {
// if (column.getLength() != this.rowCount) {
// throw new IllegalArgumentException();
// }
// }
// this.columns[idx]= new RVectorImpl(column, RDataUtils.getStoreVectorClass(column));
// }
@Override
public boolean set(final int idx, final RObject component) {
if (component == null) {
throw new NullPointerException();
}
if (getLength() == 0) {
throw new IndexOutOfBoundsException(Long.toString(idx));
}
else {
if (component.getRObjectType() != RObject.TYPE_VECTOR) {
throw new IllegalArgumentException();
}
if (component.getLength() != this.rowCount) {
throw new IllegalArgumentException();
}
}
return super.set(idx, component);
}
// public void insertColumn(final int idx, final String name, final RStore<?> column) {
// if (column == null) {
// throw new NullPointerException();
// }
// if (column.getDataType() <= 0) {
// throw new IllegalArgumentException();
// }
// if (this.length == 0) {
// this.rowCount= column.getLength();
// }
// else if (this.rowCount != column.getLength()) {
// throw new IllegalArgumentException();
// }
// prepareInsert(idx);
// this.columns[idx]= new RVectorImpl(column, RDataUtils.getStoreVectorClass(column));
// this.namesAttribute.insertChar(idx, name);
// }
//
@Override
public long getRowCount() {
return this.rowCount;
}
@Override
public RStore<?> getRowNames() {
return this.rownamesAttribute;
}
public void insertRow(final int idx) {
final long length= getLength();
for (int i= 0; i < length; i++) {
((RDataResizeExtension<?>) get(i)).insertNA(idx);
}
this.rowCount++;
// if (this.rownamesAttribute != null) {
// ((RDataResizeExtension) this.rownamesAttribute).insertAuto(idx);
// }
}
public void removeRow(final int idx) {
final long length= getLength();
for (int i= 0; i < length; i++) {
((RDataResizeExtension<?>) this.get(i)).remove(idx);
}
this.rowCount--;
// if (this.rownamesAttribute != null) {
// this.rownamesAttribute.remove(idx);
// }
}
}