MME2 changes - Propped commits from openmme/paging branch. Added scripts
for code gen
Change-Id: Ie55032217232214ac8544ca76ea34335205329e4
diff --git a/src/gtpV2Codec/ieClasses/meiIe.cpp b/src/gtpV2Codec/ieClasses/meiIe.cpp
new file mode 100644
index 0000000..9fb328a
--- /dev/null
+++ b/src/gtpV2Codec/ieClasses/meiIe.cpp
@@ -0,0 +1,88 @@
+/*
+ * 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 "meiIe.h"
+#include "dataTypeCodecUtils.h"
+
+MeiIe::MeiIe()
+{
+ ieType = 75;
+ // TODO
+
+}
+
+MeiIe::~MeiIe() {
+ // TODO Auto-generated destructor stub
+}
+
+bool MeiIe::encodeMeiIe(MsgBuffer &buffer, MeiIeData const &data)
+{
+ if (!(data.imeiSvValue.length ==15 || data.imeiSvValue.length == 16))
+ {
+ errorStream.add((char *)"Data validation failure: imeiSvValue\n");
+ return false;
+ }
+ if (!(DataTypeCodecUtils::encodeDigitRegister(buffer, data.imeiSvValue)))
+ {
+ errorStream.add((char *)"Encoding of imeiSvValue failed\n");
+ return false;
+ }
+
+ return true;
+}
+
+bool MeiIe::decodeMeiIe(MsgBuffer &buffer, MeiIeData &data, Uint16 length)
+{
+ // TODO optimize the length checks
+
+ Uint16 ieBoundary = buffer.getCurrentIndex() + length;
+
+ Uint16 lengthLeft = length;
+ lengthLeft = ieBoundary - buffer.getCurrentIndex();
+ if (!(DataTypeCodecUtils::decodeDigitRegister(buffer, data.imeiSvValue, lengthLeft)))
+ {
+ errorStream.add((char *)"Failed to decode: imeiSvValue\n");
+ return false;
+ }
+ if (!(data.imeiSvValue.length ==15 || data.imeiSvValue.length == 16))
+ {
+ errorStream.add((char *)"Data validation failure : imeiSvValue\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 MeiIe\n");
+ return false;
+ }
+}
+void MeiIe::displayMeiIe_v(MeiIeData const &data, Debug &stream)
+{
+ stream.incrIndent();
+ stream.add((char *)"MeiIeData:");
+ stream.incrIndent();
+ stream.endOfLine();
+
+ stream.add((char *)"imeiSvValue:");
+ stream.endOfLine();
+ DataTypeCodecUtils::displayDigitRegister_v(data.imeiSvValue, stream);
+ stream.decrIndent();
+ stream.decrIndent();
+}