.gitignore: add some more IDE / tools related file
[babeltrace.git] / src / ctf-writer / attributes.c
index 78d892b2b167168e164f2c4d3fb3fc39835762f7..27b689e2e508b9f64c1c57610800c27731e8a987 100644 (file)
@@ -1,33 +1,17 @@
 /*
- * attributes.c
- *
- * Babeltrace CTF writer - Attributes
+ * SPDX-License-Identifier: MIT
  *
  * Copyright (c) 2015 EfficiOS Inc. and Linux Foundation
  * Copyright (c) 2015 Philippe Proulx <pproulx@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
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * 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.
+ * Babeltrace CTF writer - Attributes
  */
 
 #define BT_LOG_TAG "CTF-WRITER/ATTRS"
 #include "logging.h"
 
+#include "attributes.h"
+
 #include "common/assert.h"
 #include "common/macros.h"
 #include "compat/string.h"
@@ -39,7 +23,6 @@
 #define BT_CTF_ATTR_NAME_INDEX         0
 #define BT_CTF_ATTR_VALUE_INDEX                1
 
-BT_HIDDEN
 struct bt_ctf_private_value *bt_ctf_attributes_create(void)
 {
        struct bt_ctf_private_value *attr_obj;
@@ -70,20 +53,17 @@ struct bt_ctf_private_value *bt_ctf_attributes_create(void)
        return attr_obj;
 }
 
-BT_HIDDEN
 void bt_ctf_attributes_destroy(struct bt_ctf_private_value *attr_obj)
 {
        BT_LOGD("Destroying attributes object: addr=%p", attr_obj);
        bt_ctf_object_put_ref(attr_obj);
 }
 
-BT_HIDDEN
 int64_t bt_ctf_attributes_get_count(struct bt_ctf_private_value *attr_obj)
 {
        return bt_ctf_value_array_get_length(bt_ctf_private_value_as_value(attr_obj));
 }
 
-BT_HIDDEN
 const char *bt_ctf_attributes_get_field_name(struct bt_ctf_private_value *attr_obj,
                uint64_t index)
 {
@@ -128,7 +108,6 @@ end:
        return ret;
 }
 
-BT_HIDDEN
 struct bt_ctf_private_value *bt_ctf_attributes_borrow_field_value(struct bt_ctf_private_value *attr_obj,
                uint64_t index)
 {
@@ -219,7 +198,6 @@ error:
        return value_obj;
 }
 
-BT_HIDDEN
 int bt_ctf_attributes_set_field_value(struct bt_ctf_private_value *attr_obj,
                const char *name, struct bt_ctf_private_value *value_obj)
 {
@@ -272,7 +250,6 @@ end:
        return ret;
 }
 
-BT_HIDDEN
 struct bt_ctf_private_value *bt_ctf_attributes_borrow_field_value_by_name(
                struct bt_ctf_private_value *attr_obj, const char *name)
 {
@@ -304,7 +281,6 @@ end:
        return value_obj;
 }
 
-BT_HIDDEN
 int bt_ctf_attributes_freeze(struct bt_ctf_private_value *attr_obj)
 {
        uint64_t i;
@@ -319,7 +295,7 @@ int bt_ctf_attributes_freeze(struct bt_ctf_private_value *attr_obj)
 
        BT_LOGD("Freezing attributes object: value-addr=%p", attr_obj);
        count = bt_ctf_value_array_get_length(bt_ctf_private_value_as_value(attr_obj));
-       BT_ASSERT(count >= 0);
+       BT_ASSERT_DBG(count >= 0);
 
        /*
         * We do not freeze the array value object itself here, since
This page took 0.02403 seconds and 4 git commands to generate.