ASN1C C# Runtime Library
7.6
|
Public Member Functions | |
virtual void | AddElemName (System.String name, int arrayx) |
abstract void | Enable () |
bool | IsEnabled () |
virtual void | NewBitField (System.String name, int bitCount) |
abstract void | Print (System.IO.StreamWriter outs, System.String varName) |
virtual void | RemoveLastElemName () |
void | ReplaceLastFieldWithDetail (Asn1PerTraceHandler details) |
abstract void | Reset () |
virtual void | SetBitCount () |
virtual void | SetBitOffset () |
Properties | |
virtual Asn1PerBitFieldList | BitFieldList [get] |
This is the abstract base class for the PER encode and decode trace handler derived classes.
|
virtual |
This method adds an element name to the current fully qualified name. The fully qualified name is a string of name components separated by dots (ex. a.b.c).
name | Name component to append to string |
arrayx | Array index if named item is an element in an array (set to -1 otherwise) |
References Asn1PerBitFieldList.AddElemName().
|
pure virtual |
This method is used to turn PER bit tracing on or off. POST: mBitFieldList != null.
Implemented in Asn1PerEncodeTraceHandler, Asn1PerOutputStreamTraceHandler, and Asn1PerDecodeTraceHandler.
bool IsEnabled | ( | ) |
Check whether bit tracing is on or off.
|
virtual |
This method creates a new bit field and appends it to the bit field list.
name | Name suffix to append to the current fully qualified name. |
bitCount | Number of bits in the bit field. |
References Asn1PerMessageBuffer.MsgBitCnt, Asn1PerBitFieldList.NewBitField(), and Diag.Prtln().
Referenced by Asn1UniversalString.Decode(), Asn1RelativeOID.Encode(), Asn1ObjectIdentifier.Encode(), Asn1BigInteger.Encode(), Asn1Integer.Encode(), Asn1UniversalString.Encode(), and Asn1Real.Encode().
|
pure virtual |
This method prints the trace to the given output stream in a default format.
outs | Print stream to which output is to be written. |
varName | Name of the object variable being printed. |
Implemented in Asn1PerDecodeTraceHandler, Asn1PerOutputStreamTraceHandler, and Asn1PerEncodeTraceHandler.
|
virtual |
This method removes the last element name int the current fully qualified name string. For example, if the current string is 'a.b.c', it will be 'a.b' after calling this method.
References Asn1PerBitFieldList.RemoveLastElemName().
void ReplaceLastFieldWithDetail | ( | Asn1PerTraceHandler | details | ) |
Replaces the last bit field in this bit trace handler with the fields from the given trace handler, which are assumed to be a breakdown of the last field.
details | handler to take details from |
References Asn1PerBitFieldList.ReplaceLastFieldWithDetail().
|
pure virtual |
This method resets the trace bit field list.
Implemented in Asn1PerDecodeTraceHandler, Asn1PerOutputStreamTraceHandler, and Asn1PerEncodeTraceHandler.
|
virtual |
This method sets the bit count within the current bit field to the difference between the current bit offset and the starting bit offset currently stored in the field object.
References Asn1PerBitField.BitCount, Asn1PerBitField.BitOffset, Asn1PerBitFieldList.CurrBitField, and Asn1PerMessageBuffer.MsgBitCnt.
Referenced by Asn1RelativeOID.Encode(), and Asn1ObjectIdentifier.Encode().
|
virtual |
This method sets the bit offset within the current bit field to the current offset within the PER message buffer.
References Asn1PerBitFieldList.BitOffset, and Asn1PerMessageBuffer.MsgBitCnt.
|
get |
Gets a reference to the bit field list
Value:
bit field list
Referenced by Asn1PerBitFieldPrinter.Print().