MME2 changes - Propped commits from openmme/paging branch. Added scripts
for code gen
Change-Id: Ie55032217232214ac8544ca76ea34335205329e4
diff --git a/src/gtpV2Codec/ieClasses/delayValueIe.cpp b/src/gtpV2Codec/ieClasses/delayValueIe.cpp
new file mode 100644
index 0000000..a6504d4
--- /dev/null
+++ b/src/gtpV2Codec/ieClasses/delayValueIe.cpp
@@ -0,0 +1,87 @@
+/*
+ * 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 "delayValueIe.h"
+#include "dataTypeCodecUtils.h"
+
+DelayValueIe::DelayValueIe()
+{
+ ieType = 92;
+ // TODO
+
+}
+
+DelayValueIe::~DelayValueIe() {
+ // TODO Auto-generated destructor stub
+}
+
+bool DelayValueIe::encodeDelayValueIe(MsgBuffer &buffer, DelayValueIeData const &data)
+{
+ if (!(data.delayValue% 50 == 0 || data.delayValue== 0))
+ {
+ errorStream.add((char *)"Data validation failure: delayValue\n");
+ return false;
+ }
+ if (!(buffer.writeUint8(data.delayValue)))
+ {
+ errorStream.add((char *)"Encoding of delayValue failed\n");
+ return false;
+ }
+
+ return true;
+}
+
+bool DelayValueIe::decodeDelayValueIe(MsgBuffer &buffer, DelayValueIeData &data, Uint16 length)
+{
+ // TODO optimize the length checks
+
+ Uint16 ieBoundary = buffer.getCurrentIndex() + length;
+
+ buffer.readUint8(data.delayValue);
+ if (buffer.getCurrentIndex() > ieBoundary)
+ {
+ errorStream.add((char *)"Attempt to read beyond IE boundary: delayValue\n");
+ return false;
+ }
+ if (!(data.delayValue% 50 == 0 || data.delayValue== 0))
+ {
+ errorStream.add((char *)"Data validation failure : delayValue\n");
+ return false; //TODO need to add validations
+ }
+
+ // 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 DelayValueIe\n");
+ return false;
+ }
+}
+void DelayValueIe::displayDelayValueIe_v(DelayValueIeData const &data, Debug &stream)
+{
+ stream.incrIndent();
+ stream.add((char *)"DelayValueIeData:");
+ stream.incrIndent();
+ stream.endOfLine();
+
+ stream.add((char *)"delayValue: ");
+ stream.add(data.delayValue);
+ stream.endOfLine();
+ stream.decrIndent();
+ stream.decrIndent();
+}