📄 recheader.java
字号:
/* * (C) 2001 by Argonne National Laboratory * See COPYRIGHT in top-level directory. *//* * @author Anthony Chan */package logformat.clog2;import java.io.*;// Class corresponds to CLOG_Rec_Headerpublic class RecHeader{ private static final int BYTESIZE = 8 + 4 * 4; public double time; private int icomm; // unique communicator ID private int rank; // rank of communicator labeled by icomm private int thread; public int rectype; public int gthdLineID; // Global threadID, lineID for drawable public RecHeader() { time = Const.INVALID_double; icomm = Const.INVALID_int; rank = Const.INVALID_int; thread = Const.INVALID_int; rectype = Const.INVALID_int; gthdLineID = Const.INVALID_int; } public RecHeader( DataInputStream istm ) { this.readFromDataStream( istm ); } public int readFromDataStream( DataInputStream istm ) { try { time = istm.readDouble(); icomm = istm.readInt(); rank = istm.readInt(); thread = istm.readInt(); rectype = istm.readInt(); } catch ( IOException ioerr ) { ioerr.printStackTrace(); return 0; } gthdLineID = LineID.computeGlobalThreadID( icomm, rank, thread ); return BYTESIZE; } public int getProcessLineID() { return LineID.computeGlobalProcessID( icomm, rank ); } public int skipBytesFromDataStream( DataInputStream in ) { try { in.skipBytes( BYTESIZE ); } catch ( IOException ioerr ) { ioerr.printStackTrace(); return 0; } return BYTESIZE; }/* //Copy Constructor public RecHeader copy() { RecHeader cp = new RecHeader(); cp.time = this.time; cp.icomm = this.icomm; cp.rank = this.rank; cp.thread = this.thread; cp.rectype = this.rectype; gthdLineID = LineID.computeGlobalThreadID( icomm, rank, thread ); return cp; }*/ public int getRecType() { return this.rectype; } public String toString() { return ( "RecHeader" + "[ time=" + time + ", icomm=" + icomm + ", rank=" + rank + ", thread=" + thread + ", rectype=" + rectype // + ", BYTESIZE=" + BYTESIZE + " ]" ); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -