In this page, we will show the various services available through the Python API.
analysis_get_binaries_information() -> project_binaries_information
Get information regarding project.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
analysis_get_binaries_names() -> list(string)
Get the binaries in core.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
analysis_get_bug_report() -> bug_report
Get all potential bugs found in the analyzed binaries.
Those bugs are found by different inspectors.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
analysis_get_framebuffer_information() -> framebuffer_information
Retrieve the framebuffer information.
With this information, you can retrieve a view of the framebuffer if it's valid.
This service can be called during the execution.
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
analysis_get_logs() -> list(log)
Get the logs raised during an analysis.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
binary_add_symbols(binary, symbols) -> None
Add symbols to a binary.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
binary | The binary where to add the symbols. -> string |
symbols | The symbols to add. -> list(mini_symbol) |
device_get_all() -> list(device)
Retrieve the list of devices. This service can be called during the execution.
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
device_get_history(device_name, subdevice_name) -> list(device_access)
Retrieve the history of a device or one of its subdevices.
See device_get_all for a list of devices and subdevices
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
device_name | Device name to search, empty to match all devices. -> string |
subdevice_name | Subdevice name to search, empty to match all subdevices -> string |
disconnect() -> None
Immediately close the connection.
Use this method to avoid locking a license token by keeping connections longer than necessary.
engine_get_current_preset() -> list(inspector_specifications)
List current configuration of inspectors.
Returns a list of inspector specifications.
The list contains all available inspectors, plugged or not.
This service can be called during the execution.
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
engine_get_preset_of_saved_trace(state_name) -> list(inspector_specifications)
List configuration of inspectors in a saved execution trace state.
Returns a list of inspector specifications.
The list contains all available inspectors, plugged or not
This service can be called during the execution.
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
state_name | Name of the saved trace to query preset from. -> string |
engine_get_progress() -> analysis_progress
Returns the state of the current analysis.
The returned object will allow to know if the execution is still in progress or not.
This service can be called during the execution.
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
engine_pause_execution() -> None
Pauses the current execution.
This does nothing if the execution is already stopped or paused.
While a Reven instance is paused, you can launch any service like when the analysis is finished.
Warning: Pausing an execution is not instantaneous because all data is flushed to the hard drive.
This service can be called during the execution.
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
engine_plug_inspector(inspector) -> None
Enables an inspector for the next analysis.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
inspector | Instance of inspector to enable for the next analysis (either execution or exploration). -> object |
engine_resume_execution() -> None
Resumes the current execution.
This will invalidate any saved state of the current execution, because of the shared data of the execution.
You can save again if you pause or once the execution stops.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
engine_start_execution() -> None
Starts an execution with the configured inspectors.
Note: This service returns immediately, with the Reven analysis taking place. You can know the current status of the analysis with engine_get_progress
Warning: Most services are unavailable during an execution. Please refer to the documentation of eachservice to determine if it can be called during an execution.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
engine_start_exploration() -> None
Starts an exploration with the configured inspectors.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
engine_start_local_exploration(when, address, depth) -> boolean
Launches a static exploration at the given logical address.
This means we create a static symbolic context at the given address, and try to see all reachable code from this location.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
when | When to take the memory as reference -> execution_point |
address | The logical address where the exploration should start. It should correspond to the address of a sequence that belongs to a run. Otherwise, this service will do nothing. -> logical_address |
depth | The maximum number of jumps to walk, starting from address -> integer |
graph_get_binary() -> string
Get the graph of binaries.
The result is a dot graph that can be displayed with a graphviz capable library.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
graph_get_symbol(sequence_symbol) -> string
Get a graph of the specified symbol.
The result is a dot graph that can be displayed with a graphviz capable library.
This graph contains all the executed sequences reachable from the symbol entry point. Only translated sequences are shown. This includes executed sequences, and sequences discovered by calling the engine_start_local_exploration service.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
sequence_symbol | A mini_sequence of the current symbol. -> mini_sequence |
hardware_analysing_dump_file(device_name, subdevice_name) -> integer
Request the generation of a pcap file by dissecting device accesses.
The resulting file will be located server side, in the /output directory of the current project. Only devices with a dissection profile can be used with this service.
The returned value is the number of packets in the generated pcap file.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
device_name | name of the device. Must be 'e1000 ' or 'usb-ohci '. -> string |
subdevice_name | _ -> string |
memory_get_buffer(point, address, length) -> string
Read an arbitrary buffer from memory at the specified point in time.
Warning: This service will not execute page fault exceptions.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Point in time when to read the buffer -> execution_point |
address | Logical address of the first byte of the buffer -> logical_address |
length | Size of the buffer to read, in bytes -> integer |
memory_get_byte(point, address) -> integer
Read a byte from memory at the specified point in time.
Warning: This service will not execute page fault exceptions.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Point in time when to read the byte -> execution_point |
address | Logical address of the byte -> logical_address |
memory_get_dword(point, address) -> integer
Read a dword (4 bytes) from memory at the specified point in time.
Warning: This service will not execute page fault exceptions.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Point in time when to read the dword -> execution_point |
address | Logical address of the dword -> logical_address |
memory_get_history_between(start, end) -> list(memory_access)
Request the RAM history for a range of physical addresses
This service requires that inspector memory_range_history was plugged before an execution.
It will return all the memory accesses for the requested memories (in physical form).
Since we require physical address, logical addresses cannot be used here. See the memory_get_physical_address service if needed.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
start | First memory to search -> physical_address |
end | Last memory to search (excluded) -> physical_address |
memory_get_history_instruction(point) -> list(memory_access)
Request the memory accesses for a specified execution point
This service requires that inspector memory_range_history was plugged before an execution.
It will return all the memory accesses that occurred of a specific instruction.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Execution point when to search the memory accesses -> execution_point |
memory_get_physical_address(point, address) -> physical_address
Get the physical address of a logical one at a specific timestamp.
Warning: This service will not execute page fault exceptions. If the specified address is not mapped, it will return an unmapped physical address.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Execution point when to translate -> execution_point |
address | Address to translate -> logical_address |
memory_get_physical_buffer(point, address, length) -> string
Read an arbitrary buffer from physical memory at the specified point in time.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Point in time when to read the buffer -> execution_point |
address | Physical address of the first byte of the buffer -> physical_address |
length | Size of the buffer to read, in bytes -> integer |
memory_get_physical_buffer_from_last_execution_point(address, length) -> string
Read an arbitrary buffer from physical memory at the last executed execution point in the main run.
This service can be called during the execution.
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
address | Physical address of the first byte of the buffer -> physical_address |
length | Size of the buffer to read, in bytes -> integer |
memory_get_qword(point, address) -> integer
Read a qword (8 bytes) from memory at the specified point in time.
Warning: This service will not execute page fault exceptions.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Point in time when to read the qword -> execution_point |
address | Logical address of the qword -> logical_address |
memory_get_string(point, address) -> string
Read a null terminated string from memory at the specified point in time.
Note: If some part of the string cannot be read (pagefault, etc), the string will be stopped.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Point in time when to read the string -> execution_point |
address | Logical address of the first byte of the string -> logical_address |
memory_get_word(point, address) -> integer
Read a word (2 bytes) from memory at the specified point in time.
Warning: This service will not execute page fault exceptions.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Point in time when to read the word -> execution_point |
address | Logical address of the first byte of the word -> logical_address |
memory_get_wstring_as_string(point, address) -> string
Read a null terminated wstring from memory at the specified point in time. Assuming wchar are 2 bytes long.
Returned value is converted to a string (is not a wstring).
Note: If some part of the string cannot be read (pagefault, etc), the string will be stopped.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Point in time when to read the string -> execution_point |
address | Logical address of the first byte of the string -> logical_address |
memory_search_buffer(point, first_address, last_address, pattern) -> list(logical_address)
Search in an arbitrary buffer from a memory segment at the specified point in time.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | Point in time where to search data -> execution_point |
first_address | First address to search (included) -> logical_address |
last_address | Last address to search (included) -> logical_address |
pattern | Raw string of the pattern to search. See binascii.unhexify if you need binary data. -> string |
process_get_all() -> list(process)
Retrieve the processes at the beginning of the scenario.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
process_get_switch_list() -> list(process_switch)
Retrieve the list of all process switches.
Currently, process switches are only checked when fs or gs is modified.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
process_map_memory_segment(cr3, memory_segment) -> None
Map in a process a memory segment.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
cr3 | The cr3 of the process where the memory segment will be mapped. -> integer |
memory_segment | The memory segment to map. -> memory_segment |
run_get_all() -> list(string)
Get the name of executed runs.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
run_get_call_stack(point) -> list(sequence_in_run)
Get the call stack of a specific sequence for a run.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | When to get the call stack -> execution_point |
run_get_delta_context(point) -> symbolic_context
Get delta context of an instruction.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
point | execution point where to get the delta context -> execution_point |
run_get_execution_point_by_tsc(tsc) -> execution_point
Return the first execution point with tsc greater than or equal to the given tsc.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
tsc | Timestamp counter to search -> integer |
run_get_instructions(run_name, sequences) -> list(sequence_instructions)
Get a range of instructions for one run, for several sequence identifiers.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
run_name | Run to get instructions for -> string |
sequences | Sequences to retrieve instructions for -> list(integer) |
run_get_instructions_range(range) -> list(sequence_instructions)
Get a range of instructions for one run, starting at a specific sequence timestamp.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
range | Range of instructions to get (in sequences). -> execution_range |
run_get_running_context(execution_point, memory_ranges) -> running_context
Compute the running context at a point in time.Since the memory is potentially huge, the memory is not fully returned. You can request as many memory_ranges as required, though.
Warning: Each range must be page-aligned.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
execution_point | Starting and stopping point of the context. -> execution_point |
memory_ranges | Memory ranges to fetch. Each range must be page aligned. -> list(logical_address_range) |
run_get_running_context_between(execution_range, memory_ranges) -> running_context_range
Compute the running context between two points in time.
Since the memory is potentially huge, the memory is not fully returned. You can request as many memory_ranges as required, though.
Warning: Each range must be page-aligned.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
execution_range | Starting and stopping point of the context. -> execution_range |
memory_ranges | Memory ranges to fetch. Each range must be page aligned. -> list(logical_address_range) |
run_get_sequence_children(run_name, indexes, max_full_sequences, start_filter, around_sequences) -> dict(integer -> list(sequence_in_run))
Get the children sequences of a some sequences in a run.
Sequences are assumed to be children of each other, such as the result of run_get_call_stack service.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
run_name | Name of the run we want sequences for -> string |
indexes | A list of indexes to retrieve -> list(integer) |
max_full_sequences | Maximum number of children before filtering -> integer |
start_filter | Number of sequences to show at the start and end of the sequence -> integer |
around_sequences | Number of sequences to show around the stack element -> integer |
run_get_sequence_count(run_name) -> integer
Get the number of sequences inside a run.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
run_name | Name of the run -> string |
run_get_sequence_range(range) -> list(sequence_in_run)
Retrieve the sequences of a run for a specific a range.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
range | Range of sequences to retrieve -> execution_range |
run_search_next_memory_use(execution_point, forward, read, write, address, size) -> execution_point
Find the next use of the specified logical memory, before or after the specified point.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
execution_point | Where to start the search -> execution_point |
forward | True to search forward in time, false to search backward -> boolean |
read | True to search read memories -> boolean |
write | True to search written memories -> boolean |
address | Address to search -> logical_address |
size | Size in bytes of the buffer to search -> integer |
run_search_next_memory_use_physical(execution_point, forward, read, write, address, size) -> execution_point
Find the next use of the specified physical memory, before or after the specified point.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
execution_point | Where to start the search -> execution_point |
forward | True to search forward in time, false to search backward -> boolean |
read | True to search read memories -> boolean |
write | True to search written memories -> boolean |
address | Address to search -> physical_address |
size | Size in bytes of the buffer to search -> integer |
run_search_next_register_use(execution_point, forward, read, write, register_name, stop=execution_point()) -> execution_point
Find the next use of the specified register, before or after the specified point.
This service returns either when a result is found or stop if no result is found.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
execution_point | Where to start the search -> execution_point |
forward | True to search forward in time, false to search backward -> boolean |
read | True to search read registers -> boolean |
write | True to search written registers -> boolean |
register_name | Register name to search -> string |
stop | Stop searching when this point is reached -> execution_point |
run_search_operand(execution_point, operand_index) -> symbolic
Find the next use of the specified symbolic value, at the specified point
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
execution_point | The point where to search the operand -> execution_point |
operand_index | Number of operand to search (0, 1 or 2 on x86) -> integer |
run_search_sequences(range, search) -> search_result
Search sequences matching the specified set of criteria.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
range | Range of sequences where to restrict the search. This range can be (0, 0xffffffff) to search the entire run -> execution_range |
search | Search request object with the specified criteria -> search_request |
run_search_symbols(run_name, filter_on_name, filter_is_regexp, called_only, only_renamed, fetch_from_index, fetch_max) -> symbol_in_run_container
Search for symbols in a specified run, according to the specified criteria.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
run_name | Run name to search -> string |
filter_on_name | Name of the symbols to search -> string |
filter_is_regexp | If true, filter_on_name is a regular expression -> boolean |
called_only | If true, return only symbols that were called during the execution -> boolean |
only_renamed | If true, return only symbols that have been renamed -> boolean |
fetch_from_index | Return some symbols starting from the specified index (progressive loading) -> integer |
fetch_max | Maximum number of symbols to return (progressive loading) -> integer |
run_search_tainted_instructions(start, initial_taint, forward, count, runtime, taint_deref) -> taint
Find the next instructions altering a taint from the specified point (excluded)
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
start | Start point of the taint -> execution_point |
initial_taint | Tainted values at the start point -> list(symbolic) |
forward | The propagation direction -> boolean |
count | The maximum number of taint propagations to perform. 0 means unlimited -> integer |
runtime | Maximum time (in milliseconds) the taint engine will run for. 0 means unlimited -> integer |
taint_deref | True if dereferencings need to be tainted -> boolean |
sequence_get_all_static_annotations() -> list(mini_sequence)
Find all the static sequences containing an annotation.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
sequence_list_all() -> list(mini_sequence)
List all the static sequences.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
sequence_set_dynamic_annotations(run_name, sequence) -> None
Modify the annotations for a dynamic sequence (sequence_in_run).
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
run_name | Run to update -> string |
sequence | The sequence in run to update (annotations are inside this object) -> sequence_in_run |
sequence_set_static_annotations(sequence) -> None
Modify the annotations for a static sequence.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
sequence | The sequence to update (annotations are inside this object) -> list(mini_sequence) |
sequence_test_and_set_static_annotations(new_sequence, old_sequence) -> boolean
Modify atomically the annotations for a static sequence. The modification takes place only if the client knows the current value of the annotations.This prevents accidental losses of data.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
new_sequence | The sequence to update (annotations are inside this object) -> list(mini_sequence) |
old_sequence | What the client thinks are the current annotations. -> list(mini_sequence) |
server_get_info() -> list(string)
Retrieve information on current server instance.
This service can be called during the execution.
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
server_set_service_timeout(timeout) -> integer
Defines the timeout for all services.
Note: If you only want to get the timeout without setting it, you can use set_service_timeout(0)
This service can be called during the execution.
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
timeout | timeout. Not changed if 0. If the timeout is negative, there is no timeout. -> integer |
string_get_history(id) -> dereferenced_string_access
Request a list of accesses for a string
The identifier is found in the dereferenced_string object, under the unique_id
field.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
id | String identifier -> integer |
string_search_by_content(run_name, query, query_is_regexp, fetch_start, fetch_max) -> dereferenced_string_container
Request the dereferenced strings for a whole run
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
run_name | Run name to search -> string |
query | Text to be searched inside the strings -> string |
query_is_regexp | If true, the query field is a regular expression -> boolean |
fetch_start | First string to search (progressive loading) -> integer |
fetch_max | Maximum number of strings to return -> integer |
string_search_by_sequences(range, fetch_start, fetch_max) -> dereferenced_string_container
Request the dereferenced strings
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
range | Range of sequences to search -> execution_range |
fetch_start | First string to search (progressive loading) -> integer |
fetch_max | Maximum number of strings to return -> integer |
symbol_add(symbol_list) -> None
Add some symbols to sequences
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
symbol_list | A list of symbols to add. -> list(symbol) |
trace_delete(name) -> None
Delete a previously saved trace.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
name | Name of the trace file to delete -> string |
trace_get_all() -> list(state_info)
Retrieve the list of saved traces.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
trace_load(name) -> boolean
Load the trace of a Reven instance.
Warning: This discards any unsaved data of the current Reven instance. You can save the trace before loading another one if you don't want to lose your changes.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
name | Name of the trace file to load. -> string |
trace_save(name) -> boolean
Save the trace of the Reven instance.
ServiceNotAllowedDuringExecutionError | If this service is called during the execution. |
RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. |
name | Name of the trace file -> string |