]> git.proxmox.com Git - mirror_frr.git/blame - lib/clippy.c
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / lib / clippy.c
CommitLineData
29ad6f68
DL
1/*
2 * clippy (CLI preparator in python) main executable
3 * Copyright (C) 2016-2017 David Lamparter for NetDEF, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; either version 2 of the License, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include "config.h"
21#include <Python.h>
22#include <string.h>
23#include <stdlib.h>
24#include <wchar.h>
25#include "getopt.h"
26
27#include "command_graph.h"
28#include "clippy.h"
29
30#if PY_MAJOR_VERSION >= 3
31#define pychar wchar_t
32static wchar_t *wconv(const char *s)
33{
45ec351d 34 size_t outlen = s ? mbstowcs(NULL, s, 0) : 0;
29ad6f68 35 wchar_t *out = malloc((outlen + 1) * sizeof(wchar_t));
45ec351d 36
37 if (outlen > 0)
38 mbstowcs(out, s, outlen);
29ad6f68
DL
39 out[outlen] = 0;
40 return out;
41}
42#else
43#define pychar char
44#define wconv(x) x
45#endif
46
47int main(int argc, char **argv)
48{
49 pychar **wargv;
50
51#if PY_VERSION_HEX >= 0x03040000 /* 3.4 */
52 Py_SetStandardStreamEncoding("UTF-8", NULL);
53#endif
54 Py_SetProgramName(wconv(argv[0]));
55 PyImport_AppendInittab("_clippy", command_py_init);
56
57 Py_Initialize();
58
59 wargv = malloc(argc * sizeof(pychar *));
60 for (int i = 1; i < argc; i++)
61 wargv[i - 1] = wconv(argv[i]);
62 PySys_SetArgv(argc - 1, wargv);
63
64 const char *pyfile = argc > 1 ? argv[1] : NULL;
65 FILE *fp;
66 if (pyfile) {
67 fp = fopen(pyfile, "r");
68 if (!fp) {
69 fprintf(stderr, "%s: %s\n", pyfile, strerror(errno));
70 return 1;
71 }
72 } else {
73 fp = stdin;
74 char *ver = strdup(Py_GetVersion());
75 char *cr = strchr(ver, '\n');
76 if (cr)
77 *cr = ' ';
78 fprintf(stderr, "clippy interactive shell\n(Python %s)\n", ver);
79 free(ver);
d62a17ae 80 PyRun_SimpleString(
81 "import rlcompleter, readline\n"
82 "readline.parse_and_bind('tab: complete')");
29ad6f68
DL
83 }
84
85 if (PyRun_AnyFile(fp, pyfile)) {
86 if (PyErr_Occurred())
87 PyErr_Print();
88 else
89 printf("unknown python failure (?)\n");
90 return 1;
91 }
d62a17ae 92 Py_Finalize();
29ad6f68
DL
93
94#if PY_MAJOR_VERSION >= 3
95 for (int i = 1; i < argc; i++)
96 free(wargv[i - 1]);
97#endif
98 free(wargv);
99 return 0;
100}
101
102/* and now for the ugly part... provide simplified logging functions so we
103 * don't need to link libzebra (which would be a circular build dep) */
104
105#ifdef __ASSERT_FUNCTION
106#undef __ASSERT_FUNCTION
107#endif
108
109#include "log.h"
110#include "zassert.h"
111
d62a17ae 112#define ZLOG_FUNC(FUNCNAME) \
113 void FUNCNAME(const char *format, ...) \
114 { \
115 va_list args; \
116 va_start(args, format); \
117 vfprintf(stderr, format, args); \
118 fputs("\n", stderr); \
119 va_end(args); \
120 }
29ad6f68
DL
121
122ZLOG_FUNC(zlog_err)
123ZLOG_FUNC(zlog_warn)
124ZLOG_FUNC(zlog_info)
125ZLOG_FUNC(zlog_notice)
126ZLOG_FUNC(zlog_debug)
127
d62a17ae 128void _zlog_assert_failed(const char *assertion, const char *file,
129 unsigned int line, const char *function)
29ad6f68 130{
d62a17ae 131 fprintf(stderr,
132 "Assertion `%s' failed in file %s, line %u, function %s",
29ad6f68
DL
133 assertion, file, line, (function ? function : "?"));
134 abort();
135}
136
d62a17ae 137void memory_oom(size_t size, const char *name)
29ad6f68
DL
138{
139 abort();
140}