Age Owner Branch data TLA Line data Source code
1 : : /* ----------
2 : : * backend_progress.c
3 : : *
4 : : * Command progress reporting infrastructure.
5 : : *
6 : : * Copyright (c) 2001-2024, PostgreSQL Global Development Group
7 : : *
8 : : * src/backend/utils/activity/backend_progress.c
9 : : * ----------
10 : : */
11 : : #include "postgres.h"
12 : :
13 : : #include "access/parallel.h"
14 : : #include "libpq/pqformat.h"
15 : : #include "port/atomics.h" /* for memory barriers */
16 : : #include "utils/backend_progress.h"
17 : : #include "utils/backend_status.h"
18 : :
19 : :
20 : : /*-----------
21 : : * pgstat_progress_start_command() -
22 : : *
23 : : * Set st_progress_command (and st_progress_command_target) in own backend
24 : : * entry. Also, zero-initialize st_progress_param array.
25 : : *-----------
26 : : */
27 : : void
1107 andres@anarazel.de 28 :CBC 109661 : pgstat_progress_start_command(ProgressCommandType cmdtype, Oid relid)
29 : : {
30 : 109661 : volatile PgBackendStatus *beentry = MyBEEntry;
31 : :
32 [ + - - + ]: 109661 : if (!beentry || !pgstat_track_activities)
1107 andres@anarazel.de 33 :UBC 0 : return;
34 : :
1107 andres@anarazel.de 35 :CBC 109661 : PGSTAT_BEGIN_WRITE_ACTIVITY(beentry);
36 : 109661 : beentry->st_progress_command = cmdtype;
37 : 109661 : beentry->st_progress_command_target = relid;
38 [ + - + - : 2302881 : MemSet(&beentry->st_progress_param, 0, sizeof(beentry->st_progress_param));
+ - + - +
+ ]
39 [ - + - + ]: 109661 : PGSTAT_END_WRITE_ACTIVITY(beentry);
40 : : }
41 : :
42 : : /*-----------
43 : : * pgstat_progress_update_param() -
44 : : *
45 : : * Update index'th member in st_progress_param[] of own backend entry.
46 : : *-----------
47 : : */
48 : : void
49 : 11328195 : pgstat_progress_update_param(int index, int64 val)
50 : : {
51 : 11328195 : volatile PgBackendStatus *beentry = MyBEEntry;
52 : :
53 [ + - - + ]: 11328195 : Assert(index >= 0 && index < PGSTAT_NUM_PROGRESS_PARAM);
54 : :
55 [ + - - + ]: 11328195 : if (!beentry || !pgstat_track_activities)
1107 andres@anarazel.de 56 :UBC 0 : return;
57 : :
1107 andres@anarazel.de 58 :CBC 11328195 : PGSTAT_BEGIN_WRITE_ACTIVITY(beentry);
59 : 11328195 : beentry->st_progress_param[index] = val;
60 [ - + - + ]: 11328195 : PGSTAT_END_WRITE_ACTIVITY(beentry);
61 : : }
62 : :
63 : : /*-----------
64 : : * pgstat_progress_incr_param() -
65 : : *
66 : : * Increment index'th member in st_progress_param[] of own backend entry.
67 : : *-----------
68 : : */
69 : : void
386 tgl@sss.pgh.pa.us 70 : 1458 : pgstat_progress_incr_param(int index, int64 incr)
71 : : {
72 : 1458 : volatile PgBackendStatus *beentry = MyBEEntry;
73 : :
74 [ + - - + ]: 1458 : Assert(index >= 0 && index < PGSTAT_NUM_PROGRESS_PARAM);
75 : :
76 [ + - - + ]: 1458 : if (!beentry || !pgstat_track_activities)
386 tgl@sss.pgh.pa.us 77 :UBC 0 : return;
78 : :
386 tgl@sss.pgh.pa.us 79 :CBC 1458 : PGSTAT_BEGIN_WRITE_ACTIVITY(beentry);
80 : 1458 : beentry->st_progress_param[index] += incr;
81 [ - + - + ]: 1458 : PGSTAT_END_WRITE_ACTIVITY(beentry);
82 : : }
83 : :
84 : : /*-----------
85 : : * pgstat_progress_parallel_incr_param() -
86 : : *
87 : : * A variant of pgstat_progress_incr_param to allow a worker to poke at
88 : : * a leader to do an incremental progress update.
89 : : *-----------
90 : : */
91 : : void
278 msawada@postgresql.o 92 :GNC 60 : pgstat_progress_parallel_incr_param(int index, int64 incr)
93 : : {
94 : : /*
95 : : * Parallel workers notify a leader through a 'P' protocol message to
96 : : * update progress, passing the progress index and incremented value.
97 : : * Leaders can just call pgstat_progress_incr_param directly.
98 : : */
99 [ + + ]: 60 : if (IsParallelWorker())
100 : : {
101 : : static StringInfoData progress_message;
102 : :
103 : 2 : initStringInfo(&progress_message);
104 : :
105 : 2 : pq_beginmessage(&progress_message, 'P');
106 : 2 : pq_sendint32(&progress_message, index);
107 : 2 : pq_sendint64(&progress_message, incr);
108 : 2 : pq_endmessage(&progress_message);
109 : : }
110 : : else
111 : 58 : pgstat_progress_incr_param(index, incr);
112 : 60 : }
113 : :
114 : : /*-----------
115 : : * pgstat_progress_update_multi_param() -
116 : : *
117 : : * Update multiple members in st_progress_param[] of own backend entry.
118 : : * This is atomic; readers won't see intermediate states.
119 : : *-----------
120 : : */
121 : : void
1107 andres@anarazel.de 122 :CBC 722079 : pgstat_progress_update_multi_param(int nparam, const int *index,
123 : : const int64 *val)
124 : : {
125 : 722079 : volatile PgBackendStatus *beentry = MyBEEntry;
126 : : int i;
127 : :
128 [ + - + - : 722079 : if (!beentry || !pgstat_track_activities || nparam == 0)
- + ]
1107 andres@anarazel.de 129 :UBC 0 : return;
130 : :
1107 andres@anarazel.de 131 :CBC 722079 : PGSTAT_BEGIN_WRITE_ACTIVITY(beentry);
132 : :
133 [ + + ]: 2046619 : for (i = 0; i < nparam; ++i)
134 : : {
135 [ + - - + ]: 1324540 : Assert(index[i] >= 0 && index[i] < PGSTAT_NUM_PROGRESS_PARAM);
136 : :
137 : 1324540 : beentry->st_progress_param[index[i]] = val[i];
138 : : }
139 : :
140 [ - + - + ]: 722079 : PGSTAT_END_WRITE_ACTIVITY(beentry);
141 : : }
142 : :
143 : : /*-----------
144 : : * pgstat_progress_end_command() -
145 : : *
146 : : * Reset st_progress_command (and st_progress_command_target) in own backend
147 : : * entry. This signals the end of the command.
148 : : *-----------
149 : : */
150 : : void
151 : 135841 : pgstat_progress_end_command(void)
152 : : {
153 : 135841 : volatile PgBackendStatus *beentry = MyBEEntry;
154 : :
155 [ + - - + ]: 135841 : if (!beentry || !pgstat_track_activities)
1107 andres@anarazel.de 156 :UBC 0 : return;
157 : :
1107 andres@anarazel.de 158 [ + + ]:CBC 135841 : if (beentry->st_progress_command == PROGRESS_COMMAND_INVALID)
159 : 26868 : return;
160 : :
161 : 108973 : PGSTAT_BEGIN_WRITE_ACTIVITY(beentry);
162 : 108973 : beentry->st_progress_command = PROGRESS_COMMAND_INVALID;
163 : 108973 : beentry->st_progress_command_target = InvalidOid;
164 [ - + - + ]: 108973 : PGSTAT_END_WRITE_ACTIVITY(beentry);
165 : : }
|