Main Page | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members | File Members

rk_stub.c File Reference


Detailed Description

The implementation of the resource kernel (rk) simulator.

Include dependency graph for rk_stub.c:

Include dependency graph

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)
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.

rk_resource_set_t rk_resource_set_create (const char *name)
 Construct a mock resource set with the given name.

void 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 to the 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.

void 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)
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.


Function Documentation

char* cpu_reserve_attr_string cpu_reserve_attr_t  ra  )  [static]
 

Get the string version of a cpu_reserve_attr_t value.

Parameters:
rp The cpu_reserve_attr_t to stringify or NULL.
Returns:
A statically allocated string formatted with the values in the parameter.

char* cpu_reserve_string cpu_reserve_t  cr  )  [static]
 

Get the string version of a cpu_reserve_t value.

Parameters:
rp The cpu_reserve_t to stringify or NULL.
Returns:
A statically allocated string formatted with the values in the parameter.

int cpu_reserve_valid cpu_reserve_t  cr  )  [static]
 

Validate a user provided cpu_reserve_t value.

Validation is done by checking the pointer against the internal list of resource sets.

Parameters:
ra_in The cpu_reserve_t to validate.
Returns:
True if the parameter is valid, false otherwise.

int rk_clock_getres clockid_t  clock_id,
struct timespec *  ts
 

Get the simulator's virtual clock resolution.

Parameters:
clock_id The clock type, only CLOCK_REALTIME is supported.
ts The timespec object to fill out.
Returns:
Zero if the query was successful, otherwise it returns -1 and sets errno appropriately.

int rk_clock_gettime clockid_t  clock_id,
struct timespec *  ts
 

Get the simulator's virtual time.

Parameters:
clock_id The clock type, only CLOCK_REALTIME is supported.
ts The timespec object to fill out.
Returns:
Zero if the query was successful, otherwise it returns -1 and sets errno appropriately.

int rk_clock_settime clockid_t  clock_id,
struct timespec *  ts
 

Set the simulator's virtual time.

This function should really only be used to set the time to a value _before_ the next event.

Parameters:
clock_id The clock type, only CLOCK_REALTIME is supported.
ts The new virtual time value.
Returns:
Zero if the query was successful, otherwise it returns -1 and sets errno appropriately.

int rk_cpu_reserve_attr_valid cpu_reserve_attr_t  ra_in  )  [static]
 

Validate a user provided cpu_reserve_attr_t value.

A valid reserve must have the following attributes:

  • period >= RT_MIN_PERIOD
  • compute_time <= deadline
  • deadline > 0
  • deadline <= period
  • rk_reserve_param_valid(reserve_type) == 1
Parameters:
ra_in The cpu_reserve_attr_t to validate.
Returns:
True if the parameter is valid, false otherwise.

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.

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:

  • _cpu_period The CPU reserve's period.
  • _cpu_deadline The CPU reserve's deadline.
  • _cpu_complete Marks the completion of a data period.
  • _cpu_drop Marks a data period as being dropped.
  • _cpu_realtime The CPU time required by the process.
  • _cpu_success The actual CPU time received by a process that is making its deadlines.
  • _cpu_fail The actual CPU time received by a process that is missing its deadlines.
Parameters:
rs The resource set that will hold the CPU reserve.
r_out A pointer that can be set to the new CPU reserve.
ra_in The reservation parameters.
Returns:
Zero if the reserve was created successfully, an errno value otherwise.

int rk_cpu_reserve_ctl rk_resource_set_t  rs,
cpu_reserve_attr_t  ra_in
 

Change a CPU reserve's scheduling parameters.

Parameters:
rs The CPU reserve to change.
ra_in The new scheduling parameters.
Returns:
Zero if the change was successful, an errno value otherwise.

void rk_cpu_reserve_delete rk_resource_set_t  rs  ) 
 

Delete a CPU reserve held by a resource set.

Parameters:
rs 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.

Parameters:
cr The CPU reserve to query.
ra_out The cpu_reserve_attr object to fill with the CPU reserve's current parameters.
Returns:
Zero if the query was successful, an errno value otherwise.

int rk_name_valid const char *  name  )  [static]
 

Validate a user provided name value.

Currently, the only test is whether or not the name is printable.

Parameters:
name The name to validate.
Returns:
True if the parameter is valid, false otherwise.

rk_resource_set_t rk_proc_get_rset pid_t  pid  ) 
 

Get the resource set attached to the given process.

Parameters:
pid The fake process ID to query.
Returns:
The resource set that is attached to the process or NULL if none is attached.

char* rk_reserve_mode_string rk_reserve_mode_t  rm  )  [static]
 

Get the string version of an rk_reserve_mode_t value.

Parameters:
rm The rk_reserve_mode_t to stringify.
Returns:
A statically allocated string that corresponds to the parameter.

int rk_reserve_mode_valid rk_reserve_mode_t  rm  )  [static]
 

Validate a user provided rk_reserve_mode_t value.

The only valid values are listed in the enumeration.

Parameters:
rm The rk_reserve_mode_t to validate.
Returns:
True if the parameter is valid, false otherwise.

char* rk_reserve_param_string rk_reserve_param_t  rp  )  [static]
 

Get the string version of an rk_reserve_param_t value.

Parameters:
rp The rk_reserve_param_t to stringify or NULL.
Returns:
A statically allocated string formatted with the values in the parameter.

int rk_reserve_param_valid rk_reserve_param_t  rp  )  [static]
 

Validate a user provided rk_reserve_param_t value.

A valid rk_reserve_param_t must have the following attributes:

  • rk_reserve_mode_valid(sch_mode) == 1
  • rk_reserve_mode_valid(enf_mode) == 1
  • rk_reserve_mode_valid(rep_mode) == 1
Parameters:
rp The rk_reserve_param_t to validate.
Returns:
True if the parameter is valid, false otherwise.

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.

Note: The simulator only supports one process being attached at a time.

Parameters:
rs The resource set that will be attached to the process.
pid The fake process ID to attach to the resource set.
Returns:
Zero if the process was successfully attached, an errno value otherwise.

rk_resource_set_t rk_resource_set_create const char *  name  ) 
 

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: _cpu_<file-type>.

See also:
rk_cpu_reserve_create

rk_cpu_reserve_trace_t

Parameters:
name The name for the resource set.
Returns:
A new rk_resource_set_t object or NULL if the creation failed.

void rk_resource_set_destroy rk_resource_set_t  rs  ) 
 

Destroy a resource set.

Parameters:
rs The resource set to destroy.

int rk_resource_set_detach_process rk_resource_set_t  rs,
pid_t  pid
 

Detach a process to the resource set.

Parameters:
rs The attached resource set.
pid The fake process ID to detach from the resource set.
Returns:
Zero if the process was successfully detached, an errno value otherwise.

rk_reserve_t rk_resource_set_get_cpu_rsv rk_resource_set_t  rs  ) 
 

Get the CPU reserve from the given resource set.

Parameters:
rs The resource set to query.
Returns:
A pointer to the CPU reserve or NULL if the resource set did not have a CPU reserve attached.

int rk_resource_set_get_name rk_resource_set_t  rs,
char *  name_out
 

Get the name of a resource set.

Parameters:
rs The resource set to query.
name_out The character array, of atleast RSET_NAME_LEN length, to fill out with the name of the resource set.
Returns:
Zero if the parameters were valid, an errno value otherwise.

int rk_resource_set_set_name rk_resource_set_t  rs,
const char *  name
 

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.

Parameters:
rs The resource set to rename.
name The new name.
Returns:
Zero if the name was valid, an errno value otherwise.

char* rk_resource_set_string rk_resource_set_t  rs  )  [static]
 

Get the string version of a rk_resource_set_t value.

Parameters:
rp The rk_resource_set_t to stringify or NULL.
Returns:
A statically allocated string formatted with the values in the parameter.

int rk_resource_set_valid rk_resource_set_t  rs  )  [static]
 

Validate a user provided rk_resource_set_t value.

Validation is done by checking the pointer against the internal list of resource sets.

Parameters:
ra_in The rk_resource_set_t to validate.
Returns:
True if the parameter is valid, false otherwise.

void rk_stub_getrusage pid_t  pid,
struct rusage *  ru
 

Get the CPU usage for the simulated process.

Parameters:
pid The process(es) to query for usage information.
ru The rusage object to fill out.
Returns:
Zero if the query was successful, otherwise it returns -1 and sets errno appropriately.

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.

See also:
rk_resource_set_attach_process

rk_resource_set_detach_process

Parameters:
name The name of the process.
data Process specific data, if any.
precall Function to call before a data period begins, can be NUL.
postcall Function to call after a data period ends, can be NULL.
Returns:
The pid_t for the simulated process.

void rk_stub_next_tick void   ) 
 

Advance the simulated time.

Simulated time starts at zero and then continually advances to the next simulated event, such as a period end.

char* rk_stub_pcb_string pid_t  pid  )  [static]
 

Get the string version of a simulated pid_t value.

Parameters:
rp The simulated pid_t to stringify.
Returns:
A statically allocated string formatted with the values in the parameter.

void rk_stub_set_mode rk_stub_mode_t  mode  ) 
 

Initialize the stub code and set the desired mode.

Parameters:
mode One of the values in rk_stub_mode_t.


Variable Documentation

char* rk_cpu_trace_names[RK_CPU_TRACE_MAX] [static]
 

Initial value:

 {
    "period",
    "deadline",
    "complete",
    "drop",
    "realtime",
    "success",
    "fail"
}
The string forms of the trace file enumeration.


Generated on Mon Dec 1 16:22:27 2003 for CPUBroker by doxygen 1.3.4