]> git.proxmox.com Git - ceph.git/blame - ceph/src/seastar/dpdk/examples/ip_pipeline/parser.h
import 15.2.0 Octopus source
[ceph.git] / ceph / src / seastar / dpdk / examples / ip_pipeline / parser.h
CommitLineData
9f95a23c
TL
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation
7c673cae
FG
3 */
4
5#ifndef __INCLUDE_PARSER_H__
6#define __INCLUDE_PARSER_H__
7
8#include <stdint.h>
9
10#include <rte_ip.h>
11#include <rte_ether.h>
12
13#define PARSE_DELIMITER " \f\n\r\t\v"
14
15#define skip_white_spaces(pos) \
16({ \
17 __typeof__(pos) _p = (pos); \
18 for ( ; isspace(*_p); _p++) \
19 ; \
20 _p; \
21})
22
23static inline size_t
24skip_digits(const char *src)
25{
26 size_t i;
27
28 for (i = 0; isdigit(src[i]); i++)
29 ;
30
31 return i;
32}
33
34int parser_read_arg_bool(const char *p);
35
36int parser_read_uint64(uint64_t *value, const char *p);
37int parser_read_uint32(uint32_t *value, const char *p);
38int parser_read_uint16(uint16_t *value, const char *p);
39int parser_read_uint8(uint8_t *value, const char *p);
40
41int parser_read_uint64_hex(uint64_t *value, const char *p);
42int parser_read_uint32_hex(uint32_t *value, const char *p);
43int parser_read_uint16_hex(uint16_t *value, const char *p);
44int parser_read_uint8_hex(uint8_t *value, const char *p);
45
46int parse_hex_string(char *src, uint8_t *dst, uint32_t *size);
47
48int parse_ipv4_addr(const char *token, struct in_addr *ipv4);
49int parse_ipv6_addr(const char *token, struct in6_addr *ipv6);
50int parse_mac_addr(const char *token, struct ether_addr *addr);
51int parse_mpls_labels(char *string, uint32_t *labels, uint32_t *n_labels);
52
9f95a23c
TL
53struct cpu_core_params {
54 uint32_t socket_id;
55 uint32_t core_id;
56 uint32_t thread_id;
57};
58
59int parse_cpu_core(const char *entry, struct cpu_core_params *p);
60
7c673cae
FG
61int parse_tokenize_string(char *string, char *tokens[], uint32_t *n_tokens);
62
63#endif