summaryrefslogtreecommitdiff
path: root/lib/ovsdb-set-op.c
blob: 321043282ef85ea5484c20cd8194ff72fa01cbb6 (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
/* Copyright (C) 2016 Hewlett Packard Enterprise Development LP
 * Copyright (C) 2016, IBM
 * All Rights Reserved.
 *
 * 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 "ovsdb-set-op.h"
#include "util.h"

/* Set Operation: a Partial Set Update */
struct set_op {
    struct hmap_node node;
    struct ovsdb_datum *datum;
    enum set_op_type type;
};

/* List of Set Operations */
struct set_op_list {
    struct hmap hmap;
};

static void set_op_destroy_datum(struct set_op *, const struct ovsdb_type *);
static struct set_op *set_op_list_find(struct set_op_list *, struct set_op *,
                                       const struct ovsdb_type *, size_t);

struct set_op*
set_op_create(struct ovsdb_datum *datum, enum set_op_type type)
{
    struct set_op *set_op = xmalloc(sizeof *set_op);
    set_op->node.hash = 0;
    set_op->node.next = HMAP_NODE_NULL;
    set_op->datum = datum;
    set_op->type = type;
    return set_op;
}

static void
set_op_destroy_datum(struct set_op *set_op, const struct ovsdb_type *type)
{
    if (set_op->type == SET_OP_DELETE){
        struct ovsdb_type type_ = *type;
        type_.value.type = OVSDB_TYPE_VOID;
        ovsdb_datum_destroy(set_op->datum, &type_);
    } else {
        ovsdb_datum_destroy(set_op->datum, type);
    }
    free(set_op->datum);
    set_op->datum = NULL;
}

void
set_op_destroy(struct set_op *set_op, const struct ovsdb_type *type)
{
    set_op_destroy_datum(set_op, type);
    free(set_op);
}

struct ovsdb_datum*
set_op_datum(const struct set_op *set_op)
{
    return set_op->datum;
}

enum set_op_type
set_op_type(const struct set_op *set_op)
{
    return set_op->type;
}

struct set_op_list*
set_op_list_create(void)
{
    struct set_op_list *list = xmalloc(sizeof *list);
    hmap_init(&list->hmap);
    return list;
}

void
set_op_list_destroy(struct set_op_list *list, const struct ovsdb_type *type)
{
    struct set_op *set_op;
    HMAP_FOR_EACH_SAFE (set_op, node, &list->hmap) {
        set_op_destroy(set_op, type);
    }
    hmap_destroy(&list->hmap);
    free(list);
}

static struct set_op*
set_op_list_find(struct set_op_list *list, struct set_op *set_op,
                 const struct ovsdb_type *type, size_t hash)
{
    struct set_op *found = NULL;
    struct set_op *old;
    HMAP_FOR_EACH_WITH_HASH(old, node, hash, &list->hmap) {
        if (ovsdb_atom_equals(&old->datum->keys[0], &set_op->datum->keys[0],
                              type->key.type)) {
            found = old;
            break;
        }
    }
    return found;
}

/* Inserts 'set_op' into 'list'. Makes sure that any conflict with a previous
 * set operation is resolved, so only one set operation is possible on each key
 * per transactions. 'type' must be the type of the column over which the set
 * operation will be applied. */
void
set_op_list_add(struct set_op_list *list, struct set_op *set_op,
                const struct ovsdb_type *type)
{
    /* Check if there is a previous update with the same key. */
    size_t hash;
    struct set_op *prev_set_op;

    hash = ovsdb_atom_hash(&set_op->datum->keys[0], type->key.type, 0);
    prev_set_op = set_op_list_find(list, set_op, type, hash);
    if (prev_set_op == NULL){
        hmap_insert(&list->hmap, &set_op->node, hash);
    } else {
        if (prev_set_op->type == SET_OP_INSERT &&
            set_op->type == SET_OP_DELETE) {
            /* These operations cancel each other out. */
            hmap_remove(&list->hmap, &prev_set_op->node);
            set_op_destroy(prev_set_op, type);
            set_op_destroy(set_op, type);
        } else {
            /* For any other case, the new update operation replaces
             * the previous update operation. */
            set_op_destroy_datum(prev_set_op, type);
            prev_set_op->type = set_op->type;
            prev_set_op->datum = set_op->datum;
            free(set_op);
        }
    }
}

struct set_op*
set_op_list_first(struct set_op_list *list)
{
    struct hmap_node *node = hmap_first(&list->hmap);
    if (node == NULL) {
        return NULL;
    }
    struct set_op *set_op = CONTAINER_OF(node, struct set_op, node);
    return set_op;
}

struct set_op*
set_op_list_next(struct set_op_list *list, struct set_op *set_op)
{
    struct hmap_node *node = hmap_next(&list->hmap, &set_op->node);
    if (node == NULL) {
        return NULL;
    }
    struct set_op *next = CONTAINER_OF(node, struct set_op, node);
    return next;
}