![JAR search and dependency download from the Maven repository](/logo.png)
com.metsci.glimpse.layers.time.TimeTrait Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2020, Metron, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Metron, Inc. nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL METRON, INC. BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.metsci.glimpse.layers.time;
import static com.metsci.glimpse.core.plot.timeline.StackedTimePlot2D.CURRENT_TIME;
import static com.metsci.glimpse.core.plot.timeline.StackedTimePlot2D.MAX_TIME;
import static com.metsci.glimpse.core.plot.timeline.StackedTimePlot2D.MIN_TIME;
import static java.util.Arrays.asList;
import java.util.function.DoubleUnaryOperator;
import com.google.common.base.Objects;
import com.metsci.glimpse.core.axis.tagged.OrderedConstraint;
import com.metsci.glimpse.core.axis.tagged.Tag;
import com.metsci.glimpse.core.axis.tagged.TaggedAxis1D;
import com.metsci.glimpse.core.plot.timeline.data.Epoch;
import com.metsci.glimpse.layers.LayeredGui;
import com.metsci.glimpse.layers.Trait;
import com.metsci.glimpse.layers.View;
public class TimeTrait extends Trait
{
public static final String timeTraitKey = TimeTrait.class.getName( );
public static void addTimeLinkage( LayeredGui gui, String name, TimeTrait master )
{
gui.addLinkage( timeTraitKey, name, master );
}
public static void setTimeTrait( View view, TimeTrait timeTrait )
{
view.setTrait( timeTraitKey, timeTrait );
}
public static TimeTrait requireTimeTrait( View view )
{
return view.requireTrait( timeTraitKey, TimeTrait.class );
}
public final Epoch epoch;
public final TaggedAxis1D axis;
protected final Tag selectionMinTag;
protected final Tag selectionMaxTag;
protected final Tag selectionCursorTag;
public TimeTrait( boolean isLinkage, Epoch epoch )
{
super( isLinkage );
this.epoch = epoch;
// TODO: Duplicated from StackedTimePlot2D.addTimeTags()
this.axis = new TaggedAxis1D( );
this.selectionMinTag = this.axis.addTag( MIN_TIME, 0 );
this.selectionMaxTag = this.axis.addTag( MAX_TIME, 10 );
this.selectionCursorTag = this.axis.addTag( CURRENT_TIME, 10 );
this.axis.addConstraint( new OrderedConstraint( "order", asList( MIN_TIME, CURRENT_TIME, MAX_TIME ) ) );
this.parent.addListener( true, ( ) ->
{
TimeTrait newParent = ( TimeTrait ) this.parent.v( );
this.axis.setParent( newParent == null ? null : newParent.axis );
} );
}
@Override
protected boolean isValidParent( Trait linkage )
{
if ( linkage instanceof TimeTrait )
{
TimeTrait timeLinkage = ( TimeTrait ) linkage;
return Objects.equal( timeLinkage.epoch, this.epoch );
}
else
{
return false;
}
}
@Override
public TimeTrait copy( boolean isLinkage )
{
TimeTrait copy = new TimeTrait( isLinkage, this.epoch );
// Copy axis settings
copy.axis.setParent( this.axis );
copy.axis.setParent( null );
return copy;
}
public void setRelativeBounds( DoubleUnaryOperator unitsToSeconds, double min_UNITS_SINCE_EPOCH, double max_UNITS_SINCE_EPOCH )
{
this.axis.setMin( unitsToSeconds.applyAsDouble( min_UNITS_SINCE_EPOCH ) );
this.axis.setMax( unitsToSeconds.applyAsDouble( max_UNITS_SINCE_EPOCH ) );
this.axis.validate( );
}
public void setRelativeSelection( DoubleUnaryOperator unitsToSeconds, double min_UNITS_SINCE_EPOCH, double max_UNITS_SINCE_EPOCH )
{
double min_SEC_SINCE_EPOCH = unitsToSeconds.applyAsDouble( min_UNITS_SINCE_EPOCH );
double max_SEC_SINCE_EPOCH = unitsToSeconds.applyAsDouble( max_UNITS_SINCE_EPOCH );
double cursor_SEC_SINCE_EPOCH = max_SEC_SINCE_EPOCH;
this.selectionMinTag.setValue( min_SEC_SINCE_EPOCH );
this.selectionMaxTag.setValue( max_SEC_SINCE_EPOCH );
this.selectionCursorTag.setValue( cursor_SEC_SINCE_EPOCH );
this.axis.validateTags( );
}
public double selectionMin_PSEC( )
{
return this.epoch.toTimeStamp( this.selectionMinTag.getValue( ) ).toPosixSeconds( );
}
public double selectionMax_PSEC( )
{
return this.epoch.toTimeStamp( this.selectionMaxTag.getValue( ) ).toPosixSeconds( );
}
public double selectionCursor_PSEC( )
{
return this.epoch.toTimeStamp( this.selectionCursorTag.getValue( ) ).toPosixSeconds( );
}
public long selectionMin_PMILLIS( )
{
return this.epoch.toPosixMillis( this.selectionMinTag.getValue( ) );
}
public long selectionMax_PMILLIS( )
{
return this.epoch.toPosixMillis( this.selectionMaxTag.getValue( ) );
}
public long selectionCursor_PMILLIS( )
{
return this.epoch.toPosixMillis( this.selectionCursorTag.getValue( ) );
}
public double selectionMin_SU( )
{
return this.selectionMinTag.getValue( );
}
public double selectionMax_SU( )
{
return this.selectionMaxTag.getValue( );
}
public double selectionCursor_SU( )
{
return this.selectionCursorTag.getValue( );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy