source: rtems/c/src/lib/libmisc/monitor/monitor.h @ 1587af6

4.104.114.84.95
Last change on this file since 1587af6 was bbb2816, checked in by Joel Sherrill <joel.sherrill@…>, on 11/29/97 at 18:21:00

Removed warnings.

  • Property mode set to 100644
File size: 15.1 KB
Line 
1/*
2 *  File:       monitor.h
3 *
4 *  Description:
5 *    The RTEMS monitor task include file.
6 *
7 *  TODO:
8 *
9 *  $Id$
10 */
11
12#ifndef __MONITOR_H
13#define __MONITOR_H
14
15#include <rtems/symbols.h>
16#include <rtems/error.h>                /* rtems_error() */
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22/*
23 * Monitor types are derived from rtems object classes
24 */
25
26typedef enum {
27    RTEMS_MONITOR_OBJECT_INVALID   =  OBJECTS_NO_CLASS,
28    RTEMS_MONITOR_OBJECT_TASK      =  OBJECTS_RTEMS_TASKS,
29    RTEMS_MONITOR_OBJECT_EXTENSION =  OBJECTS_RTEMS_EXTENSIONS,
30    RTEMS_MONITOR_OBJECT_QUEUE     =  OBJECTS_RTEMS_MESSAGE_QUEUES,
31    RTEMS_MONITOR_OBJECT_SEMAPHORE =  OBJECTS_RTEMS_SEMAPHORES,
32    RTEMS_MONITOR_OBJECT_PARTITION =  OBJECTS_RTEMS_PARTITIONS,
33    RTEMS_MONITOR_OBJECT_REGION    =  OBJECTS_RTEMS_REGIONS,
34    RTEMS_MONITOR_OBJECT_PORT      =  OBJECTS_RTEMS_PORTS,
35
36    /* following monitor objects are not known to RTEMS, but
37     * we like to have "types" for them anyway */
38   
39    RTEMS_MONITOR_OBJECT_DRIVER    =  OBJECTS_CLASSES_LAST+1,
40    RTEMS_MONITOR_OBJECT_DNAME,
41    RTEMS_MONITOR_OBJECT_CONFIG,
42    RTEMS_MONITOR_OBJECT_INIT_TASK,
43    RTEMS_MONITOR_OBJECT_MPCI,
44    RTEMS_MONITOR_OBJECT_SYMBOL
45} rtems_monitor_object_type_t;
46
47/*
48 * rtems_monitor_init() flags
49 */
50
51#define RTEMS_MONITOR_SUSPEND   0x0001          /* suspend monitor on startup */
52#define RTEMS_MONITOR_GLOBAL    0x0002          /* monitor should be global */
53
54
55/*
56 * Public interfaces for RTEMS data structures monitor is aware of.
57 * These are only used by the monitor.
58 *
59 * NOTE:
60 *  All the canonical objects that correspond to RTEMS managed "objects"
61 *  must have an identical first portion with 'id' and 'name' fields.
62 *
63 *  Others do not have that restriction, even tho we would like them to.
64 *  This is because some of the canonical structures are almost too big
65 *  for shared memory driver (eg: mpci) and we are nickel and diming it.
66 */
67
68/*
69 * Type of a pointer that may be a symbol
70 */
71   
72#define MONITOR_SYMBOL_LEN 20
73typedef struct {
74    char       name[MONITOR_SYMBOL_LEN];
75    unsigned32 value;
76    unsigned32 offset;
77} rtems_monitor_symbol_t;   
78
79typedef struct {
80    rtems_id            id;
81    rtems_name          name;
82  /* end of common portion */
83} rtems_monitor_generic_t;       
84
85/*
86 * Task
87 */
88typedef struct {
89    rtems_id            id;
90    rtems_name          name;
91  /* end of common portion */
92    Thread_Entry        entry;
93    unsigned32          argument;
94    void               *stack;
95    unsigned32          stack_size;
96    rtems_task_priority priority;
97    States_Control      state;
98    rtems_event_set     events;
99    rtems_mode          modes;
100    rtems_attribute     attributes;
101    unsigned32          notepad[RTEMS_NUMBER_NOTEPADS];
102    rtems_id            wait_id;
103    unsigned32          wait_args;
104} rtems_monitor_task_t;
105
106/*
107 * Init task
108 */
109
110typedef struct {
111    rtems_id            id;             /* not really an id */
112    rtems_name          name;
113  /* end of common portion */
114    rtems_monitor_symbol_t entry;
115    unsigned32             argument;
116    unsigned32             stack_size;
117    rtems_task_priority    priority;
118    rtems_mode             modes;
119    rtems_attribute        attributes;
120} rtems_monitor_init_task_t;
121
122
123/*
124 * Message queue
125 */
126typedef struct {
127    rtems_id            id;
128    rtems_name          name;
129  /* end of common portion */
130    rtems_attribute     attributes;
131    unsigned32          number_of_pending_messages;
132    unsigned32          maximum_pending_messages;
133    unsigned32          maximum_message_size;
134} rtems_monitor_queue_t;
135
136/*
137 * Extension
138 */
139typedef struct {
140    rtems_id                 id;
141    rtems_name               name;
142  /* end of common portion */
143    rtems_monitor_symbol_t  e_create;
144    rtems_monitor_symbol_t  e_start;
145    rtems_monitor_symbol_t  e_restart;
146    rtems_monitor_symbol_t  e_delete;
147    rtems_monitor_symbol_t  e_tswitch;
148    rtems_monitor_symbol_t  e_begin;
149    rtems_monitor_symbol_t  e_exitted;
150    rtems_monitor_symbol_t  e_fatal;
151} rtems_monitor_extension_t;
152
153/*
154 * Device driver
155 */
156
157typedef struct {
158    rtems_id            id;                /* not really an id (should be tho) */
159    rtems_name          name;              /* ditto */
160  /* end of common portion */
161    rtems_monitor_symbol_t initialization; /* initialization procedure */
162    rtems_monitor_symbol_t open;           /* open request procedure */
163    rtems_monitor_symbol_t close;          /* close request procedure */
164    rtems_monitor_symbol_t read;           /* read request procedure */
165    rtems_monitor_symbol_t write;          /* write request procedure */
166    rtems_monitor_symbol_t control;        /* special functions procedure */
167} rtems_monitor_driver_t;
168
169typedef struct {
170    rtems_id            id;                 /* not used for drivers (yet) */
171    rtems_name          name;               /* not used for drivers (yet) */
172  /* end of common portion */
173    unsigned32          major;
174    unsigned32          minor;
175    char                name_string[64];
176} rtems_monitor_dname_t;
177
178/*
179 * System config
180 */
181
182typedef struct {
183    void               *work_space_start;
184    unsigned32          work_space_size;
185    unsigned32          maximum_tasks;
186    unsigned32          maximum_timers;
187    unsigned32          maximum_semaphores;
188    unsigned32          maximum_message_queues;
189    unsigned32          maximum_partitions;
190    unsigned32          maximum_regions;
191    unsigned32          maximum_ports;
192    unsigned32          maximum_periods;
193    unsigned32          maximum_extensions;
194    unsigned32          microseconds_per_tick;
195    unsigned32          ticks_per_timeslice;
196    unsigned32          number_of_initialization_tasks;
197} rtems_monitor_config_t;
198
199/*
200 * MPCI config
201 */
202
203typedef struct {
204    unsigned32  node;                   /* local node number */
205    unsigned32  maximum_nodes;          /* maximum # nodes in system */
206    unsigned32  maximum_global_objects; /* maximum # global objects */
207    unsigned32  maximum_proxies;        /* maximum # proxies */
208
209    unsigned32               default_timeout;        /* in ticks */
210    unsigned32               maximum_packet_size;
211    rtems_monitor_symbol_t   initialization;
212    rtems_monitor_symbol_t   get_packet;
213    rtems_monitor_symbol_t   return_packet;
214    rtems_monitor_symbol_t   send_packet;
215    rtems_monitor_symbol_t   receive_packet;
216} rtems_monitor_mpci_t;
217
218/*
219 * The generic canonical information union
220 */
221
222typedef union {
223    rtems_monitor_generic_t    generic;
224    rtems_monitor_task_t       task;
225    rtems_monitor_queue_t      queue;
226    rtems_monitor_extension_t  extension;
227    rtems_monitor_driver_t     driver;
228    rtems_monitor_dname_t      dname;
229    rtems_monitor_config_t     config;
230    rtems_monitor_mpci_t       mpci;
231    rtems_monitor_init_task_t  itask;
232} rtems_monitor_union_t;
233
234/*
235 * Support for talking to other monitors
236 */
237
238/*
239 * Names of other monitors
240 */
241
242#define RTEMS_MONITOR_NAME        (rtems_build_name('R', 'M', 'O', 'N'))
243#define RTEMS_MONITOR_SERVER_NAME (rtems_build_name('R', 'M', 'S', 'V'))
244#define RTEMS_MONITOR_QUEUE_NAME  (rtems_build_name('R', 'M', 'S', 'Q'))
245#define RTEMS_MONITOR_RESPONSE_QUEUE_NAME (rtems_build_name('R', 'M', 'R', 'Q'))
246
247#define RTEMS_MONITOR_SERVER_RESPONSE    0x0001
248#define RTEMS_MONITOR_SERVER_CANONICAL   0x0002
249
250typedef struct
251{
252    unsigned32  command;
253    rtems_id    return_id;
254    unsigned32  argument0;
255    unsigned32  argument1;
256    unsigned32  argument2;
257    unsigned32  argument3;
258    unsigned32  argument4;
259    unsigned32  argument5;
260} rtems_monitor_server_request_t;
261
262typedef struct
263{
264    unsigned32  command;
265    unsigned32  result0;
266    unsigned32  result1;
267    rtems_monitor_union_t payload;
268} rtems_monitor_server_response_t;
269
270extern rtems_id  rtems_monitor_task_id;
271
272extern unsigned32 rtems_monitor_node;          /* our node number */
273extern unsigned32 rtems_monitor_default_node;  /* current default for commands */
274
275/*
276 * Monitor command function and table entry
277 */
278
279typedef struct rtems_monitor_command_entry_s rtems_monitor_command_entry_t;
280
281typedef void ( *rtems_monitor_command_function_t )(
282                 int         argc,
283                 char      **argv,
284                 unsigned32  command_arg,
285                 boolean     verbose
286             );
287
288struct rtems_monitor_command_entry_s {
289    char        *command;      /* command name */
290    char        *usage;        /* usage string for the command */
291    unsigned32   arguments_required;    /* # of required args */
292    rtems_monitor_command_function_t command_function;
293
294                               /* Some argument for the command */
295    unsigned32          command_arg;
296};
297
298typedef void *(*rtems_monitor_object_next_fn)(void *, void *, rtems_id *);
299typedef void (*rtems_monitor_object_canonical_fn)(void *, void *);
300typedef void (*rtems_monitor_object_dump_header_fn)(boolean);
301typedef void (*rtems_monitor_object_dump_fn)(void *, boolean);
302
303typedef struct {
304    rtems_monitor_object_type_t         type;
305    void                               *object_information;
306    int                                 size;   /* of canonical object */
307    rtems_monitor_object_next_fn        next;
308    rtems_monitor_object_canonical_fn   canonical;
309    rtems_monitor_object_dump_header_fn dump_header;
310    rtems_monitor_object_dump_fn        dump;
311} rtems_monitor_object_info_t;
312
313
314/* monitor.c */
315void    rtems_monitor_kill(void);
316void    rtems_monitor_init(unsigned32);
317void    rtems_monitor_wakeup(void);
318void    rtems_monitor_pause_cmd(int, char **, unsigned32, boolean);
319void    rtems_monitor_fatal_cmd(int, char **, unsigned32, boolean);
320void    rtems_monitor_continue_cmd(int, char **, unsigned32, boolean);
321void    rtems_monitor_debugger_cmd(int, char **, unsigned32, boolean);
322void    rtems_monitor_node_cmd(int, char **, unsigned32, boolean);
323void    rtems_monitor_symbols_loadup(void);
324void    rtems_monitor_task(rtems_task_argument);
325
326/* server.c */
327void    rtems_monitor_server_kill(void);
328rtems_status_code rtems_monitor_server_request(unsigned32, rtems_monitor_server_request_t *, rtems_monitor_server_response_t *);
329void    rtems_monitor_server_task(rtems_task_argument);
330void    rtems_monitor_server_init(unsigned32);
331 
332/* command.c */
333int     rtems_monitor_make_argv(char *, int *, char **);
334int     rtems_monitor_command_read(char *, int *, char **);
335rtems_monitor_command_entry_t *rtems_monitor_command_lookup(
336    rtems_monitor_command_entry_t * table, int argc, char **argv);
337void    rtems_monitor_command_usage(rtems_monitor_command_entry_t *, char *);
338void    rtems_monitor_help_cmd(int, char **, unsigned32, boolean);
339
340/* prmisc.c */
341void       rtems_monitor_separator(void);
342unsigned32 rtems_monitor_pad(unsigned32 dest_col, unsigned32 curr_col);
343unsigned32 rtems_monitor_dump_char(unsigned8 ch);
344unsigned32 rtems_monitor_dump_decimal(unsigned32 num);
345unsigned32 rtems_monitor_dump_hex(unsigned32 num);
346unsigned32 rtems_monitor_dump_id(rtems_id id);
347unsigned32 rtems_monitor_dump_name(rtems_name name);
348unsigned32 rtems_monitor_dump_priority(rtems_task_priority priority);
349unsigned32 rtems_monitor_dump_state(States_Control state);
350unsigned32 rtems_monitor_dump_modes(rtems_mode modes);
351unsigned32 rtems_monitor_dump_attributes(rtems_attribute attributes);
352unsigned32 rtems_monitor_dump_events(rtems_event_set events);
353unsigned32 rtems_monitor_dump_notepad(unsigned32 *notepad);
354
355/* object.c */
356rtems_id   rtems_monitor_id_fixup(rtems_id, unsigned32, rtems_monitor_object_type_t);
357rtems_id   rtems_monitor_object_canonical_get(rtems_monitor_object_type_t, rtems_id, void *, unsigned32 *size_p);
358rtems_id   rtems_monitor_object_canonical_next(rtems_monitor_object_info_t *, rtems_id, void *);
359void      *rtems_monitor_object_next(void *, void *, rtems_id, rtems_id *);
360rtems_id   rtems_monitor_object_canonical(rtems_id, void *);
361void       rtems_monitor_object_cmd(int, char **, unsigned32, boolean);
362
363/* manager.c */
364void      *rtems_monitor_manager_next(void *, void *, rtems_id *);
365
366/* config.c */
367void       rtems_monitor_config_canonical(rtems_monitor_config_t *, void *);
368void      *rtems_monitor_config_next(void *, rtems_monitor_config_t *, rtems_id *);
369void       rtems_monitor_config_dump_header(boolean);
370void       rtems_monitor_config_dump(rtems_monitor_config_t *, boolean verbose);
371
372/* mpci.c */
373void       rtems_monitor_mpci_canonical(rtems_monitor_mpci_t *, void *);
374void      *rtems_monitor_mpci_next(void *, rtems_monitor_mpci_t *, rtems_id *);
375void       rtems_monitor_mpci_dump_header(boolean);
376void       rtems_monitor_mpci_dump(rtems_monitor_mpci_t *, boolean verbose);
377
378/* itask.c */
379void       rtems_monitor_init_task_canonical(rtems_monitor_init_task_t *, void *);
380void      *rtems_monitor_init_task_next(void *, rtems_monitor_init_task_t *, rtems_id *);
381void       rtems_monitor_init_task_dump_header(boolean);
382void       rtems_monitor_init_task_dump(rtems_monitor_init_task_t *, boolean verbose);
383
384/* extension.c */
385void       rtems_monitor_extension_canonical(rtems_monitor_extension_t *, void *);
386void       rtems_monitor_extension_dump_header(boolean verbose);
387void       rtems_monitor_extension_dump(rtems_monitor_extension_t *, boolean);
388
389/* task.c */
390void    rtems_monitor_task_canonical(rtems_monitor_task_t *, void *);
391void    rtems_monitor_task_dump_header(boolean verbose);
392void    rtems_monitor_task_dump(rtems_monitor_task_t *, boolean);
393
394/* queue.c */
395void    rtems_monitor_queue_canonical(rtems_monitor_queue_t *, void *);
396void    rtems_monitor_queue_dump_header(boolean verbose);
397void    rtems_monitor_queue_dump(rtems_monitor_queue_t *, boolean);
398
399/* driver.c */
400void    *rtems_monitor_driver_next(void *, rtems_monitor_driver_t *, rtems_id *);
401void     rtems_monitor_driver_canonical(rtems_monitor_driver_t *, void *);
402void     rtems_monitor_driver_dump_header(boolean);
403void     rtems_monitor_driver_dump(rtems_monitor_driver_t *, boolean);
404
405/* dname.c */
406void    *rtems_monitor_dname_next(void *, rtems_monitor_dname_t *, rtems_id *);
407void     rtems_monitor_dname_canonical(rtems_monitor_dname_t *, void *);
408void     rtems_monitor_dname_dump_header(boolean);
409void     rtems_monitor_dname_dump(rtems_monitor_dname_t *, boolean);
410
411/* symbols.c */
412rtems_symbol_table_t *rtems_symbol_table_create();
413void                  rtems_symbol_table_destroy(rtems_symbol_table_t *table);
414
415rtems_symbol_t *rtems_symbol_create(rtems_symbol_table_t *, char *, unsigned32);
416rtems_symbol_t *rtems_symbol_value_lookup(rtems_symbol_table_t *, unsigned32);
417const rtems_symbol_t *rtems_symbol_value_lookup_exact(rtems_symbol_table_t *, unsigned32);
418rtems_symbol_t *rtems_symbol_name_lookup(rtems_symbol_table_t *, char *);
419void   *rtems_monitor_symbol_next(void *object_info, rtems_monitor_symbol_t *, rtems_id *);
420void    rtems_monitor_symbol_canonical(rtems_monitor_symbol_t *, rtems_symbol_t *);
421void    rtems_monitor_symbol_canonical_by_name(rtems_monitor_symbol_t *, char *);
422void    rtems_monitor_symbol_canonical_by_value(rtems_monitor_symbol_t *, void *);
423unsigned32 rtems_monitor_symbol_dump(rtems_monitor_symbol_t *, boolean);
424void    rtems_monitor_symbol_cmd(int, char **, unsigned32, boolean);
425
426
427extern rtems_symbol_table_t *rtems_monitor_symbols;
428
429#ifndef MONITOR_PROMPT
430#define MONITOR_PROMPT "rtems"          /* will have '> ' appended */
431#endif
432
433#define MONITOR_WAKEUP_EVENT   RTEMS_EVENT_0
434
435
436#define STREQ(a,b)      (strcmp(a,b) == 0)
437#define STRNEQ(a,b,n)   (strncmp(a,b,n) == 0)
438
439#ifdef __cplusplus
440}
441#endif
442
443#endif  /* ! __MONITOR_H */
Note: See TracBrowser for help on using the repository browser.