MME2 changes - Propped commits from openmme/paging branch. Added scripts
for code gen
Change-Id: Ie55032217232214ac8544ca76ea34335205329e4
diff --git a/src/gtpV2Codec/ieClasses/ambrMmbrIe.cpp b/src/gtpV2Codec/ieClasses/ambrMmbrIe.cpp
new file mode 100644
index 0000000..5deb43e
--- /dev/null
+++ b/src/gtpV2Codec/ieClasses/ambrMmbrIe.cpp
@@ -0,0 +1,93 @@
+/*
+ * Copyright 2019-present Infosys Limited
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ */
+/******************************************************************************
+ *
+ * This is an auto generated file.
+ * Please do not edit this file.
+ * All edits to be made through template source file
+ * <TOP-DIR/scripts/GtpV2StackCodeGen/tts/ietemplate.cpp.tt>
+ ******************************************************************************/
+
+#include "ambrMmbrIe.h"
+#include "dataTypeCodecUtils.h"
+
+AmbrMmbrIe::AmbrMmbrIe()
+{
+ ieType = 161;
+ // TODO
+
+}
+
+AmbrMmbrIe::~AmbrMmbrIe() {
+ // TODO Auto-generated destructor stub
+}
+
+bool AmbrMmbrIe::encodeAmbrMmbrIe(MsgBuffer &buffer, AmbrMmbrIeData const &data)
+{
+ if (!(buffer.writeUint32(data.maxMbrUplink)))
+ {
+ errorStream.add((char *)"Encoding of maxMbrUplink failed\n");
+ return false;
+ }
+ if (!(buffer.writeUint32(data.maxMbrDownlink)))
+ {
+ errorStream.add((char *)"Encoding of maxMbrDownlink failed\n");
+ return false;
+ }
+
+ return true;
+}
+
+bool AmbrMmbrIe::decodeAmbrMmbrIe(MsgBuffer &buffer, AmbrMmbrIeData &data, Uint16 length)
+{
+ // TODO optimize the length checks
+
+ Uint16 ieBoundary = buffer.getCurrentIndex() + length;
+
+ buffer.readUint32(data.maxMbrUplink);
+ if (buffer.getCurrentIndex() > ieBoundary)
+ {
+ errorStream.add((char *)"Attempt to read beyond IE boundary: maxMbrUplink\n");
+ return false;
+ }
+
+ buffer.readUint32(data.maxMbrDownlink);
+ if (buffer.getCurrentIndex() > ieBoundary)
+ {
+ errorStream.add((char *)"Attempt to read beyond IE boundary: maxMbrDownlink\n");
+ return false;
+ }
+
+ // The IE is decoded now. The buffer index should be pointing to the
+ // IE Boundary. If not, we have some more data left for the IE which we don't know
+ // how to decode
+ if (ieBoundary == buffer.getCurrentIndex())
+ {
+ return true;
+ }
+ else
+ {
+ errorStream.add((char *)"Unable to decode IE AmbrMmbrIe\n");
+ return false;
+ }
+}
+void AmbrMmbrIe::displayAmbrMmbrIe_v(AmbrMmbrIeData const &data, Debug &stream)
+{
+ stream.incrIndent();
+ stream.add((char *)"AmbrMmbrIeData:");
+ stream.incrIndent();
+ stream.endOfLine();
+
+ stream.add((char *)"maxMbrUplink: ");
+ stream.add(data.maxMbrUplink);
+ stream.endOfLine();
+
+ stream.add((char *)"maxMbrDownlink: ");
+ stream.add(data.maxMbrDownlink);
+ stream.endOfLine();
+ stream.decrIndent();
+ stream.decrIndent();
+}