|
satyr 0.43
|
Single thread of execution of JAVA stack trace. More...
#include "../report_type.h"#include <json.h>#include <stdbool.h>#include <stdint.h>#include <glib.h>Go to the source code of this file.
Data Structures | |
| struct | sr_java_thread |
| A thread of execution of a JAVA-produced stack trace. More... | |
Single thread of execution of JAVA stack trace.
Definition in file java/thread.h.
| struct sr_java_thread * sr_java_thread_append | ( | struct sr_java_thread * | dest, |
| struct sr_java_thread * | item ) |
Appends 'item' at the end of the list 'dest'.
| void sr_java_thread_append_to_str | ( | struct sr_java_thread * | thread, |
| GString * | dest ) |
Appends a textual representation of 'thread' to the 'str'.
| int sr_java_thread_cmp | ( | struct sr_java_thread * | thread1, |
| struct sr_java_thread * | thread2 ) |
Compares two threads. When comparing the threads, it compares also their frames.
| struct sr_java_thread * sr_java_thread_dup | ( | struct sr_java_thread * | thread, |
| bool | siblings ) |
Creates a duplicate of the thread.
| thread | It must be non-NULL pointer. The thread is not modified by calling this function. |
| siblings | Whether to duplicate also siblings referenced by thread->next. If false, thread->next is not duplicated for the new exception, but it is set to NULL. |
| char * sr_java_thread_format_funs | ( | struct sr_java_thread * | thread | ) |
Prepare a string representing thread which contains just the function and library names. This can be used to store only data necessary for comparison.
| void sr_java_thread_free | ( | struct sr_java_thread * | thread | ) |
Releases the memory held by the thread. The thread siblings are not released.
| thread | If thread is NULL, no operation is performed. |
| struct sr_java_thread * sr_java_thread_from_json | ( | json_object * | root, |
| char ** | error_message ) |
Deserializes thread from JSON representation.
| root | JSON value to be deserialized. |
| error_message | On error, *error_message will contain the description of the error. |
| void sr_java_thread_init | ( | struct sr_java_thread * | thread | ) |
Initializes all members of the thread to default values. No memory is released, members are simply overwritten. This is useful for initializing a thread structure placed on the stack.
| struct sr_java_thread * sr_java_thread_new | ( | void | ) |
Creates and initializes a new frame structure.
| struct sr_java_thread * sr_java_thread_parse | ( | const char ** | input, |
| struct sr_location * | location ) |
If the input contains proper thread with frames, parse the thread, move the input pointer after the thread, and return a structure representing the thread. Otherwise to not modify the input pointer and return NULL.
| location | The caller must provide a pointer to struct sr_location here. The line and column members are gradually increased as the parser handles the input, keep this in mind to get reasonable values. When this function returns NULL (an error occurred), the structure will contain the error line, column, and message. |
| float sr_java_thread_quality | ( | struct sr_java_thread * | thread | ) |
Returns the quality of the thread. The quality is the ratio of the number of frames with function name fully known to the number of all frames. This function does not take into account that some frames are more important than others.
| thread | Must be a non-NULL pointer. It's not modified in this function. |
| void sr_java_thread_quality_counts | ( | struct sr_java_thread * | thread, |
| int * | ok_count, | ||
| int * | all_count ) |
Counts the number of 'good' frames and the number of all frames in a thread. Good means that the function name is known (so it's not just '??').
| ok_count | |
| all_count | Not zeroed. This function just adds the numbers to ok_count and all_count. |
| bool sr_java_thread_remove_frame | ( | struct sr_java_thread * | thread, |
| struct sr_java_frame * | frame ) |
Removes the frame from the thread and then deletes it.
| bool sr_java_thread_remove_frames_above | ( | struct sr_java_thread * | thread, |
| struct sr_java_frame * | frame ) |
Removes all the frames from the thread that are above certain frame.
| void sr_java_thread_remove_frames_below_n | ( | struct sr_java_thread * | thread, |
| int | n ) |
Keeps only the top n frames in the thread.