summaryrefslogtreecommitdiffstats
path: root/kiro-trb.h
diff options
context:
space:
mode:
authorTimo Dritschler <timo.dritschler@kit.edu>2014-04-23 18:24:12 +0200
committerTimo Dritschler <timo.dritschler@kit.edu>2014-04-23 18:24:12 +0200
commit7fcbf0c689566dbe5a58eac0be7693b839cd5444 (patch)
treef1e8ba5ce169a003e47f960d0129cab5f250cb92 /kiro-trb.h
downloadkiro-7fcbf0c689566dbe5a58eac0be7693b839cd5444.tar.gz
kiro-7fcbf0c689566dbe5a58eac0be7693b839cd5444.tar.bz2
kiro-7fcbf0c689566dbe5a58eac0be7693b839cd5444.tar.xz
kiro-7fcbf0c689566dbe5a58eac0be7693b839cd5444.zip
Initial Commit for "KIT Infiniband Remote Objects" (KIRO) Library
Created KiroTrb (KIRO Transmittable Ring Buffer) class Wrote short test for KiroTrb class
Diffstat (limited to 'kiro-trb.h')
-rw-r--r--kiro-trb.h111
1 files changed, 111 insertions, 0 deletions
diff --git a/kiro-trb.h b/kiro-trb.h
new file mode 100644
index 0000000..db0cd8e
--- /dev/null
+++ b/kiro-trb.h
@@ -0,0 +1,111 @@
+/* Copyright (C) 2014 Timo Dritschler <timo.dritschler@kit.edu>
+ (Karlsruhe Institute of Technology)
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published by the
+ Free Software Foundation; either version 2.1 of the License, or (at your
+ option) any later version.
+
+ This library is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
+ details.
+
+ You should have received a copy of the GNU Lesser General Public License along
+ with this library; if not, write to the Free Software Foundation, Inc., 51
+ Franklin St, Fifth Floor, Boston, MA 02110, USA
+*/
+
+/**
+ * SECTION: kiro-trb
+ * @Short_description: KIRO 'Clever Ring Buffer'
+ * @Title: KiroTrb
+ *
+ * KiroTrb implements a 'Transmittable Ring Buffer' that holds all necessary information
+ * about its content inside itself, so its data can be exchanged between different
+ * instances of the KiroTrb Class and/or sent over a network.
+ */
+
+#ifndef __KIRO_TRB_H
+#define __KIRO_CBR_H
+
+#include <stdint.h>
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define KIRO_TYPE_TRB (kiro_trb_get_type())
+#define KIRO_TRB(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), KIRO_TYPE_TRB, KiroTrb))
+#define KIRO_IS_TRB(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), KIRO_TYPE_TRB))
+#define KIRO_TRB_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), KIRO_TYPE_TRB, KiroTrbClass))
+#define KIRO_IS_TRB_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), KIRO_TYPE_TRB))
+#define KIRO_TRB_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), KIRO_TYPE_TRB, KiroTrbClass))
+
+
+typedef struct _KiroTrb KiroTrb;
+typedef struct _KiroTrbClass KiroTrbClass;
+typedef struct _KiroTrbPrivate KiroTrbPrivate;
+
+
+struct _KiroTrb {
+
+ GObject parent;
+
+ /*< private >*/
+ KiroTrbPrivate *priv;
+};
+
+
+/**
+ * IbvConnectorInterface:
+ *
+ * Base interface for IbvConnectors.
+ */
+
+struct _KiroTrbClass {
+
+ GObjectClass parent_class;
+
+};
+
+
+struct KiroTrbInfo {
+
+ /* internal information about the buffer */
+ uint64_t buffer_size_bytes; // Size in bytes INCLUDING this header
+ uint64_t element_size; // Size in bytes of one single element
+ uint64_t offset; // Current Offset to access the 'oldest' element (in element count!)
+
+} __attribute__((packed));
+
+
+/* GObject and GType functions */
+GType kiro_trb_get_type (void);
+
+GObject kiro_trb_new (void);
+
+/* trb functions */
+
+uint64_t kiro_trb_get_element_count (KiroTrb*);
+
+uint64_t kiro_trb_get_element_size (KiroTrb*);
+
+uint64_t kiro_trb_get_max_elements (KiroTrb*);
+
+uint64_t kiro_trb_get_raw_size (KiroTrb*);
+
+void* kiro_trb_get_raw_buffer (KiroTrb*);
+
+void* kiro_trb_get_element (KiroTrb*, uint64_t);
+
+void kiro_trb_flush (KiroTrb*);
+
+int kiro_trb_reshape (KiroTrb*, uint64_t, uint64_t);
+
+int kiro_trb_push (KiroTrb*, void*);
+
+void kiro_trb_ingest (KiroTrb*, void*);
+
+G_END_DECLS
+
+#endif //__KIRO_TRB_H \ No newline at end of file