MME2 changes - Propped commits from openmme/paging branch. Added scripts
for code gen
Change-Id: Ie55032217232214ac8544ca76ea34335205329e4
diff --git a/src/gtpV2Codec/ieClasses/fContainerIe.cpp b/src/gtpV2Codec/ieClasses/fContainerIe.cpp
new file mode 100644
index 0000000..a387c44
--- /dev/null
+++ b/src/gtpV2Codec/ieClasses/fContainerIe.cpp
@@ -0,0 +1,112 @@
+/*
+ * 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 "fContainerIe.h"
+#include "dataTypeCodecUtils.h"
+
+FContainerIe::FContainerIe()
+{
+ ieType = 118;
+ // TODO
+
+}
+
+FContainerIe::~FContainerIe() {
+ // TODO Auto-generated destructor stub
+}
+
+bool FContainerIe::encodeFContainerIe(MsgBuffer &buffer, FContainerIeData const &data)
+{
+ buffer.skipBits(4);
+
+ if (!(data.containerType<= 4))
+ {
+ errorStream.add((char *)"Data validation failure: containerType\n");
+ return false;
+ }
+ if(!(buffer.writeBits(data.containerType, 4)))
+ {
+ errorStream.add((char *)"Encoding of containerType failed\n");
+ return false;
+ }
+ if (!(buffer.writeUint8(data.fContainerField)))
+ {
+ errorStream.add((char *)"Encoding of fContainerField failed\n");
+ return false;
+ }
+
+ return true;
+}
+
+bool FContainerIe::decodeFContainerIe(MsgBuffer &buffer, FContainerIeData &data, Uint16 length)
+{
+ // TODO optimize the length checks
+
+ Uint16 ieBoundary = buffer.getCurrentIndex() + length;
+ buffer.skipBits(4);
+ if (buffer.getCurrentIndex() > ieBoundary)
+ {
+ errorStream.add((char *)"Attempt to read beyond IE boundary: \n");
+ return false;
+ }
+
+ data.containerType = buffer.readBits(4);
+ // confirm that we are not reading beyond the IE boundary
+ if (buffer.getCurrentIndex() > ieBoundary)
+ {
+ errorStream.add((char *)"Attempt to read beyond IE boundary: containerType\n");
+ return false;
+ }
+ if (!(data.containerType<= 4))
+ {
+ errorStream.add((char *)"Data validation failure : containerType\n");
+ return false; //TODO need to add validations
+ }
+
+ buffer.readUint8(data.fContainerField);
+ if (buffer.getCurrentIndex() > ieBoundary)
+ {
+ errorStream.add((char *)"Attempt to read beyond IE boundary: fContainerField\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 FContainerIe\n");
+ return false;
+ }
+}
+void FContainerIe::displayFContainerIe_v(FContainerIeData const &data, Debug &stream)
+{
+ stream.incrIndent();
+ stream.add((char *)"FContainerIeData:");
+ stream.incrIndent();
+ stream.endOfLine();
+
+ stream.add( (char *)"containerType: ");
+ stream.add((Uint8)data.containerType);
+ stream.endOfLine();
+
+ stream.add((char *)"fContainerField: ");
+ stream.add(data.fContainerField);
+ stream.endOfLine();
+ stream.decrIndent();
+ stream.decrIndent();
+}