Replace "struct continuation" mechanism by something more extensible
[deliverable/binutils-gdb.git] / gdb / thread-fsm.h
CommitLineData
243a9253
PA
1/* Thread command's finish-state machine, for GDB, the GNU debugger.
2 Copyright (C) 2015 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19#ifndef THREAD_FSM_H
20#define THREAD_FSM_H
21
22#include "mi/mi-common.h" /* For enum async_reply_reason. */
23
24struct return_value_info;
25struct thread_fsm_ops;
26
27/* A thread finite-state machine structure contains the necessary info
28 and callbacks to manage the state machine protocol of a thread's
29 execution command. */
30
31struct thread_fsm
32{
33 /* Pointer of the virtual table of methods. */
34 struct thread_fsm_ops *ops;
35
36 /* Whether the FSM is done successfully. */
37 int finished;
38};
39
40/* The virtual table of a thread_fsm. */
41
42struct thread_fsm_ops
43{
44 /* The destructor. This should simply free heap allocated data
45 structures. Cleaning up target resources (like, e.g.,
46 breakpoints) should be done in the clean_up method. */
47 void (*dtor) (struct thread_fsm *self);
48
49 /* Called to clean up target resources after the FSM. E.g., if the
50 FSM created internal breakpoints, this is where they should be
51 deleted. */
52 void (*clean_up) (struct thread_fsm *self);
53
54 /* Called after handle_inferior_event decides the target is done
55 (that is, after stop_waiting). The FSM is given a chance to
56 decide whether the command is done and thus the target should
57 stop, or whether there's still more to do and thus the thread
58 should be re-resumed. This is a good place to cache target data
59 too. For example, the "finish" command saves the just-finished
60 function's return value here. */
61 int (*should_stop) (struct thread_fsm *self);
62
63 /* If this FSM saved a function's return value, you can use this
64 method to retrieve it. Otherwise, this returns NULL. */
65 struct return_value_info *(*return_value) (struct thread_fsm *self);
66
67 /* The async_reply_reason that is broadcast to MI clients if this
68 FSM finishes successfully. */
69 enum async_reply_reason (*async_reply_reason) (struct thread_fsm *self);
70};
71/* Initialize FSM. */
72extern void thread_fsm_ctor (struct thread_fsm *fsm,
73 struct thread_fsm_ops *ops);
74
75/* Calls the FSM's dtor method, and then frees FSM. */
76extern void thread_fsm_delete (struct thread_fsm *fsm);
77
78/* Calls the FSM's clean_up method. */
79extern void thread_fsm_clean_up (struct thread_fsm *fsm);
80
81/* Calls the FSM's should_stop method. */
82extern int thread_fsm_should_stop (struct thread_fsm *fsm);
83
84/* Calls the FSM's return_value method. */
85extern struct return_value_info *
86 thread_fsm_return_value (struct thread_fsm *fsm);
87
88/* Marks the FSM as completed successfully. */
89extern void thread_fsm_set_finished (struct thread_fsm *fsm);
90
91/* Returns true if the FSM completed successfully. */
92extern int thread_fsm_finished_p (struct thread_fsm *fsm);
93
94/* Calls the FSM's reply_reason method. */
95extern enum async_reply_reason
96 thread_fsm_async_reply_reason (struct thread_fsm *fsm);
97
98#endif /* THREAD_FSM_H */
This page took 0.026658 seconds and 4 git commands to generate.