📄 recdefstate.java
字号:
/* * (C) 2001 by Argonne National Laboratory * See COPYRIGHT in top-level directory. *//* * @author Anthony Chan */package logformat.clog2;import java.util.List;import java.util.ArrayList;import java.util.Iterator;import java.io.*;// Class corresponds to CLOG_Rec_StateDefpublic class RecDefState{ public final static int RECTYPE = Const.RecType.STATEDEF; private final static int BYTESIZE = 4 * 4 + StrColor.BYTESIZE + StrDesc.BYTESIZE + StrFormat.BYTESIZE; public int stateID; // integer identifier for the state public Integer startetype; // beginning event for the state public Integer finaletype; // ending event for the state private static int pad; public String color; // string describing color public String name; // naming the state public String format; // format string for the state //read the record from the given input stream public int readFromDataStream( MixedDataInputStream in ) { try { stateID = in.readInt(); startetype = new Integer( in.readInt() ); finaletype = new Integer( in.readInt() ); pad = in.readInt(); color = in.readString( StrColor.BYTESIZE ); name = in.readString( StrDesc.BYTESIZE ); format = in.readString( StrFormat.BYTESIZE ); } catch ( IOException ioerr ) { ioerr.printStackTrace(); return 0; } return BYTESIZE; } public int skipBytesFromDataStream( DataInputStream in ) { try { in.skipBytes( BYTESIZE ); } catch ( IOException ioerr ) { ioerr.printStackTrace(); return 0; } return BYTESIZE; } // Mimic <MPE>/src/wrappers/src/log_mpe_core.c's definition of MPI_Init() // in initialization of states[] and the way MPI_xxx routines's // CLOG_Rec_statedef is defined in MPI_Finalize(); public static List getUndefinedInitedStateDefs( int eventID_1st, int stateID_count ) { RecDefState def; // evtIDs are used in a way similar to how the start_evt & final_evt // of the MPE_State[] are set by MPE_Log_get_known_eventID() as // in <MPE>/src/wrappers/src/log_mpi_core.c int evtID = eventID_1st; List defs = new ArrayList( stateID_count ); for ( int idx = 0; idx < stateID_count; idx++ ) { def = new RecDefState(); def.startetype = new Integer( evtID++ ); def.finaletype = new Integer( evtID++ ); def.color = "pink"; def.name = null; def.format = null; defs.add( def ); } return defs; } public String toString() { return ( "RecDefState" + "[ stateID=" + stateID + ", startetype=" + startetype + ", finaletype=" + finaletype // + ", pad=" + pad + ", color=" + color + ", name=" + name + ", format=" + format // + ", BYTESIZE=" + BYTESIZE + " ]" ); } public static final void main( String[] args ) { List defs = RecDefState.getUndefinedInitedStateDefs( 0, 10 ); Iterator itr = defs.iterator(); while ( itr.hasNext() ) System.out.println( (RecDefState) itr.next() ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -