2 * Copyright (c) 2011, 2012 Nicira, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
21 #include "dynamic-string.h"
34 vlog_set_levels_from_string("odp_util:console:dbg");
35 while (!ds_get_test_line(&in, stdin)) {
36 enum odp_key_fitness fitness;
37 struct ofpbuf odp_key;
42 /* Convert string to OVS DP key. */
43 ofpbuf_init(&odp_key, 0);
44 error = odp_flow_key_from_string(ds_cstr(&in), NULL, &odp_key);
46 printf("odp_flow_key_from_string: error\n");
50 /* Convert odp_key to flow. */
51 fitness = odp_flow_key_to_flow(odp_key.data, odp_key.size, &flow);
56 case ODP_FIT_TOO_LITTLE:
57 printf("ODP_FIT_TOO_LITTLE: ");
60 case ODP_FIT_TOO_MUCH:
61 printf("ODP_FIT_TOO_MUCH: ");
65 printf("odp_flow_key_to_flow: error\n");
69 /* Convert cls_rule back to odp_key. */
70 ofpbuf_uninit(&odp_key);
71 ofpbuf_init(&odp_key, 0);
72 odp_flow_key_from_flow(&odp_key, &flow);
74 /* Convert odp_key to string. */
76 odp_flow_key_format(odp_key.data, odp_key.size, &out);
81 ofpbuf_uninit(&odp_key);
94 vlog_set_levels_from_string("odp_util:console:dbg");
95 while (!ds_get_test_line(&in, stdin)) {
96 struct ofpbuf odp_actions;
100 /* Convert string to OVS DP actions. */
101 ofpbuf_init(&odp_actions, 0);
102 error = odp_actions_from_string(ds_cstr(&in), NULL, &odp_actions);
104 printf("odp_actions_from_string: error\n");
108 /* Convert odp_actions back to string. */
110 format_odp_actions(&out, odp_actions.data, odp_actions.size);
115 ofpbuf_uninit(&odp_actions);
123 main(int argc, char *argv[])
125 if (argc == 2 &&!strcmp(argv[1], "parse-keys")) {
127 } else if (argc == 2 && !strcmp(argv[1], "parse-actions")) {
128 return parse_actions();
130 ovs_fatal(0, "usage: %s parse-keys | parse-actions", argv[0]);