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
|
/*
* Copyright (c) 2017-2018 Nicira, Inc.
*
* 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.
*/
#include <config.h>
#include "openvswitch/namemap.h"
#include <ctype.h>
#include "hash.h"
#include "openvswitch/dynamic-string.h"
#include "openvswitch/json.h"
void
namemap_init(struct namemap *map)
{
hmap_init(&map->by_name);
hmap_init(&map->by_number);
}
struct namemap_node *
namemap_find_by_name(const struct namemap *map, const char *name)
{
struct namemap_node *node;
HMAP_FOR_EACH_WITH_HASH (node, name_node, hash_string(name, 0),
&map->by_name) {
if (!strcmp(name, node->name)) {
return node;
}
}
return NULL;
}
struct namemap_node *
namemap_find_by_number(const struct namemap *map, uint32_t number)
{
struct namemap_node *node;
HMAP_FOR_EACH_IN_BUCKET (node, number_node, hash_int(number, 0),
&map->by_number) {
if (node->number == number) {
return node;
}
}
return NULL;
}
void
namemap_put(struct namemap *map, uint32_t number, const char *name)
{
struct namemap_node *node;
/* Look for duplicate name. */
node = namemap_find_by_name(map, name);
if (node) {
if (node->number != number) {
node->duplicate = true;
}
return;
}
/* Look for duplicate number. */
node = namemap_find_by_number(map, number);
if (node) {
node->duplicate = true;
return;
}
/* Add new node. */
node = xmalloc(sizeof *node);
hmap_insert(&map->by_number, &node->number_node, hash_int(number, 0));
hmap_insert(&map->by_name, &node->name_node, hash_string(name, 0));
node->number = number;
node->name = xstrdup(name);
node->duplicate = false;
}
void
namemap_destroy(struct namemap *map)
{
if (map) {
struct namemap_node *node;
HMAP_FOR_EACH_SAFE (node, name_node, &map->by_name) {
hmap_remove(&map->by_name, &node->name_node);
hmap_remove(&map->by_number, &node->number_node);
free(node->name);
free(node);
}
hmap_destroy(&map->by_name);
hmap_destroy(&map->by_number);
}
}
/* A table or port name doesn't need to be quoted if it is alphanumeric and
* starts with a letter. */
static bool
name_needs_quotes(const char *name)
{
if (!isalpha((unsigned char) name[0])) {
return true;
}
for (const char *p = name + 1; *p; p++) {
if (!isalnum((unsigned char) *p)) {
return true;
}
}
return false;
}
/* Appends port or table 'name' to 's', quoting it if necessary. */
void
namemap_put_name(const char *name, struct ds *s)
{
if (name_needs_quotes(name)) {
json_string_escape(name, s);
} else {
ds_put_cstr(s, name);
}
}
|