Documentation
¶
Index ¶
Constants ¶
View Source
const (
DefaultBufferSize = 65536
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StateSimulator ¶
type StateSimulator struct {
// contains filtered or unexported fields
}
RawFuncLogから実行時の状態を推測し、FuncLogとGoroutineオブジェクトを構築する。 具体的には、関数やgoroutineの開始・終了のタイミングの推測を行う。 仕様上、監視対象外のコードで生成されたgoroutineの終了タイミングは正確でない。 一度終了したと判定したgoroutineが、後になってまた動いていると判定されることがある。
func (*StateSimulator) FuncLogs ¶
func (s *StateSimulator) FuncLogs(needCopy bool) []*types.FuncLog
この期間に動作していた全ての関数についてのログを返す 返されるログの順序は、不定である。 needCopy==trueのときは、返されるFuncLogオブジェクトは全てコピーされ、仕様後は FuncLogPool に戻すことが可能である。
func (*StateSimulator) Goroutines ¶
func (s *StateSimulator) Goroutines() []*types.Goroutine
この期間に動作していた全てのgoroutineについてのログを返す
func (*StateSimulator) Init ¶
func (s *StateSimulator) Init()
func (*StateSimulator) Next ¶
func (s *StateSimulator) Next(raw types.RawFuncLog)
新しいRawFuncLogを受け取り、シミュレータの状態を更新する。 fl.Frames スライスの再利用をしてはいけない。
type StateSimulatorStore ¶
type StateSimulatorStore struct {
// contains filtered or unexported fields
}
func (*StateSimulatorStore) Delete ¶
func (s *StateSimulatorStore) Delete(id types.LogID)
StateSimulatorをこのストアから削除する。
func (*StateSimulatorStore) Get ¶
func (s *StateSimulatorStore) Get(id types.LogID) *StateSimulator
StateSimulatorへの参照を返す。 指定したIDに対応するStateSimulatorが存在しない場合、nilを返す。
func (*StateSimulatorStore) New ¶
func (s *StateSimulatorStore) New(id types.LogID) *StateSimulator
指定したIDに対応するStateSimulatorを新規作成してから返す。
Click to show internal directories.
Click to hide internal directories.