Definition in file rk_stub.c.
Include dependency graph for rk_stub.c:
Go to the source code of this file.
Defines | |
#define | max(x, y) ((x) > (y) ? (x) : (y)) |
Return the maximum of two values. | |
#define | min(x, y) ((x) < (y) ? (x) : (y)) |
Return the minimum of two values. | |
Functions | |
void | rk_cpu_reserve_tick (rk_resource_set_t rs, cpu_reserve_t cr, struct timespec *curr, struct timespec *next, struct timespec *new_compute) |
Function used to advance simulated time. | |
int | rk_name_valid (const char *name) |
Validate a user provided name value. | |
int | rk_reserve_mode_valid (rk_reserve_mode_t rm) |
Validate a user provided rk_reserve_mode_t value. | |
int | rk_reserve_param_valid (rk_reserve_param_t rp) |
Validate a user provided rk_reserve_param_t value. | |
int | rk_cpu_reserve_attr_valid (cpu_reserve_attr_t ra_in) |
Validate a user provided cpu_reserve_attr_t value. | |
int | cpu_reserve_valid (cpu_reserve_t cr) |
Validate a user provided cpu_reserve_t value. | |
int | rk_resource_set_valid (rk_resource_set_t rs) |
Validate a user provided rk_resource_set_t value. | |
char * | rk_reserve_mode_string (rk_reserve_mode_t rm) |
Get the string version of an rk_reserve_mode_t value. | |
char * | rk_reserve_param_string (rk_reserve_param_t rp) |
Get the string version of an rk_reserve_param_t value. | |
char * | cpu_reserve_attr_string (cpu_reserve_attr_t ra) |
Get the string version of a cpu_reserve_attr_t value. | |
char * | cpu_reserve_string (cpu_reserve_t cr) |
Get the string version of a cpu_reserve_t value. | |
char * | rk_resource_set_string (rk_resource_set_t rs) |
Get the string version of a rk_resource_set_t value. | |
char * | rk_stub_pcb_string (pid_t pid) |
Get the string version of a simulated pid_t value. | |
void | rk_inherit_mode (int dummy) |
Not implemented. | |
int | rk_resource_sets_get_list (rk_resource_set_t *rs_inout, int count) |
Query the system for the list of mock resource sets. | |
int | rk_resource_sets_get_num (void) |
rk_resource_set_t | rk_resource_set_create (const char *name) |
Construct a mock resource set with the given name. | |
int | rk_resource_set_destroy (rk_resource_set_t rs) |
Destroy a resource set. | |
int | rk_resource_set_set_name (rk_resource_set_t rs, const char *name) |
Set the name of a resource set. | |
int | rk_resource_set_get_name (rk_resource_set_t rs, char *name_out) |
Get the name of a resource set. | |
rk_reserve_t | rk_resource_set_get_cpu_rsv (rk_resource_set_t rs) |
Get the CPU reserve from the given resource set. | |
int | rk_resource_set_attach_process (rk_resource_set_t rs, pid_t pid) |
Attach a process to the resource set so that its callbacks will be used when a data period is starting/ending. | |
int | rk_resource_set_detach_process (rk_resource_set_t rs, pid_t pid) |
Detach a process from the resource set. | |
int | rk_resource_set_get_num_procs (rk_resource_set_t rs) |
int | rk_resource_set_get_proclist (rk_resource_set_t rs, pid_t *procs_inout, int count) |
Query the system for the list of processes attached to the given resource set. | |
rk_resource_set_t | rk_proc_get_rset (pid_t pid) |
Get the resource set attached to the given process. | |
int | rk_cpu_reserve_create (rk_resource_set_t rs, rk_reserve_t *r_out, cpu_reserve_attr_t ra_in) |
Create a CPU reserve for the given resource set. | |
int | rk_cpu_reserve_delete (rk_resource_set_t rs) |
Delete a CPU reserve held by a resource set. | |
int | rk_cpu_reserve_get_attr (rk_reserve_t cr, cpu_reserve_attr_t ra_out) |
Get the reservation parameters for a given CPU reserve. | |
int | rk_cpu_reserve_ctl (rk_resource_set_t rs, cpu_reserve_attr_t ra_in) |
Change a CPU reserve's scheduling parameters. | |
int | rk_clock_gettime (clockid_t clock_id, struct timespec *ts) |
Get the simulator's virtual time. | |
int | rk_clock_settime (clockid_t clock_id, struct timespec *ts) |
Set the simulator's virtual time. | |
int | rk_clock_getres (clockid_t clock_id, struct timespec *ts) |
Get the simulator's virtual clock resolution. | |
void | rk_stub_set_mode (rk_stub_mode_t mode) |
Initialize the stub code and set the desired mode. | |
void | rk_next_tick (struct timespec *next, struct timespec *curr, struct timespec *new_next) |
Verify time values and update the next time value if an earlier time is seen. | |
void | rk_stub_next_tick (void) |
Advance the simulated time. | |
pid_t | rk_stub_mk_pid (const char *name, void *data, rk_stub_precall_t precall, rk_stub_postcall_t postcall) |
Make a simulated process that will "consume" resources during its period. | |
void | rk_stub_getrusage (pid_t pid, struct rusage *ru) |
Get the CPU usage for the simulated process. | |
Variables | |
rk_stub_data | rk_stub_data |
Global data for the rk_stub functions. | |
char * | rk_cpu_trace_names [RK_CPU_TRACE_MAX] |
The string forms of the trace file enumeration. |
|
Get the string version of a cpu_reserve_attr_t value.
Definition at line 304 of file rk_stub.c. References cpu_reserve_attr::blocking_time, cpu_reserve_attr::compute_time, cpu_reserve_attr_t, cpu_reserve_attr::deadline, cpu_reserve_attr::period, cpu_reserve_attr::processor, cpu_reserve_attr::reserve_type, rk_reserve_param_string(), and cpu_reserve_attr::start_time. Referenced by cpu_reserve_string(), rk_cpu_reserve_create(), rk_cpu_reserve_ctl(), and rk_cpu_reserve_get_attr(). |
Here is the call graph for this function:
|
Get the string version of a cpu_reserve_t value.
Definition at line 346 of file rk_stub.c. References cpu_reserve_attr_string(), and cpu_reserve_t. Referenced by rk_cpu_reserve_create(), rk_cpu_reserve_get_attr(), and rk_resource_set_string(). |
Here is the call graph for this function:
|
Validate a user provided cpu_reserve_t value. Validation is done by checking the pointer against the internal list of resource sets.
Definition at line 193 of file rk_stub.c. References cpu_reserve_t, require, rk_resource_set_t, and rk_stub_data. Referenced by rk_cpu_reserve_create(), rk_cpu_reserve_delete(), rk_cpu_reserve_get_attr(), and rk_resource_set_get_cpu_rsv(). |
|
Get the simulator's virtual clock resolution.
Definition at line 1296 of file rk_stub.c. References NANOS_PER_MICRO. |
|
Get the simulator's virtual time.
Definition at line 1256 of file rk_stub.c. References rk_stub_data. Referenced by BasicDelegate::postcall(), and BasicDelegate::precall(). |
|
Set the simulator's virtual time. This function should really only be used to set the time to a value _before_ the next event.
Definition at line 1276 of file rk_stub.c. References rk_stub_data. |
|
Validate a user provided cpu_reserve_attr_t value. A valid reserve must have the following attributes:
Definition at line 166 of file rk_stub.c. References cpu_reserve_attr::compute_time, cpu_reserve_attr_t, cpu_reserve_attr::deadline, cpu_reserve_attr::period, require, cpu_reserve_attr::reserve_type, rk_reserve_param_valid(), RT_MIN_PERIOD, and tscmp. Referenced by rk_cpu_reserve_create(), rk_cpu_reserve_ctl(), and rk_cpu_reserve_get_attr(). |
Here is the call graph for this function:
|
Create a CPU reserve for the given resource set. In order to simulate this reserve, a "times" file must be available in the current directory. The contents of the file should be a whitespace separated list of floats that specify the percentage of CPU time required by the process for a repeating sequence of periods. For example, the times file for a resource set named "steady_50" that required 50% of the CPU at every period would be named "steady_50_cpu_times" and contain only "50.0". Another, more complex example, would be a reserve that oscillated between 10% and 50% with 10% steps would contain "10.0 20.0 30.0 40.0 50.0 40.0 30.0 20.0 10.0". The output of CPU simulation is a set of files that can be fed into gnuplot. The contents of the file are two columns of numbers, a time value, and a CPU percentage or an arbitrary value that marks some event. The current list of files is:
Definition at line 924 of file rk_stub.c. References cpu_reserve_attr_string(), cpu_reserve_attr_t, cpu_reserve_string(), cpu_reserve_t, cpu_reserve_valid(), cpu_reserve_attr::deadline, ensure, microsec_to_timespec(), require, rk_cpu_reserve_attr_valid(), rk_cpu_reserve_delete(), rk_cpu_trace_names, rk_reserve_t, rk_resource_set_string(), rk_resource_set_t, rk_resource_set_valid(), rk_stub_data, RK_STUB_LOG, RK_STUB_SIM, RSET_NAME_LEN, and timespec_to_microsec(). Referenced by RKTask::BeginCPUScheduling(), rktCreateSelfResourceSet(), rktGetChildResourceSet(), and server_main(). |
Here is the call graph for this function:
|
Change a CPU reserve's scheduling parameters.
Definition at line 1198 of file rk_stub.c. References cpu_reserve_attr::compute_time, cpu_reserve_attr_string(), cpu_reserve_attr_t, cpu_reserve_t, require, rk_cpu_reserve_attr_valid(), rk_cpu_reserve_tick(), rk_resource_set_string(), rk_resource_set_t, rk_resource_set_valid(), rk_stub_data, and tscmp. Referenced by RKTask::SetComputeTime(). |
Here is the call graph for this function:
|
Delete a CPU reserve held by a resource set.
Definition at line 1114 of file rk_stub.c. References cpu_reserve_t, cpu_reserve_valid(), ensure, require, rk_resource_set_string(), rk_resource_set_t, rk_resource_set_valid(), and rk_stub_data. Referenced by RKTask::BeginCPUScheduling(), rk_cpu_reserve_create(), rk_resource_set_destroy(), and rktGetChildResourceSet(). |
Here is the call graph for this function:
|
Get the reservation parameters for a given CPU reserve.
Definition at line 1168 of file rk_stub.c. References cpu_reserve_attr_string(), cpu_reserve_attr_t, cpu_reserve_string(), cpu_reserve_t, cpu_reserve_valid(), ensure, require, rk_cpu_reserve_attr_valid(), rk_reserve_t, and rk_stub_data. Referenced by sigalrm(). |
Here is the call graph for this function:
|
Function used to advance simulated time.
Definition at line 1371 of file rk_stub.c. References cpu_reserve_t, ensure, max, microsec_to_timespec(), NANOS_PER_MICRO, require, RK_CPU_TRACE_COMPLETE, RK_CPU_TRACE_COMPUTE_FAIL, RK_CPU_TRACE_COMPUTE_SUCCESS, RK_CPU_TRACE_DEADLINE, RK_CPU_TRACE_DROP, RK_CPU_TRACE_PERIOD, RK_CPU_TRACE_REALTIME, rk_next_tick(), rk_resource_set_t, rk_stub_data, rk_stub_precall_t, RKSP_DROP, and timespec_to_microsec(). Referenced by rk_cpu_reserve_ctl(), and rk_stub_next_tick(). |
Here is the call graph for this function:
|
Validate a user provided name value. Currently, the only test is whether or not the name is printable.
Definition at line 91 of file rk_stub.c. References require. Referenced by rk_resource_set_create(), and rk_resource_set_set_name(). |
|
Verify time values and update the next time value if an earlier time is seen.
Definition at line 1348 of file rk_stub.c. References require, and tscmp. Referenced by rk_cpu_reserve_tick(). |
|
Get the resource set attached to the given process.
Definition at line 891 of file rk_stub.c. References ensure, MAX_PCB, NULL_RESOURCE_SET, require, rk_resource_set_string(), rk_resource_set_t, rk_resource_set_valid(), rk_stub_data, and rk_stub_pcb_string(). Referenced by RKTask::BeginCPUScheduling(), paGetAdvocate(), rk_resource_set_attach_process(), and rk_resource_set_detach_process(). |
Here is the call graph for this function:
|
Get the string version of an rk_reserve_mode_t value.
Definition at line 248 of file rk_stub.c. References RSV_FIRM, RSV_HARD, and RSV_SOFT. Referenced by rk_reserve_param_string(). |
|
Validate a user provided rk_reserve_mode_t value. The only valid values are listed in the enumeration.
Definition at line 111 of file rk_stub.c. References RSV_FIRM, RSV_HARD, and RSV_SOFT. Referenced by rk_reserve_param_valid(). |
|
Get the string version of an rk_reserve_param_t value.
Definition at line 277 of file rk_stub.c. References rk_reserve_param::enf_mode, rk_reserve_param::rep_mode, rk_reserve_mode_string(), rk_reserve_param_t, and rk_reserve_param::sch_mode. Referenced by cpu_reserve_attr_string(). |
Here is the call graph for this function:
|
Validate a user provided rk_reserve_param_t value. A valid rk_reserve_param_t must have the following attributes:
Definition at line 140 of file rk_stub.c. References rk_reserve_param::enf_mode, rk_reserve_param::rep_mode, rk_reserve_mode_valid(), rk_reserve_param_t, and rk_reserve_param::sch_mode. Referenced by rk_cpu_reserve_attr_valid(). |
Here is the call graph for this function:
|
Attach a process to the resource set so that its callbacks will be used when a data period is starting/ending. Note: The simulator only supports one process being attached at a time.
Definition at line 739 of file rk_stub.c. References ensure, MAX_PCB, require, rk_proc_get_rset(), rk_resource_set_string(), rk_resource_set_t, rk_resource_set_valid(), rk_stub_data, rk_stub_pcb_string(), and RK_STUB_SIM. Referenced by RKTask::BeginCPUScheduling(), rktChildPart(), rktParentPart(), and server_main(). |
Here is the call graph for this function:
|
Construct a mock resource set with the given name. The name has special meaning in the simulator, it will be used as the base for any files that are produced or read by the stub code. For example, a file produced or read by the CPU reserve will use file names of the form: <name>_cpu_<file-type>.
Definition at line 548 of file rk_stub.c. References ensure, lnAddTail(), NULL_RESOURCE_SET, require, rk_name_valid(), rk_resource_set_t, rk_resource_set_valid(), rk_stub_data, and RSET_NAME_LEN. Referenced by RKTask::BeginCPUScheduling(), rktCreateSelfResourceSet(), rktGetChildResourceSet(), and server_main(). |
Here is the call graph for this function:
|
Destroy a resource set.
Definition at line 595 of file rk_stub.c. References ensure, lnRemove(), require, rk_cpu_reserve_delete(), rk_resource_set_string(), rk_resource_set_t, rk_resource_set_valid(), and rk_stub_data. Referenced by RKTask::BeginCPUScheduling(), RKTask::EndCPUScheduling(), rktCreateSelfResourceSet(), rktRepairResourceSets(), server_main(), sig_exit_handler(), and sigexit_handler(). |
Here is the call graph for this function:
|
Detach a process from the resource set.
Definition at line 783 of file rk_stub.c. References ensure, MAX_PCB, require, rk_proc_get_rset(), rk_resource_set_string(), rk_resource_set_t, rk_resource_set_valid(), rk_stub_data, and rk_stub_pcb_string(). |
Here is the call graph for this function:
|
Get the CPU reserve from the given resource set.
Definition at line 706 of file rk_stub.c. References cpu_reserve_valid(), ensure, NULL_RESERVE, require, rk_reserve_t, rk_resource_set_string(), rk_resource_set_t, rk_resource_set_valid(), and rk_stub_data. Referenced by RKTask::BeginCPUScheduling(), rktGetChildResourceSet(), rktRepairResourceSets(), and sigalrm(). |
Here is the call graph for this function:
|
Get the name of a resource set.
Definition at line 673 of file rk_stub.c. References ensure, require, rk_resource_set_string(), rk_resource_set_t, rk_resource_set_valid(), rk_stub_data, and RSET_NAME_LEN. Referenced by rk_resource_set_get_by_name(). |
Here is the call graph for this function:
|
Definition at line 822 of file rk_stub.c. References NULL_RESOURCE_SET, require, rk_resource_set_string(), rk_resource_set_t, and rk_stub_data. Referenced by RKTask::BeginCPUScheduling(), rktGetChildResourceSet(), and rktRepairResourceSets(). |
Here is the call graph for this function:
|
Query the system for the list of processes attached to the given resource set. Note: The simulator only supports one process being attached at a time.
Definition at line 852 of file rk_stub.c. References NULL_RESOURCE_SET, require, rk_resource_set_string(), rk_resource_set_t, and rk_stub_data. Referenced by rk_resource_set_get_usage(), and sigalrm(). |
Here is the call graph for this function:
|
Set the name of a resource set. This is provided for compatibility and is otherwise unwise to use since the name has meaning in the simulation code.
Definition at line 629 of file rk_stub.c. References ensure, require, rk_name_valid(), rk_resource_set_string(), rk_resource_set_t, rk_resource_set_valid(), rk_stub_data, and RSET_NAME_LEN. |
Here is the call graph for this function:
|
Get the string version of a rk_resource_set_t value.
Definition at line 399 of file rk_stub.c. References cpu_reserve_string(), rk_resource_set_t, and rk_resource_set_valid(). Referenced by rk_cpu_reserve_create(), rk_cpu_reserve_ctl(), rk_cpu_reserve_delete(), rk_proc_get_rset(), rk_resource_set_attach_process(), rk_resource_set_destroy(), rk_resource_set_detach_process(), rk_resource_set_get_cpu_rsv(), rk_resource_set_get_name(), rk_resource_set_get_num_procs(), rk_resource_set_get_proclist(), and rk_resource_set_set_name(). |
Here is the call graph for this function:
|
Validate a user provided rk_resource_set_t value. Validation is done by checking the pointer against the internal list of resource sets.
Definition at line 219 of file rk_stub.c. References require, rk_resource_set_t, and rk_stub_data. Referenced by rk_cpu_reserve_create(), rk_cpu_reserve_ctl(), rk_cpu_reserve_delete(), rk_proc_get_rset(), rk_resource_set_attach_process(), rk_resource_set_create(), rk_resource_set_destroy(), rk_resource_set_detach_process(), rk_resource_set_get_cpu_rsv(), rk_resource_set_get_name(), rk_resource_set_set_name(), and rk_resource_set_string(). |
|
Query the system for the list of mock resource sets.
Definition at line 486 of file rk_stub.c. References require, rk_resource_set_t, and rk_stub_data. Referenced by rk_resource_set_get_by_name(), and rktRepairResourceSets(). |
|
Definition at line 525 of file rk_stub.c. References require, and rk_stub_data. |
|
Get the CPU usage for the simulated process.
Definition at line 1942 of file rk_stub.c. References MAX_PCB, require, and rk_stub_data. Referenced by BasicDelegate::postcall(), and BasicDelegate::precall(). |
|
Make a simulated process that will "consume" resources during its period.
Definition at line 1909 of file rk_stub.c. References MAX_PCB, require, rk_stub_data, rk_stub_postcall_t, and rk_stub_precall_t. Referenced by BasicDelegate::BasicDelegate(). |
|
Advance the simulated time. Simulated time starts at zero and then continually advances to the next simulated event, such as a period end. Definition at line 1878 of file rk_stub.c. References ensure, require, rk_cpu_reserve_tick(), rk_resource_set_t, rk_stub_data, and timespec_to_microsec(). |
Here is the call graph for this function:
|
Get the string version of a simulated pid_t value.
Definition at line 428 of file rk_stub.c. References MAX_PCB, and rk_stub_data. Referenced by rk_proc_get_rset(), rk_resource_set_attach_process(), and rk_resource_set_detach_process(). |
|
Initialize the stub code and set the desired mode.
Definition at line 1321 of file rk_stub.c. References lnNewList(), require, rk_stub_data, and rk_stub_mode_t. |
Here is the call graph for this function:
|
Initial value: { "period", "deadline", "complete", "drop", "realtime", "success", "fail" }
Definition at line 72 of file rk_stub.c. Referenced by rk_cpu_reserve_create(). |