aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra/format.h
blob: a27fbb9d851c7f12d21eeeb2bd50fbf039a7b47c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
/*
 * Copyright (c) 2015 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
  Copyright (c) 2001, 2002, 2003 Eliot Dresselhaus

  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  "Software"), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:

  The above copyright notice and this permission notice shall be
  included in all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#ifndef included_format_h
#define included_format_h

#include <stdarg.h>

#include <vppinfra/clib.h>	/* for CLIB_UNIX, etc. */
#include <vppinfra/vec.h>
#include <vppinfra/error.h>	/* for ASSERT */
#include <vppinfra/string.h>

typedef u8 *(format_function_t) (u8 * s, va_list * args);

u8 *va_format (u8 * s, const char *format, va_list * args);
u8 *format (u8 * s, const char *format, ...);

#ifdef CLIB_UNIX

#include <stdio.h>

#else /* ! CLIB_UNIX */

/* We're not Unix and have not stdio.h */
#define FILE void
#define stdin ((FILE *) 0)
#define stdout ((FILE *) 1)
#define stderr ((FILE *) 2)

#endif

word va_fformat (FILE * f, char *fmt, va_list * va);
word fformat (FILE * f, char *fmt, ...);
word fdformat (int fd, char *fmt, ...);

always_inline u32
format_get_indent (u8 * s)
{
  u32 indent = 0;
  u8 *nl;

  if (!s)
    return indent;

  nl = vec_end (s) - 1;
  while (nl >= s)
    {
      if (*nl-- == '\n')
	break;
      indent++;
    }
  return indent;
}

#define _(f) u8 * f (u8 * s, va_list * va)

/* Standard user-defined formats. */
_(format_vec32);
_(format_vec_uword);
_(format_ascii_bytes);
_(format_hex_bytes);
_(format_white_space);
_(format_f64);
_(format_time_interval);

#ifdef CLIB_UNIX
/* Unix specific formats. */
_(format_address_family);
_(format_unix_arphrd);
_(format_unix_interface_flags);
_(format_network_address);
_(format_network_protocol);
_(format_network_port);
_(format_sockaddr);
_(format_ip4_tos_byte);
_(format_ip4_packet);
_(format_icmp4_type_and_code);
_(format_ethernet_packet);
_(format_hostname);
_(format_timeval);
_(format_time_float);
_(format_signal);
_(format_ucontext_pc);
#endif

#undef _

/* Unformat. */

typedef struct _unformat_input_t
{
  /* Input buffer (vector). */
  u8 *buffer;

  /* Current index in input buffer. */
  uword index;

  /* Vector of buffer marks.  Used to delineate pieces of the buffer
     for error reporting and for parse recovery. */
  uword *buffer_marks;

  /* User's function to fill the buffer when its empty
     (and argument). */
    uword (*fill_buffer) (struct _unformat_input_t * i);

  /* Return values for fill buffer function which indicate whether not
     input has been exhausted. */
#define UNFORMAT_END_OF_INPUT (~0)
#define UNFORMAT_MORE_INPUT   0

  /* User controlled argument to fill buffer function. */
  void *fill_buffer_arg;
} unformat_input_t;

always_inline void
unformat_init (unformat_input_t * i,
	       uword (*fill_buffer) (unformat_input_t *),
	       void *fill_buffer_arg)
{
  memset (i, 0, sizeof (i[0]));
  i->fill_buffer = fill_buffer;
  i->fill_buffer_arg = fill_buffer_arg;
}

always_inline void
unformat_free (unformat_input_t * i)
{
  vec_free (i->buffer);
  vec_free (i->buffer_marks);
  memset (i, 0, sizeof (i[0]));
}

always_inline uword
unformat_check_input (unformat_input_t * i)
{
  /* Low level fill input function. */
  extern uword _unformat_fill_input (unformat_input_t * i);

  if (i->index >= vec_len (i->buffer) && i->index != UNFORMAT_END_OF_INPUT)
    _unformat_fill_input (i);

  return i->index;
}

/* Return true if input is exhausted */
always_inline uword
unformat_is_eof (unformat_input_t * input)
{
  return unformat_check_input (input) == UNFORMAT_END_OF_INPUT;
}

