]> git.proxmox.com Git - mirror_frr.git/blob - tests/lib/test_heavy_thread.c
doc: Add `show ipv6 rpf X:X::X:X` command to docs
[mirror_frr.git] / tests / lib / test_heavy_thread.c
1 /*
2 * This file is part of Quagga.
3 *
4 * Quagga is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2, or (at your option) any
7 * later version.
8 *
9 * Quagga is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; see the file COPYING; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19 /* This programme shows the effects of 'heavy' long-running functions
20 * on the cooperative threading model, as demonstrated by heavy.c, and how
21 * they can be mitigated using a background thread.
22 *
23 * Run it with a config file containing 'password whatever', telnet to it
24 * (it defaults to port 4000) and enter the 'clear foo string' command.
25 * then type whatever and observe that, unlike heavy.c, the vty interface
26 * remains responsive.
27 */
28 #include <zebra.h>
29 #include <math.h>
30
31 #include "thread.h"
32 #include "vty.h"
33 #include "command.h"
34 #include "memory.h"
35 #include "log.h"
36
37 #include "tests.h"
38
39 extern struct thread_master *master;
40
41 enum { ITERS_FIRST = 0,
42 ITERS_ERR = 100,
43 ITERS_LATER = 400,
44 ITERS_PRINT = 10,
45 ITERS_MAX = 1000,
46 };
47
48 struct work_state {
49 struct vty *vty;
50 char *str;
51 int i;
52 };
53
54 static void slow_func(struct vty *vty, const char *str, const int i)
55 {
56 double x = 1;
57 int j;
58
59 for (j = 0; j < 300; j++)
60 x += sin(x) * j;
61
62 if ((i % ITERS_LATER) == 0)
63 printf("%s: %d, temporary error, save this somehow and do it later..\n",
64 __func__, i);
65
66 if ((i % ITERS_ERR) == 0)
67 printf("%s: hard error\n", __func__);
68
69 if ((i % ITERS_PRINT) == 0)
70 printf("%s did %d, x = %g\n", str, i, x);
71 }
72
73 static void clear_something(struct thread *thread)
74 {
75 struct work_state *ws = THREAD_ARG(thread);
76
77 /* this could be like iterating through 150k of route_table
78 * or worse, iterating through a list of peers, to bgp_stop them with
79 * each having 150k route tables to process...
80 */
81 while (ws->i < ITERS_MAX) {
82 slow_func(ws->vty, ws->str, ws->i);
83 ws->i++;
84 if (thread_should_yield(thread)) {
85 thread_add_timer_msec(master, clear_something, ws, 0,
86 NULL);
87 return;
88 }
89 }
90
91 /* All done! */
92 XFREE(MTYPE_TMP, ws->str);
93 XFREE(MTYPE_TMP, ws);
94 }
95
96 DEFUN (clear_foo,
97 clear_foo_cmd,
98 "clear foo LINE...",
99 "clear command\n"
100 "arbitrary string\n")
101 {
102 char *str;
103 struct work_state *ws;
104
105 if (!argc) {
106 vty_out(vty, "%% string argument required\n");
107 return CMD_WARNING;
108 }
109
110 str = argv_concat(argv, argc, 0);
111
112 ws = XMALLOC(MTYPE_TMP, sizeof(*ws));
113
114 ws->str = XSTRDUP(MTYPE_TMP, str);
115
116 ws->vty = vty;
117 ws->i = ITERS_FIRST;
118
119 thread_add_timer_msec(master, clear_something, ws, 0, NULL);
120
121 return CMD_SUCCESS;
122 }
123
124 void test_init(void)
125 {
126 install_element(VIEW_NODE, &clear_foo_cmd);
127 }