Add missing permission notice in each source file
[babeltrace.git] / formats / ctf / types / enum.c
index f8fc9e57f1b0f423e0e24c7dd21f2db170c80b11..e4e7ac85bb72f094d1ee197e7276cfbe95aa5493 100644 (file)
@@ -3,7 +3,9 @@
  *
  * Enumeration mapping strings (quarks) from/to integers.
  *
- * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
+ *
+ * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
  *
  * 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.
  */
 
 #include <babeltrace/ctf/types.h>
+#include <inttypes.h>
 #include <stdint.h>
 #include <glib.h>
 
@@ -36,13 +47,21 @@ int ctf_enum_read(struct stream_pos *ppos, struct definition *definition)
        ret = ctf_integer_read(ppos, &integer_definition->p);
        if (ret)
                return ret;
-       if (!integer_declaration->signedness)
+       if (!integer_declaration->signedness) {
                qs = enum_uint_to_quark_set(enum_declaration,
                        integer_definition->value._unsigned);
-       else
+               if (!qs) {
+                       fprintf(stderr, "[warning] Unknown value %" PRIu64 " in enum.\n",
+                               integer_definition->value._unsigned);
+               }
+       } else {
                qs = enum_int_to_quark_set(enum_declaration,
                        integer_definition->value._signed);
-       assert(qs);
+               if (!qs) {
+                       fprintf(stderr, "[warning] Unknown value %" PRId64 " in enum.\n",
+                               integer_definition->value._signed);
+               }
+       }
        /* unref previous quark set */
        if (enum_definition->value)
                g_array_unref(enum_definition->value);
This page took 0.02296 seconds and 4 git commands to generate.