/* Return next element in input vector,
   possibly calling fill input to get more. */
always_inline uword
unformat_get_input (unformat_input_t * input)
{
  uword i = unformat_check_input (input);
  if (i < vec_len (input->buffer))
    {
      input->index = i + 1;
      i = input->buffer[i];
    }
  return i;
}

/* Back up input pointer by one. */
always_inline void
unformat_put_input (unformat_input_t * input)
{
  input->index -= 1;
}

/* Peek current input character without advancing. */
always_inline uword
unformat_peek_input (unformat_input_t * input)
{
  uword c = unformat_get_input (input);
  if (c != UNFORMAT_END_OF_INPUT)
    unformat_put_input (input);
  return c;
}

/* Skip current input line. */
always_inline void
unformat_skip_line (unformat_input_t * i)
{
  uword c;

  while ((c = unformat_get_input (i)) != UNFORMAT_END_OF_INPUT && c != '\n')
    ;
}

uword unformat_skip_white_space (unformat_input_t * input);

/* Unformat function. */
typedef uword (unformat_function_t) (unformat_input_t * input,
				     va_list * args);

/* External functions. */

/* General unformatting function with programmable input stream. */
uword unformat (unformat_input_t * i, const char *fmt, ...);

/* Call user defined parse function.
   unformat_user (i, f, ...) is equivalent to unformat (i, "%U", f, ...) */
uword unformat_user (unformat_input_t * input, unformat_function_t * func,
		     ...);

/* Alternate version which allows for extensions. */
uword va_unformat (unformat_input_t * i, const char *fmt, va_list * args);

/* Setup for unformat of Unix style command line. */
void unformat_init_command_line (unformat_input_t * input, char *argv[]);

/* Setup for unformat of given string. */
void unformat_init_string (unformat_input_t * input,
			   char *string, int string_len);

always_inline void
unformat_init_cstring (unformat_input_t * input, char *string)
{
  unformat_init_string (input, string, strlen (string));
}

/* Setup for unformat of given vector string; vector will be freed by unformat_string. */
void unformat_init_vector (unformat_input_t * input, u8 * vector_string);

/* Format function for unformat input usable when an unformat error
   has occurred. */
u8 *format_unformat_error (u8 * s, va_list * va);

#define unformat_parse_error(input)						\
  clib_error_return (0, "parse error `%U'", format_unformat_error, input)

/* Print all input: not just error context. */
u8 *format_unformat_input (u8 * s, va_list * va);

/* Unformat (parse) function which reads a %s string and converts it
   to and unformat_input_t. */
unformat_function_t unformat_input;

/* Parse a line ending with \n and return it. */
unformat_function_t unformat_line;

/* Parse a line ending with \n and return it as an unformat_input_t. */
unformat_function_t unformat_line_input;

/* Parse a token containing given set of characters. */
unformat_function_t unformat_token;

/* Parses a hexstring into a vector of bytes. */
unformat_function_t unformat_hex_string;

/* Returns non-zero match if input is exhausted.
   Useful to ensure that the entire input matches with no trailing junk. */
unformat_function_t unformat_eof;

/* Parse memory size e.g. 100, 100k, 100m, 100g. */
unformat_function_t unformat_memory_size;

/* Unparse memory size e.g. 100, 100k, 100m, 100g. */
u8 *format_memory_size (u8 * s, va_list * va);

/* Format c identifier: e.g. a_name -> "a name". */
u8 *format_c_identifier (u8 * s, va_list * va);

/* Format hexdump with both hex and printable chars - compatible with text2pcap */
u8 *format_hexdump (u8 * s, va_list * va);

/* Unix specific formats. */
#ifdef CLIB_UNIX
/* Setup input from Unix file. */
void unformat_init_clib_file (unformat_input_t * input, int file_descriptor);

/* Take input from Unix environment variable; returns
   1 if variable exists zero otherwise. */
uword unformat_init_unix_env (unformat_input_t * input, char *var);

/* Unformat unix group id (gid) specified as integer or string */
unformat_function_t unformat_unix_gid;
#endif /* CLIB_UNIX */

/* Test code. */
int test_format_main (unformat_input_t * input);
int test_unformat_main (unformat_input_t * input);

/* This is not the right place for this, but putting it in vec.h
created circular dependency problems. */
int test_vec_main (unformat_input_t * input);

#endif /* included_format_h */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */
/span>, job, build_nr, state): """Set the state of input :param job: :param build_nr: :param state: :return: """ try: for build in self._specification["input"]["builds"][job]: if build["build"] == build_nr: build["status"] = state break else: raise PresentationError("Build '{}' is not defined for job '{}'" " in specification file.". format(build_nr, job)) except KeyError: raise PresentationError("Job '{}' and build '{}' is not defined in " "specification file.".format(job, build_nr)) def set_input_file_name(self, job, build_nr, file_name): """Set the state of input :param job: :param build_nr: :param file_name: :return: """ try: for build in self._specification["input"]["builds"][job]: if build["build"] == build_nr: build["file-name"] = file_name break else: raise PresentationError("Build '{}' is not defined for job '{}'" " in specification file.". format(build_nr, job)) except KeyError: raise PresentationError("Job '{}' and build '{}' is not defined in " "specification file.".format(job, build_nr)) def _get_build_number(self, job, build_type): """Get the number of the job defined by its name: - lastSuccessfulBuild - lastCompletedBuild :param job: Job name. :param build_type: Build type: - lastSuccessfulBuild - lastCompletedBuild :type job" str :raises PresentationError: If it is not possible to get the build number. :returns: The build number. :rtype: int """ # defined as a range <start, end> if build_type == "lastSuccessfulBuild": # defined as a range <start, lastSuccessfulBuild> ret_code, build_nr, _ = get_last_successful_build_number( self.environment["urls"]["URL[JENKINS,CSIT]"], job) elif build_type == "lastCompletedBuild": # defined as a range <start, lastCompletedBuild> ret_code, build_nr, _ = get_last_completed_build_number( self.environment["urls"]["URL[JENKINS,CSIT]"], job) else: raise PresentationError("Not supported build type: '{0}'". format(build_type)) if ret_code != 0: raise PresentationError("Not possible to get the number of the " "build number.") try: build_nr = int(build_nr) return build_nr except ValueError as err: raise PresentationError("Not possible to get the number of the " "build number.\nReason: {0}".format(err)) def _get_type_index(self, item_type): """Get index of item type (environment, input, output, ...) in specification YAML file. :param item_type: Item type: Top level items in specification YAML file, e.g.: environment, input, output. :type item_type: str :returns: Index of the given item type. :rtype: int """ index = 0 for item in self._cfg_yaml: if item["type"] == item_type: return index index += 1 return None def _find_tag(self, text): """Find the first tag in the given text. The tag is enclosed by the TAG_OPENER and TAG_CLOSER. :param text: Text to be searched. :type text: str :returns: The tag, or None if not found. :rtype: str """ try: start = text.index(self.TAG_OPENER) end = text.index(self.TAG_CLOSER, start + 1) + 1 return text[start:end] except ValueError: return None def _replace_tags(self, data, src_data=None): """Replace tag(s) in the data by their values. :param data: The data where the tags will be replaced by their values. :param src_data: Data where the tags are defined. It is dictionary where the key is the tag and the value is the tag value. If not given, 'data' is used instead. :type data: str or dict :type src_data: dict :returns: Data with the tags replaced. :rtype: str or dict :raises: PresentationError if it is not possible to replace the tag or the data is not the supported data type (str, dict). """ if src_data is None: src_data = data if isinstance(data, str): tag = self._find_tag(data) if tag is not None: data = data.replace(tag, src_data[tag[1:-1]]) elif isinstance(data, dict): counter = 0 for key, value in data.items(): tag = self._find_tag(value) if tag is not None: try: data[key] = value.replace(tag, src_data[tag[1:-1]]) counter += 1 except KeyError: raise PresentationError("Not possible to replace the " "tag '{}'".format(tag)) if counter: self._replace_tags(data, src_data) else: raise PresentationError("Replace tags: Not supported data type.") return data def _parse_env(self): """Parse environment specification in the specification YAML file. """ logging.info("Parsing specification file: environment ...") idx = self._get_type_index("environment") if idx is None: return None try: self._specification["environment"]["configuration"] = \ self._cfg_yaml[idx]["configuration"] except KeyError: self._specification["environment"]["configuration"] = None try: self._specification["environment"]["paths"] = \ self._replace_tags(self._cfg_yaml[idx]["paths"]) except KeyError: self._specification["environment"]["paths"] = None try: self._specification["environment"]["urls"] = \ self._replace_tags(self._cfg_yaml[idx]["urls"]) except KeyError: self._specification["environment"]["urls"] = None try: self._specification["environment"]["make-dirs"] = \ self._cfg_yaml[idx]["make-dirs"] except KeyError: self._specification["environment"]["make-dirs"] = None try: self._specification["environment"]["remove-dirs"] = \ self._cfg_yaml[idx]["remove-dirs"] except KeyError: self._specification["environment"]["remove-dirs"] = None try: self._specification["environment"]["build-dirs"] = \ self._cfg_yaml[idx]["build-dirs"] except KeyError: self._specification["environment"]["build-dirs"] = None logging.info("Done.") def _parse_configuration(self): """Parse configuration of PAL in the specification YAML file. """ logging.info("Parsing specification file: configuration ...") idx = self._get_type_index("configuration") if idx is None: logging.warning("No configuration information in the specification " "file.") return None try: self._specification["configuration"] = self._cfg_yaml[idx] except KeyError: raise PresentationError("No configuration defined.") # Data sets: Replace ranges by lists for set_name, data_set in self.configuration["data-sets"].items(): for job, builds in data_set.items(): if builds: if isinstance(builds, dict): build_nr = builds.get("end", None) try: build_nr = int(build_nr) except ValueError: # defined as a range <start, build_type> build_nr = self._get_build_number(job, build_nr) builds = [x for x in range(builds["start"], build_nr+1)] self.configuration["data-sets"][set_name][job] = builds # Mapping table: mapping = None mapping_file_name = self._specification["configuration"].\ get("mapping-file", None) if mapping_file_name: logging.debug("Mapping file: '{0}'".format(mapping_file_name)) try: with open(mapping_file_name, 'r') as mfile: mapping = load(mfile) logging.debug("Loaded mapping table:\n{0}".format(mapping)) except (YAMLError, IOError) as err: raise PresentationError( msg="An error occurred while parsing the mapping file " "'{0}'.".format(mapping_file_name), details=repr(err)) # Make sure everything is lowercase if mapping: self._specification["configuration"]["mapping"] = \ {key.lower(): val.lower() for key, val in mapping.iteritems()} else: self._specification["configuration"]["mapping"] = dict() # Ignore list: ignore = None ignore_list_name = self._specification["configuration"].\ get("ignore-list", None) if ignore_list_name: logging.debug("Ignore list file: '{0}'".format(ignore_list_name)) try: with open(ignore_list_name, 'r') as ifile: ignore = load(ifile) logging.debug("Loaded ignore list:\n{0}".format(ignore)) except (YAMLError, IOError) as err: raise PresentationError( msg="An error occurred while parsing the ignore list file " "'{0}'.".format(ignore_list_name), details=repr(err)) # Make sure everything is lowercase if ignore: self._specification["configuration"]["ignore"] = \ [item.lower() for item in ignore] else: self._specification["configuration"]["ignore"] = list() logging.info("Done.") def _parse_input(self): """Parse input specification in the specification YAML file. :raises: PresentationError if there are no data to process. """ logging.info("Parsing specification file: input ...") idx = self._get_type_index("input") if idx is None: raise PresentationError("No data to process.") try: for key, value in self._cfg_yaml[idx]["general"].items(): self._specification["input"][key] = value self._specification["input"]["builds"] = dict() for job, builds in self._cfg_yaml[idx]["builds"].items(): if builds: if isinstance(builds, dict): build_nr = builds.get("end", None) try: build_nr = int(build_nr) except ValueError: # defined as a range <start, build_type> build_nr = self._get_build_number(job, build_nr) builds = [x for x in range(builds["start"], build_nr+1)] self._specification["input"]["builds"][job] = list() for build in builds: self._specification["input"]["builds"][job]. \ append({"build": build, "status": None}) else: logging.warning("No build is defined for the job '{}'. " "Trying to continue without it.". format(job)) except KeyError: raise PresentationError("No data to process.") logging.info("Done.") def _parse_output(self): """Parse output specification in the specification YAML file. :raises: PresentationError if there is no output defined. """ logging.info("Parsing specification file: output ...") idx = self._get_type_index("output") if idx is None: raise PresentationError("No output defined.") try: self._specification["output"] = self._cfg_yaml[idx] except (KeyError, IndexError): raise PresentationError("No output defined.") logging.info("Done.") def _parse_static(self): """Parse specification of the static content in the specification YAML file. """ logging.info("Parsing specification file: static content ...") idx = self._get_type_index("static") if idx is None: logging.warning("No static content specified.") for key, value in self._cfg_yaml[idx].items(): if isinstance(value, str): try: self._cfg_yaml[idx][key] = self._replace_tags( value, self._specification["environment"]["paths"]) except KeyError: pass self._specification["static"] = self._cfg_yaml[idx] logging.info("Done.") def _parse_elements(self): """Parse elements (tables, plots) specification in the specification YAML file. """ logging.info("Parsing specification file: elements ...") count = 1 for element in self._cfg_yaml: try: element["output-file"] = self._replace_tags( element["output-file"], self._specification["environment"]["paths"]) except KeyError: pass try: element["input-file"] = self._replace_tags( element["input-file"], self._specification["environment"]["paths"]) except KeyError: pass # add data sets to the elements: if isinstance(element.get("data", None), str): data_set = element["data"] try: element["data"] = self.configuration["data-sets"][data_set] except KeyError: raise PresentationError("Data set {0} is not defined in " "the configuration section.". format(data_set)) if element["type"] == "table": logging.info(" {:3d} Processing a table ...".format(count)) try: element["template"] = self._replace_tags( element["template"], self._specification["environment"]["paths"]) except KeyError: pass self._specification["tables"].append(element) count += 1 elif element["type"] == "plot": logging.info(" {:3d} Processing a plot ...".format(count)) # Add layout to the plots: layout = element["layout"].get("layout", None) if layout is not None: element["layout"].pop("layout") try: for key, val in (self.configuration["plot-layouts"] [layout].items()): element["layout"][key] = val except KeyError: raise PresentationError("Layout {0} is not defined in " "the configuration section.". format(layout)) self._specification["plots"].append(element) count += 1 elif element["type"] == "file": logging.info(" {:3d} Processing a file ...".format(count)) try: element["dir-tables"] = self._replace_tags( element["dir-tables"], self._specification["environment"]["paths"]) except KeyError: pass self._specification["files"].append(element) count += 1 elif element["type"] == "cpta": logging.info(" {:3d} Processing Continuous Performance " "Trending and Analysis ...".format(count)) for plot in element["plots"]: # Add layout to the plots: layout = plot.get("layout", None) if layout is not None: try: plot["layout"] = \ self.configuration["plot-layouts"][layout] except KeyError: raise PresentationError( "Layout {0} is not defined in the " "configuration section.".format(layout)) # Add data sets: if isinstance(plot.get("data", None), str): data_set = plot["data"] try: plot["data"] = \ self.configuration["data-sets"][data_set] except KeyError: raise PresentationError( "Data set {0} is not defined in " "the configuration section.". format(data_set)) self._specification["cpta"] = element count += 1 logging.info("Done.") def read_specification(self): """Parse specification in the specification YAML file. :raises: PresentationError if an error occurred while parsing the specification file. """ try: self._cfg_yaml = load(self._cfg_file) except YAMLError as err: raise PresentationError(msg="An error occurred while parsing the " "specification file.", details=str(err)) self._parse_env() self._parse_configuration() self._parse_input() self._parse_output() self._parse_static() self._parse_elements() logging.debug("Specification: \n{}". format(pformat(self._specification)))