#include "Module_OcppBackend.h"
#include "define.h"

//ChargePointMaxProfile
#define ChargePointMaxProfile_JSON     	"/Storage/OCPP_PH/ChargePointMaxProfile.json"

//TxDefaultProfile
#define TxDefaultProfile_0_JSON			"/Storage/OCPP_PH/TxDefaultProfile_0.json"

struct SysConfigAndInfo				*ShmSysConfigAndInfo;
struct StatusCodeData 				*ShmStatusCodeData;
struct PsuData 						*ShmPsuData ;
struct OCPP16Data 					*ShmOCPP16Data;
struct OCPP16Data 					*ShmOCPP16DataPH;

//ConfigurationMaxKeys
#define GetConfigurationMaxKeysNUM 	_GetConfiguration_CNT

pthread_mutex_t lock_send 			= PTHREAD_MUTEX_INITIALIZER;
char queuedata[QUEUE_MESSAGE_LENGTH]				= {0};

//=================================
//  StatusNotification cycle
//=================================
static int server_cycle_Status 		= 120;

//===============================
// Configuration: unknown key
//===============================
static char unknownkey[10][36]		= {0};
static int UnknownKeynum 			= 0;

//===============================
// Gun Total  Numbers
//===============================
static ParsingRatedCur modelnameInfo	= {0};
static int gunTotalNumber				= 0;
static uint8_t gunType[4] 				= {0};

//===============================
// Local List Version
//===============================
static int locallistVersion=0;
static char idTagAuthorization[32]	= {0};

//===============================
// OCPP sign variable
//===============================
static int server_sign				= FALSE;
int server_pending 					= FALSE;
static int BootNotificationInterval = 0;

//===============================
// OCPP auth variable
//===============================
static int authorizeRetryTimes 		= 0;  //number of  Retry times

//===============================
// OCPP other variables
//===============================
static int HeartBeatWaitTime 						= 10;
static int FirstHeartBeat 							= 0;
static int FirmwareStatusNotificationStatus 		= FIRMWARE_STATUS_IDLE;  // Idle
static int DiagnosticsStatusNotificationStatus 		= DIAGNOSTIC_STATUS_IDLE; // Idle
static char CurrentChargingProfileScheduleStr[30]	= {0};
static float periousPeriodicPowerConsumption[CONNECTOR_QUANTITY]      = {0};
static float periousClockPowerConsumption[CONNECTOR_QUANTITY]         = {0};

//========================================
// OCPP status/previous related variables
//========================================
static int GunStatusInterval 																= 10;
static uint8_t ChademoPreviousSystemStatus[(CHAdeMO_QUANTITY>0?CHAdeMO_QUANTITY:1)];
static uint8_t CcsPreviousSystemStatus[(CCS_QUANTITY>0?CCS_QUANTITY:1)];
static uint8_t GbPreviousSystemStatus[(GB_QUANTITY>0?GB_QUANTITY:1)];
static uint8_t AcPreviousSystemStatus[(AC_QUANTITY>0?AC_QUANTITY:1)];
static uint8_t DoPreviousSystemStatus[(CONNECTOR_QUANTITY>0?CONNECTOR_QUANTITY:1)];
static uint8_t ChademoPreviousConnectorPlugIn[(CHAdeMO_QUANTITY>0?CHAdeMO_QUANTITY:1)];
static uint8_t CcsPreviousConnectorPlugIn[(CCS_QUANTITY>0?CCS_QUANTITY:1)];
static uint8_t GbPreviousConnectorPlugIn[(GB_QUANTITY>0?GB_QUANTITY:1)];
static uint8_t AcPreviousConnectorPlugIn[(AC_QUANTITY>0?AC_QUANTITY:1)];
static uint8_t DoPreviousConnectorPlugIn[(CONNECTOR_QUANTITY>0?CONNECTOR_QUANTITY:1)];
static int TransactionMessageAttemptsValue 													= 0;
static int TransactionMessageRetryIntervalValue 											= 0;
static int TempMeterValueInterval 															= 0;
static struct OCPPAuthLocalElemet
{
	int listVersionInt;
	char idTagstr[21];
	char parentIdTag[21];
	char expiryDate[36];
	char idTagstatus[16];
}idTagQuery;

//============================================
// OCPP MeterValue request flag
//============================================
uint8_t reqSampleMeter[CONNECTOR_QUANTITY]={0};
uint8_t reqClockAlignMeter[CONNECTOR_QUANTITY]={0};

//============================================
// OCPP HeartBeat Response Not Receive Counts
//============================================
static int HeartBeatWithNOResponse = 0;

//============================================
// OCPP California Pricing Requirements
//============================================
static char dmsVersion[21]	= {0};

extern sqlite3 *db;

int TransactionMessageAttemptsGet(void);
int TransactionMessageRetryIntervalGet(void);
int GetOcppConnStatus(void);
void SetOcppConnStatus(uint8_t status);
int setKeyValue(char *key, char *value);
void OCPP_get_TableAuthlocalAllData(void);
void processUnkownKey(void);

struct InterLock
{
	unsigned char isSentUnplug[CONNECTOR_QUANTITY];
	unsigned char isGetDiagnosticGoing:1;
	unsigned char isUpdateFirmwareGoing:1;
}interLock;

struct ClientTime
{
	struct timespec Heartbeat;
	struct timespec StatusNotification[CONNECTOR_QUANTITY];
	struct timespec StartTransaction;
	struct timespec StopTransaction;
	struct timespec MeterValues[CONNECTOR_QUANTITY];
	struct timespec RemoteStartWait;
	struct timespec TcciQueryDeduct;
	struct timespec CharingProfileRefresh[CONNECTOR_QUANTITY];
}clientTime;

typedef union
{
	//Operations Initiated by Central System
	unsigned char CsMsgValue[CONNECTOR_QUANTITY];
	struct
	{
		//CsMsgValue[0]
		unsigned char StatusNotificationReq:1;			//bit 0,
		unsigned char StatusNotificationConf:1;			//bit 1,
		unsigned char TriggerMeterValue:1;				//bit 2,
		unsigned char TriggerStatusNotificationReq:1;   //bit 3,
		unsigned char isOnCharging:1;                   //bit 4.
		unsigned char :3;	//bit 5~7
	}bits[CONNECTOR_QUANTITY];
}CpinitiateMsg;

CpinitiateMsg cpinitateMsg;

//GetConfiguration Array
struct StructConfigurationKeyItems staticKeyArray[GetConfigurationMaxKeysNUM]={0};
struct StructConfigurationKey staticResponseConfigurationKeyArray[GetConfigurationMaxKeysNUM]={0};
struct StructConfigurationKeyItems staticResponseUnknownKey[10]={0};
struct StructLocalAuthorizationList staticLocalAuthorizationList[1]={0};

static char *ChargePointErrorCodeStr[] = {
    MACROSTR(ConnectorLockFailure),
    MACROSTR(EVCommunicationError),
	MACROSTR(GroundFailure),
	MACROSTR(HighTemperature),
	MACROSTR(InternalError),
	MACROSTR(LocalListConflict),
	MACROSTR(NoError),
	MACROSTR(OtherError),
	MACROSTR(OverCurrentFailure),
	MACROSTR(OverVoltage),
	MACROSTR(PowerMeterFailure),
	MACROSTR(PowerSwitchFailure),
	MACROSTR(ReaderFailure),
	MACROSTR(ResetFailure),
	MACROSTR(UnderVoltage),
	MACROSTR(WeakSignal)
};

static char * ChargePointStatusStr[] = {
    MACROSTR(Available),
    MACROSTR(Preparing),
	MACROSTR(Charging),
	MACROSTR(SuspendedEVSE),
	MACROSTR(SuspendedEV),
	MACROSTR(Finishing),
	MACROSTR(Reserved),
	MACROSTR(Unavailable),
	MACROSTR(Faulted)
};

static char *RegistrationStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Pending),
	MACROSTR(Rejected)
};

static char *AvailabilityTypeStr[] = {
    MACROSTR(Inoperative),
    MACROSTR(Operative)
};

static char *AvailabilityStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Rejected),
	MACROSTR(Scheduled)
};

static char *ConfigurationStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Rejected),
	MACROSTR(RebootRequired),
	MACROSTR(NotSupported)
};

static char *ClearCacheStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Rejected)
};

static char *ChargingProfilePurposeTypeStr[] = {
    MACROSTR(ChargePointMaxProfile),
    MACROSTR(TxDefaultProfile),
	MACROSTR(TxProfile)
};

static char *ChargingProfileStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Rejected),
	MACROSTR(NotSupported)
};

static char *ClearChargingProfileStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Unknown)
};

static char *GetCompositeScheduleStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Rejected)
};


static char *UpdateTypeStr[] = {
    MACROSTR(Differential),
    MACROSTR(Full)
};

static char *UpdateStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Failed),
	MACROSTR(NotSupported),
	MACROSTR(VersionMismatch)
};

static char *RemoteStartStopStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Rejected)

};

static char *ReservationStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Faulted),
	MACROSTR(Occupied),
	MACROSTR(Rejected),
	MACROSTR(Unavailable)
};

static char *ResetTypeStr[] = {
    MACROSTR(Hard),
    MACROSTR(Soft)
};

static char *ResetStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Rejected)
};

static char * DiagnosticsStatusStr[] = {
    MACROSTR(Idle),
    MACROSTR(Uploaded),
	MACROSTR(UploadFailed),
	MACROSTR(Uploading)
};

static char * FirmwareStatusStr[] = {
    MACROSTR(Downloaded),
    MACROSTR(DownloadFailed),
	MACROSTR(Downloading),
	MACROSTR(Idle),
	MACROSTR(InstallationFailed),
	MACROSTR(Installing),
	MACROSTR(Installed)
};

static char * MessageTriggerStr[] = {
    MACROSTR(BootNotification),
    MACROSTR(DiagnosticsStatusNotification),
	MACROSTR(FirmwareStatusNotification),
	MACROSTR(Heartbeat),
	MACROSTR(MeterValues),
	MACROSTR(StatusNotification)
};

static char * TriggerMessageStatusStr[] = {
    MACROSTR(Accepted),
    MACROSTR(Rejected),
	MACROSTR(NotImplemented)
};

static char * UnlockStatusStr[] = {
    MACROSTR(Unlocked),
    MACROSTR(UnlockFailed),
	MACROSTR(NotSupported)
};

#if 0
static char * StopTransactionReasonStr[] = {
    MACROSTR(EmergencyStop),
    MACROSTR(EVDisconnected),
	MACROSTR(HardReset),
	MACROSTR(Local),
	MACROSTR(Other),
	MACROSTR(PowerLoss),
	MACROSTR(Reboot),
	MACROSTR(Remote),
	MACROSTR(SoftReset),
	MACROSTR(UnlockCommand),
	MACROSTR(DeAuthorized)
};
#endif

static char * CancelReservationStatusStr[] = {
    MACROSTR(Accepted),
	MACROSTR(Rejected)
};

static char * ReadingContextStr[] = {
    MACROSTR(Interruption.Begin),
	MACROSTR(Interruption.End),
	MACROSTR(Other),
	MACROSTR(Sample.Clock),
	MACROSTR(Sample.Periodic),
	MACROSTR(Transaction.Begin),
	MACROSTR(Transaction.End),
	MACROSTR(Trigger)
};

static char * ValueFormatStr[] = {
    MACROSTR(Raw),
	MACROSTR(SignedData)
};

static char * MeasurandStr[] = {
    MACROSTR(Current.Export),
	MACROSTR(Current.Import),
	MACROSTR(Current.Offered),
	MACROSTR(Energy.Active.Export.Register),
	MACROSTR(Energy.Active.Import.Register),
	MACROSTR(Energy.Reactive.Export.Register),
	MACROSTR(Energy.Reactive.Import.Register),
	MACROSTR(Energy.Active.Export.Interval),
	MACROSTR(Energy.Active.Import.Interval),
	MACROSTR(Energy.Reactive.Export.Interval),
	MACROSTR(Energy.Reactive.Import.Interval),
	MACROSTR(Frequency),
	MACROSTR(Power.Active.Export),
	MACROSTR(Power.Active.Import),
	MACROSTR(Power.Factor),
	MACROSTR(Power.Offered),
	MACROSTR(Power.Reactive.ExportMACROSTR),
	MACROSTR(Power.Reactive.Import),
	MACROSTR(RPM),
	MACROSTR(SoC),
	MACROSTR(Temperature),
	MACROSTR(Voltage)
};

static char * LocationStr[] = {
    MACROSTR(Body),
	MACROSTR(Cable),
	MACROSTR(EV),
	MACROSTR(Inlet),
	MACROSTR(Outlet)
};

static char * PhaseStr[] = {
    MACROSTR(L1),
	MACROSTR(L2),
	MACROSTR(L3),
	MACROSTR(N),
	MACROSTR(L1-N),
	MACROSTR(L2-N),
	MACROSTR(L3-N),
	MACROSTR(L1-L2),
	MACROSTR(L2-L3),
	MACROSTR(L3-L1)
};

static char * UnitOfMeasureStr[] = {
	MACROSTR(Wh),
	MACROSTR(kWh),
	MACROSTR(varh),
	MACROSTR(kvarh),
	MACROSTR(W),
	MACROSTR(kW),
	MACROSTR(VA),
	MACROSTR(kVA),
	MACROSTR(var),
	MACROSTR(kvar),
	MACROSTR(A),
	MACROSTR(V),
	MACROSTR(Celsius),
	MACROSTR(Fahrenheit),
	MACROSTR(K),
	MACROSTR(Percent)
};
//=========================================
// Save configuration
//=========================================
int runShellCmd(const char*cmd)
{
	int result = FAIL;
	char buf[256];
	FILE *fp;

	fp = popen(cmd, "r");
	if(fp != NULL)
	{
		while(fgets(buf, sizeof(buf), fp) != NULL)
		{
			DEBUG_INFO("%s\n", buf);
		}

		result = PASS;
	}
	pclose(fp);

	return result;
}

int StoreUsrConfigData(struct SysConfigData *UsrData)
{
	int result = PASS;
	int fd,wrd;
	unsigned int i,Chk;
	unsigned char *ptr, *BufTmp;
	int MtdBlockSize = 0x300000;

	Chk=0;
	ptr=(unsigned char *)UsrData;
	if((BufTmp=malloc(MtdBlockSize))!=NULL)
	{
		memset(BufTmp,0,MtdBlockSize);
		memcpy(BufTmp,ptr,sizeof(struct SysConfigData));
		for(i=ARRAY_SIZE(UsrData->CsuBootLoadFwRev);i<MtdBlockSize-4;i++)
			Chk+=*(BufTmp+i);
		memcpy(BufTmp+MtdBlockSize-4, &Chk, 4);

		// Output configuration to file.
		fd = open("/mnt/EvseConfig.bin", O_RDWR|O_CREAT);
		if (fd < 0)
		{
			DEBUG_ERROR("open /mnt/EvseConfig.bin NG\n");

			free(BufTmp);
			return 0;
		}
		wrd=write(fd, BufTmp, MtdBlockSize);
		close(fd);
		if(wrd<MtdBlockSize)
		{
			DEBUG_ERROR("write /mnt/EvseConfig.bin NG\n");

			free(BufTmp);
			return 0;
		}
		DEBUG_INFO("EvseConfig write to file in /mnt OK.\n");


		DEBUG_INFO("Erase /dev/mtd10.\n");
		runShellCmd("flash_erase /dev/mtd10 0 0");
		DEBUG_INFO("Write /dev/mtd10.\n");
		runShellCmd("nandwrite -p /dev/mtd10 /mnt/EvseConfig.bin");

		DEBUG_INFO("Erase /dev/mtd11.\n");
		runShellCmd("flash_erase /dev/mtd11 0 0");
		DEBUG_INFO("Write /dev/mtd11.\n");
		runShellCmd("nandwrite -p /dev/mtd11 /mnt/EvseConfig.bin");


		system("rm -f /mnt/EvseConfig.bin");
		DEBUG_INFO("EvseConfig write to flash OK\n");
	}
	else
	{
		DEBUG_ERROR("alloc BlockSize NG\r\n");
			result = FAIL;
	}

	if(BufTmp!=NULL)
		free(BufTmp);

	return result;
}

//=========================================
// Sqlite3 related function
//=========================================
static int selectSqlCount = 0;
static int callback(void *data, int argc, char **argv, char **azColName){
   int i;
   //printf("%s: ", (const char*)data);
   selectSqlCount = argc;
   for(i = 0; i<argc; i++){
     // printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
   }

   //printf("\n");
   return 0;
}

static int versioncallback(void *data, int argc, char **argv, char **azColName){
   //int i;
   //printf("%s:\n", (const char*)data);
	locallistVersion = (argv[5] ? atoi(argv[5]) : 0);
   DEBUG_INFO("Callback query locallistVersion : %d\n", locallistVersion);
   return 0;
}

static int IdTagcallback(void *data, int columenCount, char **columnValue, char **columnName){

   //printf("%s:\n", (const char*)data);

   //idTag
   sprintf(idTagAuthorization,"%s", columnValue[1] ? columnValue[1] : "NULL");
   sprintf(idTagQuery.idTagstr,"%s", columnValue[1] ? columnValue[1] : "NULL");

   //parentIdTag
   sprintf(idTagQuery.parentIdTag,"%s", columnValue[2] ? columnValue[2] : "NULL");

   //expir_date
   sprintf(idTagQuery.expiryDate,"%s", columnValue[3] ? columnValue[3] : "NULL");

   //status
   sprintf(idTagQuery.idTagstatus,"%s", columnValue[4] ? columnValue[4] : "NULL");

   //version
   if(columenCount > 5)
	   idTagQuery.listVersionInt = atoi(columnValue[5]);

   //DEBUG_INFO("IdTag=%s\n", idTagAuthorization);

   return 0;
}

static int deleteIdTagcallback(void *data, int argc, char **argv, char **azColName)
{
//   localversion = argv[5] ? atoi(argv[5]) : 0;
//   printf("localversion=%d\n", localversion);
	return 0;
}

int sqlite3_exec_callback(void *data, int n_columns, char **col_values, char **col_names)
{
    for (int i = 0; i < n_columns; i++)
    {
    	DEBUG_INFO("%s\t", col_values[i]);
    }
    DEBUG_INFO("\n");

    return 0;
}

int OCPP_cleanLocalCache()
{
	char * sqlcleanLocalList = "delete from ocpp_auth_cache";
	char *errMsg = 0;
	int rc =sqlite3_exec(db, sqlcleanLocalList, 0, 0, &errMsg);

	if (SQLITE_OK != rc)
	{
		DEBUG_INFO("SQL error: %s\n",errMsg);
		return FALSE;
	}

	return TRUE;
}

int OCPP_addLocalCache(char *idTag, char *parentTage, char *expiryDate, char *status)
{
	 int isSuccess = TRUE;
	 int ret = 0;
	 //const char* data = "Callback function called";
	 char sql[300];
	 char zErrMsg[200];

	 memset(sql, 0, 300);
	 memset(zErrMsg, 0, 200);

	 sprintf(sql, "insert or replace into ocpp_auth_cache (idtag, parent_idtag, expir_date, status) " "VALUES ('%s', '%s', '%s', '%s'); ""SELECT * from ocpp_auth_cache", idTag, parentTage, expiryDate, status);

	 //* Execute SQL statement */
	 ret = sqlite3_exec(db, sql, callback, 0, (char **)&zErrMsg);
	 if( ret != SQLITE_OK )
	 {
		 DEBUG_INFO("SQL error: %s\n", zErrMsg);
		 isSuccess = FALSE;
	 }

	 return isSuccess;
}

void OCPP_getIdTagFromLocalCache(char idTag[])
{
    int rc = 0;

    char sql[100];
    char zErrMsg[100];

    memset(sql, 0, 100);
    memset(zErrMsg, 0, 100);
    memset(idTagAuthorization, 0, ARRAY_SIZE(idTagAuthorization));
    memset(&idTagQuery, 0, sizeof(idTagQuery));

    sprintf(sql,"select * from ocpp_auth_cache where idtag='%s'", idTag);

    /* Execute SQL statement */
    rc = sqlite3_exec(db, sql, IdTagcallback, 0, (char **)&zErrMsg);

    if( rc != SQLITE_OK )
    {
    	DEBUG_INFO("SQL error: %s\n", zErrMsg);
    }
}

void OCPP_getListVerion()
{
    int rc = 0;
   // const char* data = "Callback function called";
    char sql[100];
    char zErrMsg[100];

    memset(sql, 0, 100);
    memset(zErrMsg, 0, 100);

    strcpy(sql, "select * from ocpp_auth_local order by version desc, idx desc limit 1");

    /* Execute SQL statement */
    rc = sqlite3_exec(db, sql, versioncallback, 0, (char **)&zErrMsg);

    if( rc != SQLITE_OK )
    {
    	DEBUG_INFO("SQL error: %s\n", zErrMsg);
    }
}

void OCPP_get_TableAuthlocalAllData(void)
{
    int rc = 0;
    char sql[100];
    char zErrMsg[100];

    memset(sql, 0, 100);
    memset(zErrMsg, 0, 100);

    sprintf(sql,"select * from ocpp_auth_local ");

    /* Execute SQL statement */

    rc = sqlite3_exec(db, sql, &sqlite3_exec_callback, 0,(char **)&zErrMsg);

    if( rc != SQLITE_OK )
    {
    	DEBUG_INFO("SQL error: %s\n", zErrMsg);
    }

    //return ver;
}

int OCPP_cleanLocalList()
{
	char * sqlcleanLocalList = "delete from ocpp_auth_local";
	char *errMsg = 0;
	int rc =sqlite3_exec(db, sqlcleanLocalList, 0, 0, &errMsg);

	if (SQLITE_OK != rc)
	{
		DEBUG_INFO("%s\n",errMsg);
		return FALSE;
	}

	return TRUE;
}

int OCPP_addLocalList(int version, char *idTag, char *parentTage, char *expiryDate, char *status)
{
	 int isSuccess = FALSE;
	 int ret = 0;
	 //const char* data = "Callback function called";
	 char sql[300];
	 char zErrMsg[200];

	 memset(sql, 0, 300);
	 memset(zErrMsg, 0, 200);

	 sprintf(sql,"insert or replace into ocpp_auth_local (idtag, parent_idtag, expir_date, status, version) " "VALUES ('%s', '%s', '%s', '%s', %d ); ""SELECT * from ocpp_auth_local", idTag, parentTage, expiryDate, status, version);

	 //* Execute SQL statement */
	 ret = sqlite3_exec(db, sql, callback, 0, (char **)&zErrMsg);
	 if( ret != SQLITE_OK )
	 {
		 DEBUG_INFO("SQL error: %s\n", zErrMsg);
		 return isSuccess;
	 }

	 memset(sql, 0, 300);
	 sprintf(sql, "UPDATE ocpp_auth_local SET version=%d",version);
	 ret = sqlite3_exec(db, sql, NULL, NULL, (char **)&zErrMsg);
	 if( ret != SQLITE_OK )
	 {
		 DEBUG_INFO("SQL error: %s\n", zErrMsg);
		 return isSuccess;
	 }

	 isSuccess = TRUE;
	 return isSuccess;
}

void OCPP_getIdTagFromLocalList(char idTag[])
{
    int rc = 0;
   // const char* data = "Callback function called";
    char sql[100];
    char zErrMsg[100];

    memset(sql, 0, 100);
    memset(zErrMsg, 0, 100);
    memset(idTagAuthorization, 0, ARRAY_SIZE(idTagAuthorization));
    memset(&idTagQuery, 0, sizeof(idTagQuery));

    //DEBUG_INFO("look up card: %s in ocpp_auth_local table", idTag);
    sprintf(sql,"select * from ocpp_auth_local where idtag='%s'", idTag);

    /* Execute SQL statement */
    rc = sqlite3_exec(db, sql, IdTagcallback, 0, (char **)&zErrMsg);

    if( rc != SQLITE_OK )
    {
    	DEBUG_INFO("SQL error: %s\n", zErrMsg);
    }

   //return ver;
}

void OCPP_deleteIdTagFromLocalList(char idTag[])
{
	//int ver = 0;
	//int isSuccess = FALSE;
	int rc = 0;
	char sql[100];
	char zErrMsg[100];

	memset(sql, 0, 100);
	memset(zErrMsg, 0, 100);
	sprintf(sql,"DELETE from ocpp_auth_local where idtag='%s'; SELECT * from ocpp_auth_local;", idTag);

	//* Execute SQL statement */
	rc = sqlite3_exec(db, sql, deleteIdTagcallback, 0,(char **)&zErrMsg);
	if( rc != SQLITE_OK )
	{
		DEBUG_INFO("SQL error: %s\n", zErrMsg);
	}
}

int getCurrentYear()
{
	int result = 0;
	time_t CurrentTime;
	struct tm *tm;

	CurrentTime = time(NULL);
	tm=localtime(&CurrentTime);
	result = (tm->tm_year + 1900);

	return result;
}

int OCPP_insert_transaction_msg(uint8_t isStartTransaction, char *transactionMsg)
{
	int result = PASS;
	char* errMsg = NULL;
	char sqlStr[8192];

	sprintf(sqlStr, "insert into ocpp_transaction_record(occurDatetime, message_type, message_content) values(CURRENT_TIMESTAMP, '%s', '%s');", (isStartTransaction?"startTransaction":"stopTransaction"), transactionMsg);

	if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
	{
		result = FAIL;
		DEBUG_WARN( "Insert local transaction record error message: %s\n", errMsg);
	}

	sprintf(sqlStr, "delete from ocpp_transaction_record where (idx < (select idx from ocpp_transaction_record order by idx desc limit 1)-2000) and (occurDatetime < '%04d-01-01 00:00:00');", (getCurrentYear()-3));
	if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
	{
		result = FAIL;
		DEBUG_WARN( "delete local transaction record error message: %s\n", errMsg);
	}

	return result;
}

int OCPP_insert_deduct_info(int txId, char *creditNo, uint8_t deductResult, uint8_t isDonateInvoice, double amount, char *vemData, char *ROC, char *RRN, char *approvalNo, char *storeId)
{
	int result = PASS;
	char* errMsg = NULL;
	char sqlStr[8192];

	sprintf(sqlStr, "insert or replace into report_deduct_info(txId, creditNo, deductResult, isDonateInvoice, amount, vemData, ROC, RRN, approvalNo, storeId, isUploaded) values('%d', '%s', '%d', '%d', '%.2f', '%s', '%s', '%s', '%s', '%s', '0');",
			txId, creditNo, deductResult, isDonateInvoice, amount, vemData, ROC, RRN, approvalNo, storeId);

	if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
	{
		result = FAIL;
		DEBUG_WARN( "Insert local report_deduct_info error message: %s\n", errMsg);
	}

	sprintf(sqlStr, "delete from report_deduct_info where (idx < (select idx from report_deduct_info order by idx desc limit 1)-5000);");
	if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
	{
		result = FAIL;
		DEBUG_WARN( "delete local report_deduct_info error message: %s\n", errMsg);
	}

	return result;
}

int OCPP_update_deduct_info(int txId, char *creditNo)
{
	int result = PASS;
	char* errMsg = NULL;
	char sqlStr[8192];

	sprintf(sqlStr, "update report_deduct_info set isUploaded='1' where txId='%d' and creditNo='%s';", txId, creditNo);

	if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
	{
		result = FAIL;
		DEBUG_WARN( "Update local report_deduct_info error message: %s\n", errMsg);
	}

	return result;
}

int queryDeductCallBack(void *data, int columenCount, char **columnValue, char **columnName)
{
	sprintf((char*)ShmOCPP16DataPH->DataTransfer[0].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor);
	sprintf((char*)ShmOCPP16DataPH->DataTransfer[0].MessageId,"%s","ID_CreditDeductResult");
	sprintf((char*)ShmOCPP16DataPH->DataTransfer[0].Data, "{\\\"txId\\\":%d,\\\"creditNo\\\":\\\"%s\\\",\\\"deductResult\\\":%s,\\\"isDonateInvoice\\\":%s,\\\"amount\\\":%s,\\\"approvalNo\\\":\\\"%s\\\"}",
			atoi(columnValue[1]),
			columnValue[2],
			atoi(columnValue[3])==1?"true":"false",
			atoi(columnValue[4])==1?"true":"false",
			columnValue[5],
			columnValue[9]);

	ShmOCPP16DataPH->CsMsg.bits[0].DataTransferReq = 1;

	return 0;
}

void OCPP_query_deduct_info()
{
    int rc = 0;

    char sql[100];
    char zErrMsg[100];

    sprintf(sql,"select * from report_deduct_info where isUploaded='0' order by idx limit 1");

    /* Execute SQL statement */
    rc = sqlite3_exec(db, sql, queryDeductCallBack, 0, (char **)&zErrMsg);

    if( rc != SQLITE_OK )
    {
    	DEBUG_INFO("SQL error: %s\n", zErrMsg);
    }
}

void reportReaderStatus(int gun_index)
{
	struct timeval tmnow;
	struct tm *tm;
	char buf[28];//, usec_buf[6];
	gettimeofday(&tmnow, NULL);

	time_t t;
	t = time(NULL);
	/*UTC time and date*/
	tm = gmtime(&t);
	strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm);
	#if 0 // remove temporally
		strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
		strcat(buf,".");
		sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
		strcat(buf,usec_buf);
	#endif
	sprintf((char*)ShmOCPP16DataPH->DataTransfer[0].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor);
	sprintf((char*)ShmOCPP16DataPH->DataTransfer[0].MessageId,"%s","ID_ReaderStatus");
	sprintf((char*)ShmOCPP16DataPH->DataTransfer[0].Data, "{\\\"connectorId\\\":%d,\\\"readerStatus\\\":%d,\\\"timestamp\\\":\\\"%s\\\",\\\"SerialNo\\\":\\\"%s\\\",\\\"creditNo\\\":\\\"%s\\\",\\\"VEMData\\\":\\\"%s\\\"}",
			(gun_index+1),
			ShmOCPP16DataPH->TcciCustomData.ReaderStatus[gun_index].readerStatus,
			buf,
			ShmOCPP16DataPH->TcciCustomData.SerialNo[gun_index],
			ShmOCPP16DataPH->TcciCustomData.ReaderStatus[gun_index].creditNo,
			ShmOCPP16DataPH->TcciCustomData.VEMData[gun_index]);

	ShmOCPP16DataPH->CsMsg.bits[0].DataTransferReq = 1;
}

//==========================================
// Check time passed since today
//==========================================
long long DiffTimebWithNow(struct timeb ST)
{
	//return milli-second
	struct timeb ET;
	long long StartTime,StopTime;

	ftime(&ET);
	StartTime=(long long)ST.time;
	StopTime=(long long)ET.time;
	return ((StopTime-StartTime)*1000) + (ET.millitm-ST.millitm);
}

int getTimePassSinceToday(uint8_t gun_index)
{
	int result = -1;
	static time_t lastTime[4];
	time_t t;
	struct tm *tmStartToday;
	struct timeb tbStartToday;

	t=time(NULL);
	if(difftime(t, lastTime[gun_index])>0)
	{
		tmStartToday=localtime(&t);

		tmStartToday->tm_hour = 0;
		tmStartToday->tm_min = 0;
		tmStartToday->tm_sec = 0;

		tbStartToday.time = mktime(tmStartToday);
		tbStartToday.millitm = 0;
		result = DiffTimebWithNow(tbStartToday)/1000;
		lastTime[gun_index] = t;
	}

	return result;
}

void getNowDatetime(uint8_t *data)
{
	time_t t = time(NULL);
	struct tm tm = *localtime(&t);

	sprintf((char*)data, "%04d-%02d-%02dT%02d:%02d:%02dZ", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec);
}

int syncDateTimeRTC(uint8_t *data)
{
	struct ParsingResult
	{
		int result;
		int scanedElement;
		int year;
		int month;
		int mday;
		int hour;
		int min;
		int sec;
		int tz_hour;
		int tz_min;
		float minSec;
	}result;
	struct tm tmOrg;
	struct tm *tmTarget;
	struct timeb tbTarget;
	char buf[128];

	memset(&result, 0x00, sizeof(struct ParsingResult));
	result.result = PASS;

	if(strstr((char*)data, ".") != NULL)
	{
		// Original data with mini second
		if(strstr((char*)data, "Z") != NULL)
		{
			// Original data with Z
			result.scanedElement = sscanf((char*)data, "%d-%d-%dT%d:%d:%d.%fZ",
														&result.year,
														&result.month,
														&result.mday,
														&result.hour,
														&result.min,
														&result.sec,
														&result.minSec);
		}
		else
		{
			// Original data without Z
			result.scanedElement = sscanf((char*)data, "%d-%d-%dT%d:%d:%d.%f%d:%d",
														&result.year,
														&result.month,
														&result.mday,
														&result.hour,
														&result.min,
														&result.sec,
														&result.minSec,
														&result.tz_hour,
														&result.tz_min);
		}
	}
	else
	{
		// Original data without mini second
		if(strstr((char*)data, "Z") != NULL)
		{
			// Original data with Z
			result.scanedElement = sscanf((char*)data, "%d-%d-%dT%d:%d:%dZ",
														&result.year,
														&result.month,
														&result.mday,
														&result.hour,
														&result.min,
														&result.sec);
		}
		else
		{
			// Original data without Z
			result.scanedElement = sscanf((char*)data, "%d-%d-%dT%d:%d:%d%d:%d",
														&result.year,
														&result.month,
														&result.mday,
														&result.hour,
														&result.min,
														&result.sec,
														&result.tz_hour,
														&result.tz_min);
		}
	}

	tmOrg.tm_year = result.year - 1900;
	tmOrg.tm_mon = result.month - 1;
	tmOrg.tm_mday = result.mday;
	tmOrg.tm_hour = result.hour;
	tmOrg.tm_min = result.min;
	tmOrg.tm_sec = result.sec;
	tmOrg.tm_gmtoff = 0;
	tbTarget.time = mktime(&tmOrg);
	tbTarget.timezone = 0;

	tbTarget.time -= (result.tz_hour*3600) + (result.tz_min*60*(result.tz_hour>=0?1:-1));
	tmTarget = gmtime(&tbTarget.time);

    sprintf(buf, "date -s '%04d-%02d-%02d %02d:%02d:%02d'", (tmTarget->tm_year+1900), (tmTarget->tm_mon+1), tmTarget->tm_mday, tmTarget->tm_hour, tmTarget->tm_min, tmTarget->tm_sec);
    //DEBUG_INFO("  org date time: %s\n", data);
    //DEBUG_INFO("parse date time: %s\n", buf);

	system(buf);
	system("/sbin/hwclock -w --systohc");

	if(result.scanedElement < 6)
		result.result = FAIL;

	return result.result;
}

//==========================================
// GetCompositeSchedule logic related function
//==========================================
int DiffTimebSec(struct timeb ST, struct timeb ET)
{
	//return milli-second
	unsigned int StartTime,StopTime;

	StartTime=(unsigned int)ST.time;
	StopTime=(unsigned int)ET.time;
	return (StopTime-StartTime);
}

int DiffTimebWithNowSec(struct timeb ST)
{
	//return milli-second
	struct timeb ET;
	unsigned int StartTime,StopTime;

	ftime(&ET);
	StartTime=(unsigned int)ST.time;
	StopTime=(unsigned int)ET.time;
	return (StopTime-StartTime);
}

int getStartStop(uint8_t *start, uint8_t *stop)
{
	struct ParsingResult
	{
		int result;
		int scanedElement;
		int year;
		int month;
		int mday;
		int hour;
		int min;
		int sec;
		int tz_hour;
		int tz_min;
		float minSec;
	};

	struct ParsingResult parseStart;
	struct ParsingResult parseStop;

	int result = -1;
	struct tm tmStart;
	struct timeb tbStart;
	struct tm tmStop;
	struct timeb tbStop;

	memset(&parseStart, 0x00, sizeof(struct ParsingResult));
	memset(&parseStop, 0x00, sizeof(struct ParsingResult));

	// Scan start & stop date time
	if(strstr((char*)start, ".") != NULL)
	{
		// Original data with mini second
		if(strstr((char*)start, "Z") != NULL)
		{
			// Original data with Z
			parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%fZ",
														&parseStart.year,
														&parseStart.month,
														&parseStart.mday,
														&parseStart.hour,
														&parseStart.min,
														&parseStart.sec,
														&parseStart.minSec);
		}
		else
		{
			// Original data without Z
			parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%f%d:%d",
														&parseStart.year,
														&parseStart.month,
														&parseStart.mday,
														&parseStart.hour,
														&parseStart.min,
														&parseStart.sec,
														&parseStart.minSec,
														&parseStart.tz_hour,
														&parseStart.tz_min);
		}
	}
	else
	{
		// Original data without mini second
		if(strstr((char*)start, "Z") != NULL)
		{
			// Original data with Z
			parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%dZ",
														&parseStart.year,
														&parseStart.month,
														&parseStart.mday,
														&parseStart.hour,
														&parseStart.min,
														&parseStart.sec);
		}
		else
		{
			// Original data without Z
			parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d%d:%d",
														&parseStart.year,
														&parseStart.month,
														&parseStart.mday,
														&parseStart.hour,
														&parseStart.min,
														&parseStart.sec,
														&parseStart.tz_hour,
														&parseStart.tz_min);
		}
	}

	if(strstr((char*)stop, ".") != NULL)
	{
		// Original data with mini second
		if(strstr((char*)stop, "Z") != NULL)
		{
			// Original data with Z
			parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d.%fZ",
														&parseStop.year,
														&parseStop.month,
														&parseStop.mday,
														&parseStop.hour,
														&parseStop.min,
														&parseStop.sec,
														&parseStop.minSec);
		}
		else
		{
			// Original data without Z
			parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d.%f%d:%d",
														&parseStop.year,
														&parseStop.month,
														&parseStop.mday,
														&parseStop.hour,
														&parseStop.min,
														&parseStop.sec,
														&parseStop.minSec,
														&parseStop.tz_hour,
														&parseStop.tz_min);
		}
	}
	else
	{
		// Original data without mini second
		if(strstr((char*)stop, "Z") != NULL)
		{
			// Original data with Z
			parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%dZ",
														&parseStop.year,
														&parseStop.month,
														&parseStop.mday,
														&parseStop.hour,
														&parseStop.min,
														&parseStop.sec);
		}
		else
		{
			// Original data without Z
			parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d%d:%d",
														&parseStop.year,
														&parseStop.month,
														&parseStop.mday,
														&parseStop.hour,
														&parseStop.min,
														&parseStop.sec,
														&parseStop.tz_hour,
														&parseStop.tz_min);
		}
	}

	// Calculate date time difference
	if((parseStart.scanedElement >=6) &&
	   (parseStop.scanedElement >=6))
	{
		//DEBUG_INFO("Start: %04d-%02d-%02d %02d:%02d:%02d(%02d:%02d)\n", parseStart.year, parseStart.month, parseStart.mday, parseStart.hour, parseStart.min, parseStart.sec, parseStart.tz_hour, parseStart.tz_min);
		//DEBUG_INFO("Stop: %04d-%02d-%02d %02d:%02d:%02d(%02d:%02d)\n", parseStop.year, parseStop.month, parseStop.mday, parseStop.hour, parseStop.min, parseStop.sec, parseStop.tz_hour, parseStop.tz_min);

		tmStart.tm_year = parseStart.year - 1900;
		tmStart.tm_mon = parseStart.month - 1;
		tmStart.tm_mday = parseStart.mday;
		tmStart.tm_hour = parseStart.hour;
		tmStart.tm_min = parseStart.min;
		tmStart.tm_sec = parseStart.sec;
		tmStart.tm_gmtoff = 0;
		tbStart.time = mktime(&tmStart);
		tbStart.timezone = 0;
		tbStart.time -= (parseStart.tz_hour*3600) + (parseStart.tz_min*60*(parseStart.tz_hour>=0?1:-1));

		tmStop.tm_year = parseStop.year - 1900;
		tmStop.tm_mon = parseStop.month - 1;
		tmStop.tm_mday = parseStop.mday;
		tmStop.tm_hour = parseStop.hour;
		tmStop.tm_min = parseStop.min;
		tmStop.tm_sec = parseStop.sec;
		tmStop.tm_gmtoff = 0;
		tbStop.time = mktime(&tmStop);
		tbStop.timezone = 0;
		tbStop.time -= (parseStop.tz_hour*3600) + (parseStop.tz_min*60*(parseStop.tz_hour>=0?1:-1));

		result = DiffTimebSec(tbStart, tbStop);

		//DEBUG_INFO("getStartStop(): %d\n", result);

	}
	else
	{
		DEBUG_WARN("Start or stop date parsing error.\r\n");
	}

	return result;
}

int isOvertNow(uint8_t *start)
{
	int result = NO;
	struct ParsingResult
	{
		int result;
		int scanedElement;
		int year;
		int month;
		int mday;
		int hour;
		int min;
		int sec;
		int tz_hour;
		int tz_min;
		float minSec;
	}parsingResult;

	struct tm tmStart;
	struct timeb tbStart;

	memset(&parsingResult, 0x00, sizeof(struct ParsingResult));

	if(strstr((char*)start, ".") != NULL)
	{
		// Original data with mini second
		if(strstr((char*)start, "Z") != NULL)
		{
			// Original data with Z
			parsingResult.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%fZ",
																&parsingResult.year,
																&parsingResult.month,
																&parsingResult.mday,
																&parsingResult.hour,
																&parsingResult.min,
																&parsingResult.sec,
																&parsingResult.minSec);
		}
		else
		{
			// Original data without Z
			parsingResult.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%f%d:%d",
												&parsingResult.year,
												&parsingResult.month,
												&parsingResult.mday,
												&parsingResult.hour,
												&parsingResult.min,
												&parsingResult.sec,
												&parsingResult.minSec,
												&parsingResult.tz_hour,
												&parsingResult.tz_min);
		}
	}
	else
	{
		// Original data without mini second
		if(strstr((char*)start, "Z") != NULL)
		{
			// Original data with Z
			parsingResult.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%dZ",
												&parsingResult.year,
												&parsingResult.month,
												&parsingResult.mday,
												&parsingResult.hour,
												&parsingResult.min,
												&parsingResult.sec);
		}
		else
		{
			// Original data without Z
			parsingResult.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d%d:%d",
												&parsingResult.year,
												&parsingResult.month,
												&parsingResult.mday,
												&parsingResult.hour,
												&parsingResult.min,
												&parsingResult.sec,
												&parsingResult.tz_hour,
												&parsingResult.tz_min);
		}
	}

	if(parsingResult.scanedElement >= 6)
	{
		tmStart.tm_year = parsingResult.year - 1900;
		tmStart.tm_mon = parsingResult.month - 1;
		tmStart.tm_mday = parsingResult.mday;
		tmStart.tm_hour = parsingResult.hour;
		tmStart.tm_min = parsingResult.min;
		tmStart.tm_sec = parsingResult.sec;
		tmStart.tm_gmtoff = 0;
		tbStart.time = mktime(&tmStart);
		tbStart.timezone = 0;
		tbStart.millitm = 0;

		tbStart.time -= (parsingResult.tz_hour*3600) + (parsingResult.tz_min*60*(parsingResult.tz_hour>=0?1:-1));

		if(DiffTimebWithNowSec(tbStart) <= 0)
			result = NO;
		else
			result = YES;
	}
	else
	{
		DEBUG_WARN("Start date parsing error.\n");
	}

	return result;
}

int getStartSinceRecurring(uint8_t *start, uint8_t *stop, uint8_t isDaily)
{
	struct ParsingResult
	{
		int result;
		int scanedElement;
		int year;
		int month;
		int mday;
		int hour;
		int min;
		int sec;
		int tz_hour;
		int tz_min;
		float minSec;
	};

	struct ParsingResult parseStart;
	struct ParsingResult parseStop;

	int result = -1;
	struct tm tmStart;
	struct timeb tbStart;
	struct tm tmStop;
	struct timeb tbStop;

	memset(&parseStart, 0x00, sizeof(struct ParsingResult));
	memset(&parseStop, 0x00, sizeof(struct ParsingResult));

	// Scan start & stop date time
	if(strstr((char*)start, ".") != NULL)
	{
		// Original data with mini second
		if(strstr((char*)start, "Z") != NULL)
		{
			// Original data with Z
			parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%fZ",
														&parseStart.year,
														&parseStart.month,
														&parseStart.mday,
														&parseStart.hour,
														&parseStart.min,
														&parseStart.sec,
														&parseStart.minSec);
		}
		else
		{
			// Original data without Z
			parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%f%d:%d",
														&parseStart.year,
														&parseStart.month,
														&parseStart.mday,
														&parseStart.hour,
														&parseStart.min,
														&parseStart.sec,
														&parseStart.minSec,
														&parseStart.tz_hour,
														&parseStart.tz_min);
		}
	}
	else
	{
		// Original data without mini second
		if(strstr((char*)start, "Z") != NULL)
		{
			// Original data with Z
			parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%dZ",
														&parseStart.year,
														&parseStart.month,
														&parseStart.mday,
														&parseStart.hour,
														&parseStart.min,
														&parseStart.sec);
		}
		else
		{
			// Original data without Z
			parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d%d:%d",
														&parseStart.year,
														&parseStart.month,
														&parseStart.mday,
														&parseStart.hour,
														&parseStart.min,
														&parseStart.sec,
														&parseStart.tz_hour,
														&parseStart.tz_min);
		}
	}

	if(strstr((char*)stop, ".") != NULL)
	{
		// Original data with mini second
		if(strstr((char*)stop, "Z") != NULL)
		{
			// Original data with Z
			parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d.%fZ",
														&parseStop.year,
														&parseStop.month,
														&parseStop.mday,
														&parseStop.hour,
														&parseStop.min,
														&parseStop.sec,
														&parseStop.minSec);
		}
		else
		{
			// Original data without Z
			parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d.%f%d:%d",
														&parseStop.year,
														&parseStop.month,
														&parseStop.mday,
														&parseStop.hour,
														&parseStop.min,
														&parseStop.sec,
														&parseStop.minSec,
														&parseStop.tz_hour,
														&parseStop.tz_min);
		}
	}
	else
	{
		// Original data without mini second
		if(strstr((char*)stop, "Z") != NULL)
		{
			// Original data with Z
			parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%dZ",
														&parseStop.year,
														&parseStop.month,
														&parseStop.mday,
														&parseStop.hour,
														&parseStop.min,
														&parseStop.sec);
		}
		else
		{
			// Original data without Z
			parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d%d:%d",
														&parseStop.year,
														&parseStop.month,
														&parseStop.mday,
														&parseStop.hour,
														&parseStop.min,
														&parseStop.sec,
														&parseStop.tz_hour,
														&parseStop.tz_min);
		}
	}

	// Calculate date time difference
	if((parseStart.scanedElement >=6) &&
	   (parseStop.scanedElement >=6))
	{
		//DEBUG_INFO("Start: %04d-%02d-%02d %02d:%02d:%02d(%02d:%02d)\n", parseStart.year, parseStart.month, parseStart.mday, parseStart.hour, parseStart.min, parseStart.sec, parseStart.tz_hour, parseStart.tz_min);
		//DEBUG_INFO("Stop: %04d-%02d-%02d %02d:%02d:%02d(%02d:%02d)\n", parseStop.year, parseStop.month, parseStop.mday, parseStop.hour, parseStop.min, parseStop.sec, parseStop.tz_hour, parseStop.tz_min);

		tmStart.tm_year = parseStart.year - 1900;
		tmStart.tm_mon = parseStart.month - 1;
		tmStart.tm_mday = parseStart.mday;
		tmStart.tm_hour = parseStart.hour;
		tmStart.tm_min = parseStart.min;
		tmStart.tm_sec = parseStart.sec;
		tmStart.tm_gmtoff = 0;
		tbStart.time = mktime(&tmStart);
		tbStart.timezone = 0;
		tbStart.time -= (parseStart.tz_hour*3600) + (parseStart.tz_min*60*(parseStart.tz_hour>=0?1:-1));

		tmStop.tm_year = parseStop.year - 1900;
		tmStop.tm_mon = parseStop.month - 1;
		tmStop.tm_mday = parseStop.mday;
		tmStop.tm_hour = parseStop.hour;
		tmStop.tm_min = parseStop.min;
		tmStop.tm_sec = parseStop.sec;
		tmStop.tm_gmtoff = 0;
		tbStop.time = mktime(&tmStop);
		tbStop.timezone = 0;
		tbStop.time -= (parseStop.tz_hour*3600) + (parseStop.tz_min*60*(parseStop.tz_hour>=0?1:-1));

		result = DiffTimebSec(tbStart, tbStop)%(isDaily?86400:604800);

		//DEBUG_INFO("getStartStop(): %d\n", result);

	}
	else
	{
		DEBUG_WARN("Start or stop date parsing error.\r\n");
	}

	return result;
}

void checkChargePointMaxProfile(uint32_t durationReq, struct StructChargingProfile *targetCompositeProfile, uint8_t isUnitA)
{
	FILE *fp;
	char profileFileName[128];
	char *line = NULL;
	size_t len = 0;
	time_t CurrentTime;
	struct tm *tmComposite;

	struct StructChargingProfile maxProfile;
	struct StructChargingProfile compositeProfile;

	uint8_t limitMax=0;
	int compositePeriodIdx = 0;
	//uint8_t isDurationNull = FALSE;

	CurrentTime = time(NULL);
	tmComposite=localtime(&CurrentTime);
	sprintf((char*)compositeProfile.ChargingSchedule.StartSchedule, "%04d-%02d-%02dT%02d:%02d:%02dZ", tmComposite->tm_year+1900, tmComposite->tm_mon+1, tmComposite->tm_mday, tmComposite->tm_hour, tmComposite->tm_min, tmComposite->tm_sec);
	if(isUnitA)
		sprintf((char*)compositeProfile.ChargingSchedule.ChargingRateUnit, "A");
	else
		sprintf((char*)compositeProfile.ChargingSchedule.ChargingRateUnit, "W");
	compositeProfile.ChargingSchedule.Duration = durationReq;
	for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(compositeProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
	{
		compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1;
		compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1;
		compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3;
	}
	compositeProfile.ChargingProfileId = 0;
	compositeProfile.StackLevel = 99 ;
	sprintf((char*)compositeProfile.ChargingProfileKind ,"Absolute");

	maxProfile.ChargingProfileId = -1;

	maxProfile.ChargingSchedule.Duration = -1;

	system("rm -f /tmp/*.json");
	system("cp /Storage/OCPP_PH/*.json /tmp 2>/dev/null");

	// Search max profile
	sprintf(profileFileName, "/tmp/ChargePointMaxProfile.json");
	if((access(profileFileName, F_OK))!=-1)
	{
		fp = fopen(profileFileName, "r");

		while(getline(&line, &len, fp) != -1)
		{
			json_object *obj = NULL;

			obj = json_tokener_parse(line);
			if(is_error(obj))
			{
				DEBUG_ERROR("Parse MaxProfile from file error.\n");
			}
			else
			{
				if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != maxProfile.ChargingProfileId) &&
				   (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) >= maxProfile.StackLevel)
				  )
				{
					if((json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL) &&
					   (json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
					  )
					{
						struct tm tmFrom, tmTo;
						struct timeb tbFrom, tbTo;

						if((sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmFrom.tm_year, &tmFrom.tm_mon, &tmFrom.tm_mday, &tmFrom.tm_hour, &tmFrom.tm_min, &tmFrom.tm_sec) == 6) &&
						   (sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmTo.tm_year, &tmTo.tm_mon, &tmTo.tm_mday, &tmTo.tm_hour, &tmTo.tm_min, &tmTo.tm_sec) == 6))
						{
							tmFrom.tm_year -= 1900;
							tmFrom.tm_mon -= 1;
							tbFrom.time = mktime(&tmFrom);

							tmTo.tm_year -= 1900;
							tmTo.tm_mon -= 1;
							tbTo.time = mktime(&tmTo);

							if((DiffTimebWithNowSec(tbFrom)>=0) && (DiffTimebWithNowSec(tbTo)<=0))
							{
								for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
								{
									maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1;
									maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1;
									maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3;
								}

								if(maxProfile.ChargingProfileId == -1)
									DEBUG_INFO("MaxProfile found.\n");
								else
									DEBUG_INFO("MaxProfile updated.\n");

								// Required item
								maxProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId"));
								maxProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel"));
								sprintf((char*)maxProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind")));

								if(isUnitA)
								{
									sprintf((char*)maxProfile.ChargingSchedule.ChargingRateUnit, "A");

									for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
									{
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																													  3:
																													  json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))/(220*maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")));
									}
								}
								else
								{
									sprintf((char*)maxProfile.ChargingSchedule.ChargingRateUnit, "W");

									for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
									{
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																													  3:
																													  json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))*(220*maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases));
									}
								}


								// Optional item
								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL)
								{
									sprintf((char*)maxProfile.ValidFrom, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")));
								}
								else
								{
									sprintf((char*)maxProfile.ValidFrom, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
								{
									sprintf((char*)maxProfile.ValidTo, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")));
								}
								else
								{
									sprintf((char*)maxProfile.ValidTo, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind") != NULL)
								{
									sprintf((char*)maxProfile.RecurrencyKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind")));
								}
								else
								{
									sprintf((char*)maxProfile.RecurrencyKind, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId") != NULL)
								{
									maxProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId"));
								}
								else
								{
									maxProfile.TransactionId = -1;
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL)
								{
									maxProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration"));
								}
								else
								{
									maxProfile.ChargingSchedule.Duration = 86400;
									//isDurationNull = TRUE;
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL)
								{
									sprintf((char*)maxProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule")));
								}
								else
								{
									sprintf((char*)maxProfile.ChargingSchedule.StartSchedule, "%s", compositeProfile.ChargingSchedule.StartSchedule);
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL)
								{
									maxProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate"));
								}
								else
								{
									maxProfile.ChargingSchedule.MinChargingRate = -1;
								}
							}
						}
					}
					else
					{
						for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
						{
							maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1;
							maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1;
							maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3;
						}

						if(maxProfile.ChargingProfileId == -1)
							DEBUG_INFO("MaxProfile found.\n");
						else
							DEBUG_INFO("MaxProfile updated.\n");

						// Required item
						maxProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId"));
						maxProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel"));
						sprintf((char*)maxProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind")));

						if(isUnitA)
						{
							sprintf((char*)maxProfile.ChargingSchedule.ChargingRateUnit, "A");

							for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
							{
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																											  3:
																											  json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr((char*)json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))/(220*maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")));
							}
						}
						else
						{
							sprintf((char*)maxProfile.ChargingSchedule.ChargingRateUnit, "W");

							for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
							{
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																											  3:
																											  json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr((char*)json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))*(220*maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases));
							}
						}

						// Optional item
						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL)
						{
							sprintf((char*)maxProfile.ValidFrom, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")));
						}
						else
						{
							sprintf((char*)maxProfile.ValidFrom, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
						{
							sprintf((char*)maxProfile.ValidTo, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")));
						}
						else
						{
							sprintf((char*)maxProfile.ValidTo, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind") != NULL)
						{
							sprintf((char*)maxProfile.RecurrencyKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind")));
						}
						else
						{
							sprintf((char*)maxProfile.RecurrencyKind, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId") != NULL)
						{
							maxProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId"));
						}
						else
						{
							maxProfile.TransactionId = -1;
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL)
						{
							maxProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration"));
						}
						else
						{
							maxProfile.ChargingSchedule.Duration = 86400;
							//isDurationNull = TRUE;
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL)
						{
							sprintf((char*)maxProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule")));
						}
						else
						{
							sprintf((char*)maxProfile.ChargingSchedule.StartSchedule, "%s", compositeProfile.ChargingSchedule.StartSchedule);
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL)
						{
							maxProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate"));
						}
						else
						{
							maxProfile.ChargingSchedule.MinChargingRate = -1;
						}
					}
				}
			}
			json_object_put(obj);
		}
		fclose(fp);
		/*
		if(maxProfile.ChargingProfileId !=-1)
		{
			DEBUG_INFO("Profile ID: %d\n", maxProfile.ChargingProfileId);
			DEBUG_INFO("Profile stackLevel: %d\n", maxProfile.StackLevel);
			DEBUG_INFO("Profile TransactionId: %d\n", maxProfile.TransactionId);
			DEBUG_INFO("Profile valid from: %s\n", maxProfile.ValidFrom);
			DEBUG_INFO("Profile valid to: %s\n", maxProfile.ValidTo);
			DEBUG_INFO("Profile ChargingProfileKind: %s\n", maxProfile.ChargingProfileKind);
			DEBUG_INFO("Profile recurrencyKind: %s\n", maxProfile.RecurrencyKind);

			DEBUG_INFO("Profile start schedule: %s\n", maxProfile.ChargingSchedule.StartSchedule);
			DEBUG_INFO("Profile schedule duration: %d\n", maxProfile.ChargingSchedule.Duration);
			DEBUG_INFO("Profile charging rate unit: %s\n", maxProfile.ChargingSchedule.ChargingRateUnit);
			DEBUG_INFO("Profile charging min rate: %f\n", maxProfile.ChargingSchedule.MinChargingRate);

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
				{
					DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod);
					DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit);
					DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases);
				}
			}
		}
		else
			DEBUG_INFO("MaxProfile not found.\n");
		DEBUG_INFO("------------------------------------\n");*/
	}

	if(maxProfile.ChargingProfileId != -1)
	{
		if(strstr((char*)maxProfile.ChargingProfileKind, "Absolute") != NULL)
		{
			if(maxProfile.ChargingSchedule.Duration != -1)
			{
				maxProfile.ChargingSchedule.Duration = ((maxProfile.ChargingSchedule.Duration-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule))<0?
														0:
														(maxProfile.ChargingSchedule.Duration-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule)));
			}

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
				{
					maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule))<0?
																								 0:
																								 (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule)));

					if(idxPeriod > 0)
					{
						if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
						{
							maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
						}
					}
				}
			}
		}
		else if(strstr((char*)maxProfile.ChargingProfileKind, "Relative") != NULL)
		{
			if(maxProfile.ChargingSchedule.Duration != -1)
			{
				maxProfile.ChargingSchedule.Duration = maxProfile.ChargingSchedule.Duration;
			}

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
				{
					maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod;

					if(idxPeriod > 0)
					{
						if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
						{
							maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
						}
					}
				}
			}
		}
		else
		{
			if(strstr((char*)maxProfile.RecurrencyKind, "Weekly") != NULL)
			{
				if(maxProfile.ChargingSchedule.Duration != -1)
				{
					maxProfile.ChargingSchedule.Duration = ((maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE))<0?
															0:
															(maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE)));
				}

				for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
				{
					if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
					{
						maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE))<0?
																									 0:
																									 (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE)));

						if(idxPeriod > 0)
						{
							if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
							{
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
							}
						}
					}
				}
			}
			else
			{
				if((maxProfile.ChargingSchedule.Duration != -1)/* && (isDurationNull)*/)
				{
					maxProfile.ChargingSchedule.Duration = ((maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE))<0?
															0:
															(maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE)));
				}

				for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
				{
					if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
					{
						maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE))<0?
																									 0:
																									 (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE)));

						if(idxPeriod > 0)
						{
							if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
							{
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
							}
						}
					}
				}
			}
		}
/*
		DEBUG_INFO("MaxProfile after align.\n");
		DEBUG_INFO("Profile ID: %d\n", maxProfile.ChargingProfileId);
		DEBUG_INFO("Profile stackLevel: %d\n", maxProfile.StackLevel);
		DEBUG_INFO("Profile TransactionId: %d\n", maxProfile.TransactionId);
		DEBUG_INFO("Profile valid from: %s\n", maxProfile.ValidFrom);
		DEBUG_INFO("Profile valid to: %s\n", maxProfile.ValidTo);
		DEBUG_INFO("Profile ChargingProfileKind: %s\n", maxProfile.ChargingProfileKind);
		DEBUG_INFO("Profile recurrencyKind: %s\n", maxProfile.RecurrencyKind);

		DEBUG_INFO("Profile start schedule: %s\n", compositeProfile->ChargingSchedule.StartSchedule);
		DEBUG_INFO("Profile schedule duration: %d\n", maxProfile.ChargingSchedule.Duration);
		DEBUG_INFO("Profile charging rate unit: %s\n", maxProfile.ChargingSchedule.ChargingRateUnit);
		DEBUG_INFO("Profile charging min rate: %f\n", maxProfile.ChargingSchedule.MinChargingRate);

		for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
		{
			if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
			{
				DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod);
				DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit);
				DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases);
			}
		}
		DEBUG_INFO("------------------------------------\n");*/
	}

	// Find each profile period quantity
	for(int idx=0;idx<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idx++)
	{
		if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idx].Limit != -1)
			limitMax = idx+1;
	}

	if(maxProfile.ChargingProfileId != -1)
	{
		for(int idxMaxPeriod=0;idxMaxPeriod<limitMax;idxMaxPeriod++)
		{
			if((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit != -1) &&
			   (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod < durationReq) &&
			   (maxProfile.ChargingSchedule.Duration > 0))
			{
				if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod)
				{
					memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod],sizeof(struct StructChargingSchedulePeriod));
					compositePeriodIdx++;
				}
				else
				{
					memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod],sizeof(struct StructChargingSchedulePeriod));
				}
			}
		}
	}

	DEBUG_INFO("ChargePointMaxProfile ready.\n");
	DEBUG_INFO("Schedule start: %s\n", compositeProfile.ChargingSchedule.StartSchedule);
	DEBUG_INFO("Schedule duration: %d\n", compositeProfile.ChargingSchedule.Duration);
	DEBUG_INFO("Rate unit: %s\n", compositeProfile.ChargingSchedule.ChargingRateUnit);
	for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(compositeProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
	{
		if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
		{
			compositeProfile.ChargingProfileId = 1;
			DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod);
			DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit);
			DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases);
		}

		if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit == -1)
			compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit =0;

		if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod == -1)
			compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod =0;
	}

	memcpy(targetCompositeProfile, &compositeProfile, sizeof(struct StructChargingProfile));

	if(line)
		free(line);
}

void checkCompositeSchedule(uint8_t connectorId, uint32_t durationReq, struct StructChargingProfile *targetCompositeProfile, uint8_t isUnitA)
{
	FILE *fp;
	char profileFileName[128];
	char *line = NULL;
	size_t len = 0;
	time_t CurrentTime;
	struct tm *tmComposite;

	struct StructChargingProfile maxProfile;
	struct StructChargingProfile defaultTxProfile;
	struct StructChargingProfile txProfile;
	struct StructChargingProfile compositeProfile;

	struct StructChargingSchedulePeriod tmpPeriod;
	uint8_t limitMax=0;
	uint8_t limitDef=0;
	uint8_t limitTx=0;

	int compositePeriodIdx = 0;

	CurrentTime = time(NULL);
	tmComposite=localtime(&CurrentTime);
	sprintf((char*)compositeProfile.ChargingSchedule.StartSchedule, "%04d-%02d-%02dT%02d:%02d:%02dZ", tmComposite->tm_year+1900, tmComposite->tm_mon+1, tmComposite->tm_mday, tmComposite->tm_hour, tmComposite->tm_min, tmComposite->tm_sec);
	if(isUnitA)
		sprintf((char*)compositeProfile.ChargingSchedule.ChargingRateUnit, "A");
	else
		sprintf((char*)compositeProfile.ChargingSchedule.ChargingRateUnit, "W");
	compositeProfile.ChargingSchedule.Duration = durationReq;
	for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(compositeProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
	{
		compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1;
		compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1;
		compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3;
	}
	compositeProfile.ChargingProfileId = 0;
	compositeProfile.StackLevel = 99 ;
	sprintf((char*)compositeProfile.ChargingProfileKind ,"Absolute");

	maxProfile.ChargingProfileId = -1;
	defaultTxProfile.ChargingProfileId = -1;
	txProfile.ChargingProfileId = -1;

	maxProfile.ChargingSchedule.Duration = -1;
	defaultTxProfile.ChargingSchedule.Duration = -1;
	txProfile.ChargingSchedule.Duration = -1;

	system("rm -f /tmp/*.json");
	system("cp /Storage/OCPP_PH/*.json /tmp 2>/dev/null");
	/*
	 * Search valid charging profile
	 */
	//DEBUG_INFO("====================================\n");
	// Search tx profile
	sprintf(profileFileName, "/tmp/TxProfile_%d.json", connectorId);
	if((access(profileFileName, F_OK))!=-1)
	{
		fp = fopen(profileFileName, "r");

		while(getline(&line, &len, fp) != -1)
		{
			json_object *obj = NULL;

			obj = json_tokener_parse(line);
			if(is_error(obj))
			{
				DEBUG_ERROR("Parse txProfile from file error.\n");
			}
			else
			{
				if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != txProfile.ChargingProfileId) &&
				   (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) >= txProfile.StackLevel)
				  )
				{
					if((json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL) &&
					   (json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
					  )
					{
						struct tm tmFrom, tmTo;
						struct timeb tbFrom, tbTo;

						if((sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmFrom.tm_year, &tmFrom.tm_mon, &tmFrom.tm_mday, &tmFrom.tm_hour, &tmFrom.tm_min, &tmFrom.tm_sec) == 6) &&
						   (sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmTo.tm_year, &tmTo.tm_mon, &tmTo.tm_mday, &tmTo.tm_hour, &tmTo.tm_min, &tmTo.tm_sec) == 6))
						{
							tmFrom.tm_year -= 1900;
							tmFrom.tm_mon -= 1;
							tbFrom.time = mktime(&tmFrom);

							tmTo.tm_year -= 1900;
							tmTo.tm_mon -= 1;
							tbTo.time = mktime(&tmTo);

							if((DiffTimebWithNowSec(tbFrom)>=0) && (DiffTimebWithNowSec(tbTo)<=0))
							{
								for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(txProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
								{
									txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1;
									txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1;
									txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3;
								}

								if(txProfile.ChargingProfileId == -1)
									DEBUG_INFO("TxProfile found.\n");
								else
									DEBUG_INFO("TxProfile updated.\n");

								// Required item
								txProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId"));
								txProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel"));
								sprintf((char*)txProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind")));

								if(isUnitA)
								{
									sprintf((char*)txProfile.ChargingSchedule.ChargingRateUnit, "A");

									for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
									{
										txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
										txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																													 3:
																													 json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
										txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))/(220*txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")));
									}
								}
								else
								{
									sprintf((char*)txProfile.ChargingSchedule.ChargingRateUnit, "W");

									for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
									{
										txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
										txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																													 3:
																													 json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
										txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))*(220*txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases));
									}
								}

								// Optional item
								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL)
								{
									sprintf((char*)txProfile.ValidFrom, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")));
								}
								else
								{
									sprintf((char*)txProfile.ValidFrom, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
								{
									sprintf((char*)txProfile.ValidTo, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")));
								}
								else
								{
									sprintf((char*)txProfile.ValidTo, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind") != NULL)
								{
									sprintf((char*)txProfile.RecurrencyKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind")));
								}
								else
								{
									sprintf((char*)txProfile.RecurrencyKind, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId") != NULL)
								{
									txProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId"));
								}
								else
								{
									txProfile.TransactionId = -1;
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL)
								{
									txProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration"));
								}
								else
								{
									txProfile.ChargingSchedule.Duration = 86400;
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL)
								{
									sprintf((char*)txProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule")));
								}
								else
								{
									sprintf((char*)txProfile.ChargingSchedule.StartSchedule, "%s", (!cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging ? compositeProfile.ChargingSchedule.StartSchedule : ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp));
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL)
								{
									txProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate"));
								}
								else
								{
									txProfile.ChargingSchedule.MinChargingRate = -1;
								}
							}
						}
					}
					else
					{
						for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(txProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
						{
							txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1;
							txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1;
							txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3;
						}

						if(txProfile.ChargingProfileId == -1)
							DEBUG_INFO("TxProfile found.\n");
						else
							DEBUG_INFO("TxProfile updated.\n");

						// Required item
						txProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId"));
						txProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel"));
						sprintf((char*)txProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind")));

						if(isUnitA)
						{
							sprintf((char*)txProfile.ChargingSchedule.ChargingRateUnit, "A");

							for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
							{
								txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
								txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																											 3:
																											 json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
								txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))/(220*txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")));
							}
						}
						else
						{
							sprintf((char*)txProfile.ChargingSchedule.ChargingRateUnit, "W");

							for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
							{
								txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
								txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																											 3:
																											 json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
								txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))*(220*txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases));
							}
						}

						// Optional item
						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL)
						{
							sprintf((char*)txProfile.ValidFrom, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")));
						}
						else
						{
							sprintf((char*)txProfile.ValidFrom, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
						{
							sprintf((char*)txProfile.ValidTo, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")));
						}
						else
						{
							sprintf((char*)txProfile.ValidTo, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind") != NULL)
						{
							sprintf((char*)txProfile.RecurrencyKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind")));
						}
						else
						{
							sprintf((char*)txProfile.RecurrencyKind, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId") != NULL)
						{
							txProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId"));
						}
						else
						{
							txProfile.TransactionId = -1;
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL)
						{
							txProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration"));
						}
						else
						{
							txProfile.ChargingSchedule.Duration = 86400;
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL)
						{
							sprintf((char*)txProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule")));
						}
						else
						{
							sprintf((char*)txProfile.ChargingSchedule.StartSchedule, "%s", (!cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging ? compositeProfile.ChargingSchedule.StartSchedule : ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp));
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL)
						{
							txProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate"));
						}
						else
						{
							txProfile.ChargingSchedule.MinChargingRate = -1;
						}
					}
				}
			}
			json_object_put(obj);
		}
		fclose(fp);
/*
		if(txProfile.ChargingProfileId != -1)
		{
			DEBUG_INFO("Profile ID: %d\n", txProfile.ChargingProfileId);
			DEBUG_INFO("Profile stackLevel: %d\n", txProfile.StackLevel);
			DEBUG_INFO("Profile TransactionId: %d\n", txProfile.TransactionId);
			DEBUG_INFO("Profile valid from: %s\n", txProfile.ValidFrom);
			DEBUG_INFO("Profile valid to: %s\n", txProfile.ValidTo);
			DEBUG_INFO("Profile ChargingProfileKind: %s\n", txProfile.ChargingProfileKind);
			DEBUG_INFO("Profile recurrencyKind: %s\n", txProfile.RecurrencyKind);

			DEBUG_INFO("Profile start schedule: %s\n", txProfile.ChargingSchedule.StartSchedule);
			DEBUG_INFO("Profile schedule duration: %d\n", txProfile.ChargingSchedule.Duration);
			DEBUG_INFO("Profile charging rate unit: %s\n", txProfile.ChargingSchedule.ChargingRateUnit);
			DEBUG_INFO("Profile charging min rate: %f\n", txProfile.ChargingSchedule.MinChargingRate);

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(txProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
				{
					DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod);
					DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit);
					DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases);
				}
			}
		}
		else
			DEBUG_INFO("TxProfile not found.\n");*/
	}

	// Search default tx profile
	sprintf(profileFileName, "/tmp/TxDefaultProfile_%d.json", connectorId);
	if((access(profileFileName, F_OK))==-1)
		sprintf(profileFileName, "/tmp/TxDefaultProfile_0.json");

	if((access(profileFileName, F_OK))!=-1)
	{
		fp = fopen(profileFileName, "r");

		while(getline(&line, &len, fp) != -1)
		{
			json_object *obj = NULL;

			obj = json_tokener_parse(line);
			if(is_error(obj))
			{
				DEBUG_ERROR("Parse TxDefaultProfile from file error.\n");
			}
			else
			{
				if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != defaultTxProfile.ChargingProfileId) &&
				   (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) >= defaultTxProfile.StackLevel)
				  )
				{
					if((json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL) &&
					   (json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
					  )
					{
						struct tm tmFrom, tmTo;
						struct timeb tbFrom, tbTo;

						if((sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmFrom.tm_year, &tmFrom.tm_mon, &tmFrom.tm_mday, &tmFrom.tm_hour, &tmFrom.tm_min, &tmFrom.tm_sec) == 6) &&
						   (sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmTo.tm_year, &tmTo.tm_mon, &tmTo.tm_mday, &tmTo.tm_hour, &tmTo.tm_min, &tmTo.tm_sec) == 6))
						{
							tmFrom.tm_year -= 1900;
							tmFrom.tm_mon -= 1;
							tbFrom.time = mktime(&tmFrom);

							tmTo.tm_year -= 1900;
							tmTo.tm_mon -= 1;
							tbTo.time = mktime(&tmTo);

							if((DiffTimebWithNowSec(tbFrom)>=0) && (DiffTimebWithNowSec(tbTo)<=0))
							{
								for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
								{
									defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1;
									defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1;
									defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3;
								}

								if(defaultTxProfile.ChargingProfileId == -1)
									DEBUG_INFO("TxDefaultProfile found.\n");
								else
									DEBUG_INFO("TxDefaultProfile updated.\n");

								// Required item
								defaultTxProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId"));
								defaultTxProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel"));
								sprintf((char*)defaultTxProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind")));

								if(isUnitA)
								{
									sprintf((char*)defaultTxProfile.ChargingSchedule.ChargingRateUnit, "A");

									for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
									{
										defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
										defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																													  	    3:
																															json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
										defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))/(220*defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")));
									}
								}
								else
								{
									sprintf((char*)defaultTxProfile.ChargingSchedule.ChargingRateUnit, "W");

									for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
									{
										defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
										defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																													  	    3:
																															json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
										defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))*(220*defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases));
									}
								}


								// Optional item
								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL)
								{
									sprintf((char*)defaultTxProfile.ValidFrom, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")));
								}
								else
								{
									sprintf((char*)defaultTxProfile.ValidFrom, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
								{
									sprintf((char*)defaultTxProfile.ValidTo, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")));
								}
								else
								{
									sprintf((char*)defaultTxProfile.ValidTo, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind") != NULL)
								{
									sprintf((char*)defaultTxProfile.RecurrencyKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind")));
								}
								else
								{
									sprintf((char*)defaultTxProfile.RecurrencyKind, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId") != NULL)
								{
									defaultTxProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId"));
								}
								else
								{
									defaultTxProfile.TransactionId = -1;
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL)
								{
									defaultTxProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration"));
								}
								else
								{
									defaultTxProfile.ChargingSchedule.Duration = 86400;
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL)
								{
									sprintf((char*)defaultTxProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule")));
								}
								else
								{
									sprintf((char*)defaultTxProfile.ChargingSchedule.StartSchedule, "%s", (!cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging ? compositeProfile.ChargingSchedule.StartSchedule : ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp));
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL)
								{
									defaultTxProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate"));
								}
								else
								{
									defaultTxProfile.ChargingSchedule.MinChargingRate = -1;
								}
							}
						}
					}
					else
					{
						for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
						{
							defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1;
							defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1;
							defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3;
						}

						if(defaultTxProfile.ChargingProfileId == -1)
							DEBUG_INFO("TxDefaultProfile found.\n");
						else
							DEBUG_INFO("TxDefaultProfile updated.\n");

						// Required item
						defaultTxProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId"));
						defaultTxProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel"));
						sprintf((char*)defaultTxProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind")));

						if(isUnitA)
						{
							sprintf((char*)defaultTxProfile.ChargingSchedule.ChargingRateUnit, "A");

							for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
							{
								defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
								defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																													3:
																													json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
								defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))/(220*defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")));
							}
						}
						else
						{
							sprintf((char*)defaultTxProfile.ChargingSchedule.ChargingRateUnit, "W");

							for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
							{
								defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
								defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																													3:
																													json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
								defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))*(220*defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases));
							}
						}

						// Optional item
						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL)
						{
							sprintf((char*)defaultTxProfile.ValidFrom, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")));
						}
						else
						{
							sprintf((char*)defaultTxProfile.ValidFrom, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
						{
							sprintf((char*)defaultTxProfile.ValidTo, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")));
						}
						else
						{
							sprintf((char*)defaultTxProfile.ValidTo, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind") != NULL)
						{
							sprintf((char*)defaultTxProfile.RecurrencyKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind")));
						}
						else
						{
							sprintf((char*)defaultTxProfile.RecurrencyKind, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId") != NULL)
						{
							defaultTxProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId"));
						}
						else
						{
							defaultTxProfile.TransactionId = -1;
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL)
						{
							defaultTxProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration"));
						}
						else
						{
							defaultTxProfile.ChargingSchedule.Duration = 86400;
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL)
						{
							sprintf((char*)defaultTxProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule")));
						}
						else
						{
							sprintf((char*)defaultTxProfile.ChargingSchedule.StartSchedule, "%s", (!cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging ? compositeProfile.ChargingSchedule.StartSchedule : ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp));
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL)
						{
							defaultTxProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate"));
						}
						else
						{
							defaultTxProfile.ChargingSchedule.MinChargingRate = -1;
						}
					}
				}
			}
			json_object_put(obj);
		}
		fclose(fp);
/*
		if(defaultTxProfile.ChargingProfileId != -1)
		{
			DEBUG_INFO("Profile ID: %d\n", defaultTxProfile.ChargingProfileId);
			DEBUG_INFO("Profile stackLevel: %d\n", defaultTxProfile.StackLevel);
			DEBUG_INFO("Profile TransactionId: %d\n", defaultTxProfile.TransactionId);
			DEBUG_INFO("Profile valid from: %s\n", defaultTxProfile.ValidFrom);
			DEBUG_INFO("Profile valid to: %s\n", defaultTxProfile.ValidTo);
			DEBUG_INFO("Profile ChargingProfileKind: %s\n", defaultTxProfile.ChargingProfileKind);
			DEBUG_INFO("Profile recurrencyKind: %s\n", defaultTxProfile.RecurrencyKind);

			DEBUG_INFO("Profile start schedule: %s\n", defaultTxProfile.ChargingSchedule.StartSchedule);
			DEBUG_INFO("Profile schedule duration: %d\n", defaultTxProfile.ChargingSchedule.Duration);
			DEBUG_INFO("Profile charging rate unit: %s\n", defaultTxProfile.ChargingSchedule.ChargingRateUnit);
			DEBUG_INFO("Profile charging min rate: %f\n", defaultTxProfile.ChargingSchedule.MinChargingRate);

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
				{
					DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod);
					DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit);
					DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases);
				}
			}
		}
		else
			DEBUG_INFO("TxDefaultProfile not found.\n");

		DEBUG_INFO("------------------------------------\n");*/
	}

	// Search max profile
	sprintf(profileFileName, "/tmp/ChargePointMaxProfile.json");
	if((access(profileFileName, F_OK))!=-1)
	{
		fp = fopen(profileFileName, "r");

		while(getline(&line, &len, fp) != -1)
		{
			json_object *obj = NULL;

			obj = json_tokener_parse(line);
			if(is_error(obj))
			{
				DEBUG_ERROR("Parse MaxProfile from file error.\n");
			}
			else
			{
				if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != maxProfile.ChargingProfileId) &&
				   (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) >= maxProfile.StackLevel)
				  )
				{
					if((json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL) &&
					   (json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
					  )
					{
						struct tm tmFrom, tmTo;
						struct timeb tbFrom, tbTo;

						if((sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmFrom.tm_year, &tmFrom.tm_mon, &tmFrom.tm_mday, &tmFrom.tm_hour, &tmFrom.tm_min, &tmFrom.tm_sec) == 6) &&
						   (sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmTo.tm_year, &tmTo.tm_mon, &tmTo.tm_mday, &tmTo.tm_hour, &tmTo.tm_min, &tmTo.tm_sec) == 6))
						{
							tmFrom.tm_year -= 1900;
							tmFrom.tm_mon -= 1;
							tbFrom.time = mktime(&tmFrom);

							tmTo.tm_year -= 1900;
							tmTo.tm_mon -= 1;
							tbTo.time = mktime(&tmTo);

							if((DiffTimebWithNowSec(tbFrom)>=0) && (DiffTimebWithNowSec(tbTo)<=0))
							{
								for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
								{
									maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1;
									maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1;
									maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3;
								}

								if(maxProfile.ChargingProfileId == -1)
									DEBUG_INFO("MaxProfile found.\n");
								else
									DEBUG_INFO("MaxProfile updated.\n");

								// Required item
								maxProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId"));
								maxProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel"));
								sprintf((char*)maxProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind")));

								if(isUnitA)
								{
									sprintf((char*)maxProfile.ChargingSchedule.ChargingRateUnit, "A");

									for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
									{
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																													  3:
																													  json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))/(220*maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")));
									}
								}
								else
								{
									sprintf((char*)maxProfile.ChargingSchedule.ChargingRateUnit, "W");

									for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
									{
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																													  3:
																													  json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
										maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr(json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))*(220*maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases));
									}
								}


								// Optional item
								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL)
								{
									sprintf((char*)maxProfile.ValidFrom, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")));
								}
								else
								{
									sprintf((char*)maxProfile.ValidFrom, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
								{
									sprintf((char*)maxProfile.ValidTo, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")));
								}
								else
								{
									sprintf((char*)maxProfile.ValidTo, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind") != NULL)
								{
									sprintf((char*)maxProfile.RecurrencyKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind")));
								}
								else
								{
									sprintf((char*)maxProfile.RecurrencyKind, " ");
								}

								if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId") != NULL)
								{
									maxProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId"));
								}
								else
								{
									maxProfile.TransactionId = -1;
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL)
								{
									maxProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration"));
								}
								else
								{
									maxProfile.ChargingSchedule.Duration = 86400;
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL)
								{
									sprintf((char*)maxProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule")));
								}
								else
								{
									sprintf((char*)maxProfile.ChargingSchedule.StartSchedule, "%s", (!cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging ? compositeProfile.ChargingSchedule.StartSchedule : ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp));
								}

								if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL)
								{
									maxProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate"));
								}
								else
								{
									maxProfile.ChargingSchedule.MinChargingRate = -1;
								}
							}
						}
					}
					else
					{
						for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
						{
							maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1;
							maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1;
							maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3;
						}

						if(maxProfile.ChargingProfileId == -1)
							DEBUG_INFO("MaxProfile found.\n");
						else
							DEBUG_INFO("MaxProfile updated.\n");

						// Required item
						maxProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId"));
						maxProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel"));
						sprintf((char*)maxProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind")));

						if(isUnitA)
						{
							sprintf((char*)maxProfile.ChargingSchedule.ChargingRateUnit, "A");

							for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
							{
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																											  3:
																											  json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr((char*)json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))/(220*maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")));
							}
						}
						else
						{
							sprintf((char*)maxProfile.ChargingSchedule.ChargingRateUnit, "W");

							for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
							{
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = (json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")==NULL?
																											  3:
																											  json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")));
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = (strstr((char*)json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")),"W")!=NULL?json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")):json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"))*(220*maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases));
							}
						}

						// Optional item
						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL)
						{
							sprintf((char*)maxProfile.ValidFrom, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")));
						}
						else
						{
							sprintf((char*)maxProfile.ValidFrom, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL)
						{
							sprintf((char*)maxProfile.ValidTo, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")));
						}
						else
						{
							sprintf((char*)maxProfile.ValidTo, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind") != NULL)
						{
							sprintf((char*)maxProfile.RecurrencyKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "recurrencyKind")));
						}
						else
						{
							sprintf((char*)maxProfile.RecurrencyKind, " ");
						}

						if(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId") != NULL)
						{
							maxProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "transactionId"));
						}
						else
						{
							maxProfile.TransactionId = -1;
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL)
						{
							maxProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "duration"));
						}
						else
						{
							maxProfile.ChargingSchedule.Duration = 86400;
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL)
						{
							sprintf((char*)maxProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "startSchedule")));
						}
						else
						{
							sprintf((char*)maxProfile.ChargingSchedule.StartSchedule, "%s", (!cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging ? compositeProfile.ChargingSchedule.StartSchedule : ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp));
						}

						if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL)
						{
							maxProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate"));
						}
						else
						{
							maxProfile.ChargingSchedule.MinChargingRate = -1;
						}
					}
				}
			}
			json_object_put(obj);
		}
		fclose(fp);
/*
		if(maxProfile.ChargingProfileId !=-1)
		{
			DEBUG_INFO("Profile ID: %d\n", maxProfile.ChargingProfileId);
			DEBUG_INFO("Profile stackLevel: %d\n", maxProfile.StackLevel);
			DEBUG_INFO("Profile TransactionId: %d\n", maxProfile.TransactionId);
			DEBUG_INFO("Profile valid from: %s\n", maxProfile.ValidFrom);
			DEBUG_INFO("Profile valid to: %s\n", maxProfile.ValidTo);
			DEBUG_INFO("Profile ChargingProfileKind: %s\n", maxProfile.ChargingProfileKind);
			DEBUG_INFO("Profile recurrencyKind: %s\n", maxProfile.RecurrencyKind);

			DEBUG_INFO("Profile start schedule: %s\n", maxProfile.ChargingSchedule.StartSchedule);
			DEBUG_INFO("Profile schedule duration: %d\n", maxProfile.ChargingSchedule.Duration);
			DEBUG_INFO("Profile charging rate unit: %s\n", maxProfile.ChargingSchedule.ChargingRateUnit);
			DEBUG_INFO("Profile charging min rate: %f\n", maxProfile.ChargingSchedule.MinChargingRate);

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
				{
					DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod);
					DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit);
					DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases);
				}
			}
		}
		else
			DEBUG_INFO("MaxProfile not found.\n");
		DEBUG_INFO("------------------------------------\n");*/
	}

	/*
	 * Align found profile start schedule & periods
	 */
	//DEBUG_INFO("====================================\n");
	/*
	// For local test usage, force modify found profile start schedule info
	sprintf((char*)maxProfile.ChargingSchedule.StartSchedule, "%04d-%02d-%02dT%02d:%02d:%02dZ", tmComposite->tm_year+1900, tmComposite->tm_mon+1, tmComposite->tm_mday, tmComposite->tm_hour, tmComposite->tm_min, tmComposite->tm_sec-10);
	sprintf((char*)defaultTxProfile.ChargingSchedule.StartSchedule, "%04d-%02d-%02dT%02d:%02d:%02dZ", tmComposite->tm_year+1900, tmComposite->tm_mon+1, tmComposite->tm_mday, tmComposite->tm_hour, tmComposite->tm_min, tmComposite->tm_sec-5);
	sprintf((char*)txProfile.ChargingSchedule.StartSchedule, "%04d-%02d-%02dT%02d:%02d:%02dZ", tmComposite->tm_year+1900, tmComposite->tm_mon+1, tmComposite->tm_mday, tmComposite->tm_hour, tmComposite->tm_min, tmComposite->tm_sec-3);
*/

	if(txProfile.ChargingProfileId != -1)
	{
		if(strstr((char*)txProfile.ChargingProfileKind, "Absolute") != NULL)
		{
			if(txProfile.ChargingSchedule.Duration != -1)
			{
				txProfile.ChargingSchedule.Duration = ((txProfile.ChargingSchedule.Duration-getStartStop(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule))<0?
														0:
														(txProfile.ChargingSchedule.Duration-getStartStop(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule)));
			}

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(txProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
				{
					txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule))<0?
																								 0:
																								 (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule)));

					if(idxPeriod > 0)
					{
						if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
						{
							txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
						}
					}
				}
			}
		}
		else if(strstr((char*)txProfile.ChargingProfileKind, "Relative") != NULL)
		{
			if(txProfile.ChargingSchedule.Duration != -1)
			{
				txProfile.ChargingSchedule.Duration = !cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging?txProfile.ChargingSchedule.Duration:((txProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule))<0?
																																								  0:
																																								 (txProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule)));
			}

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(txProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
				{
					txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = !cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging?txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod:((txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule))<0?
																																																												0:
																																																											   (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule)));

					if(idxPeriod > 0)
					{
						if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
						{
							txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
						}
					}
				}
			}
		}
		else
		{
			if(strstr((char*)txProfile.RecurrencyKind, "Weekly") != NULL)
			{
				if(txProfile.ChargingSchedule.Duration != -1)
				{
					txProfile.ChargingSchedule.Duration = ((txProfile.ChargingSchedule.Duration-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE))<0?
															0:
															(txProfile.ChargingSchedule.Duration-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE)));
				}

				for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(txProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
				{
					if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
					{
						txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE))<0?
																									 0:
																									 (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE)));

						if(idxPeriod > 0)
						{
							if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
							{
								txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
							}
						}
					}
				}
			}
			else
			{
				if(txProfile.ChargingSchedule.Duration != -1)
				{
					txProfile.ChargingSchedule.Duration = ((txProfile.ChargingSchedule.Duration-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE))<0?
															0:
															(txProfile.ChargingSchedule.Duration-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE)));
				}

				for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(txProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
				{
					if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
					{
						txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE))<0?
																									 0:
																									 (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE)));

						if(idxPeriod > 0)
						{
							if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
							{
								txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
							}
						}
					}
				}
			}
		}
/*
		DEBUG_INFO("txProfile after align.\n");
		DEBUG_INFO("Profile ID: %d\n", txProfile.ChargingProfileId);
		DEBUG_INFO("Profile stackLevel: %d\n", txProfile.StackLevel);
		DEBUG_INFO("Profile TransactionId: %d\n", txProfile.TransactionId);
		DEBUG_INFO("Profile valid from: %s\n", txProfile.ValidFrom);
		DEBUG_INFO("Profile valid to: %s\n", txProfile.ValidTo);
		DEBUG_INFO("Profile ChargingProfileKind: %s\n", txProfile.ChargingProfileKind);
		DEBUG_INFO("Profile recurrencyKind: %s\n", txProfile.RecurrencyKind);

		DEBUG_INFO("Profile start schedule: %s\n", compositeProfile.ChargingSchedule.StartSchedule);
		DEBUG_INFO("Profile schedule duration: %d\n", txProfile.ChargingSchedule.Duration);
		DEBUG_INFO("Profile charging rate unit: %s\n", txProfile.ChargingSchedule.ChargingRateUnit);
		DEBUG_INFO("Profile charging min rate: %f\n", txProfile.ChargingSchedule.MinChargingRate);

		for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(txProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
		{
			if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
			{
				DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod);
				DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit);
				DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases);
			}
		}*/
	}

	if(defaultTxProfile.ChargingProfileId != -1)
	{
		if(strstr((char*)defaultTxProfile.ChargingProfileKind, "Absolute") != NULL)
		{
			if(defaultTxProfile.ChargingSchedule.Duration != -1)
			{
				defaultTxProfile.ChargingSchedule.Duration = ((defaultTxProfile.ChargingSchedule.Duration-getStartStop(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule))<0?
														0:
														(defaultTxProfile.ChargingSchedule.Duration-getStartStop(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule)));
			}

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
				{
					defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule))<0?
																								 0:
																								 (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule)));

					if(idxPeriod > 0)
					{
						if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
						{
							defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
						}
					}
				}
			}
		}
		else if(strstr((char*)defaultTxProfile.ChargingProfileKind, "Relative") != NULL)
		{
			if(defaultTxProfile.ChargingSchedule.Duration != -1)
			{
				defaultTxProfile.ChargingSchedule.Duration = !cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging?defaultTxProfile.ChargingSchedule.Duration:((defaultTxProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule))<0?
																																								  0:
																																								 (defaultTxProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule)));
			}

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
				{
					defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = !cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging?defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod:((defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule))<0?
																																																												0:
																																																											   (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule)));

					if(idxPeriod > 0)
					{
						if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
						{
							defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
						}
					}
				}
			}
		}
		else
		{
			if(strstr((char*)defaultTxProfile.RecurrencyKind, "Weekly") != NULL)
			{
				if(defaultTxProfile.ChargingSchedule.Duration != -1)
				{
					defaultTxProfile.ChargingSchedule.Duration = ((defaultTxProfile.ChargingSchedule.Duration-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE))<0?
															0:
															(defaultTxProfile.ChargingSchedule.Duration-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE)));
				}

				for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
				{
					if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
					{
						defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE))<0?
																									 0:
																									 (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE)));

						if(idxPeriod > 0)
						{
							if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
							{
								defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
							}
						}
					}
				}
			}
			else
			{
				if(defaultTxProfile.ChargingSchedule.Duration != -1)
				{
					defaultTxProfile.ChargingSchedule.Duration = ((defaultTxProfile.ChargingSchedule.Duration-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE))<0?
															0:
															(defaultTxProfile.ChargingSchedule.Duration-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE)));
				}

				for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
				{
					if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
					{
						defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE))<0?
																									 0:
																									 (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE)));

						if(idxPeriod > 0)
						{
							if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
							{
								defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
							}
						}
					}
				}
			}
		}
/*
		DEBUG_INFO("defaultTxProfile after align.\n");
		DEBUG_INFO("Profile ID: %d\n", defaultTxProfile.ChargingProfileId);
		DEBUG_INFO("Profile stackLevel: %d\n", defaultTxProfile.StackLevel);
		DEBUG_INFO("Profile TransactionId: %d\n", defaultTxProfile.TransactionId);
		DEBUG_INFO("Profile valid from: %s\n", defaultTxProfile.ValidFrom);
		DEBUG_INFO("Profile valid to: %s\n", defaultTxProfile.ValidTo);
		DEBUG_INFO("Profile ChargingProfileKind: %s\n", defaultTxProfile.ChargingProfileKind);
		DEBUG_INFO("Profile recurrencyKind: %s\n", defaultTxProfile.RecurrencyKind);

		DEBUG_INFO("Profile start schedule: %s\n", compositeProfile.ChargingSchedule.StartSchedule);
		DEBUG_INFO("Profile schedule duration: %d\n", defaultTxProfile.ChargingSchedule.Duration);
		DEBUG_INFO("Profile charging rate unit: %s\n", defaultTxProfile.ChargingSchedule.ChargingRateUnit);
		DEBUG_INFO("Profile charging min rate: %f\n", defaultTxProfile.ChargingSchedule.MinChargingRate);

		for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
		{
			if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
			{
				DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod);
				DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit);
				DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases);
			}
		}
		DEBUG_INFO("------------------------------------\n");*/
	}

	if(maxProfile.ChargingProfileId != -1)
	{
		if(strstr((char*)maxProfile.ChargingProfileKind, "Absolute") != NULL)
		{
			if(maxProfile.ChargingSchedule.Duration != -1)
			{
				maxProfile.ChargingSchedule.Duration = ((maxProfile.ChargingSchedule.Duration-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule))<0?
														0:
														(maxProfile.ChargingSchedule.Duration-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule)));
			}

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
				{
					maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule))<0?
																								 0:
																								 (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule)));

					if(idxPeriod > 0)
					{
						if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
						{
							maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
						}
					}
				}
			}
		}
		else if(strstr((char*)maxProfile.ChargingProfileKind, "Relative") != NULL)
		{
			if(maxProfile.ChargingSchedule.Duration != -1)
			{
				maxProfile.ChargingSchedule.Duration = !cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging?maxProfile.ChargingSchedule.Duration:((maxProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule))<0?
																																								  0:
																																								 (maxProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule)));
			}

			for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
			{
				if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
				{
					maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = !cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging?maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod:((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule))<0?
																																																											    0:
																																																											   (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16DataPH->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile.ChargingSchedule.StartSchedule)));

					if(idxPeriod > 0)
					{
						if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
						{
							maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
						}
					}
				}
			}
		}
		else
		{
			if(strstr((char*)maxProfile.RecurrencyKind, "Weekly") != NULL)
			{
				if(maxProfile.ChargingSchedule.Duration != -1)
				{
					maxProfile.ChargingSchedule.Duration = ((maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE))<0?
															0:
															(maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE)));
				}

				for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
				{
					if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
					{
						maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE))<0?
																									 0:
																									 (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, FALSE)));

						if(idxPeriod > 0)
						{
							if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
							{
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
							}
						}
					}
				}
			}
			else
			{
				if(maxProfile.ChargingSchedule.Duration != -1)
				{
					maxProfile.ChargingSchedule.Duration = ((maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE))<0?
															0:
															(maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE)));
				}

				for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
				{
					if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod != -1)
					{
						maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = ((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE))<0?
																									 0:
																									 (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile.ChargingSchedule.StartSchedule, TRUE)));

						if(idxPeriod > 0)
						{
							if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod)
							{
								maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit;
							}
						}
					}
				}
			}
		}
/*
		DEBUG_INFO("MaxProfile after align.\n");
		DEBUG_INFO("Profile ID: %d\n", maxProfile.ChargingProfileId);
		DEBUG_INFO("Profile stackLevel: %d\n", maxProfile.StackLevel);
		DEBUG_INFO("Profile TransactionId: %d\n", maxProfile.TransactionId);
		DEBUG_INFO("Profile valid from: %s\n", maxProfile.ValidFrom);
		DEBUG_INFO("Profile valid to: %s\n", maxProfile.ValidTo);
		DEBUG_INFO("Profile ChargingProfileKind: %s\n", maxProfile.ChargingProfileKind);
		DEBUG_INFO("Profile recurrencyKind: %s\n", maxProfile.RecurrencyKind);

		DEBUG_INFO("Profile start schedule: %s\n", compositeProfile.ChargingSchedule.StartSchedule);
		DEBUG_INFO("Profile schedule duration: %d\n", maxProfile.ChargingSchedule.Duration);
		DEBUG_INFO("Profile charging rate unit: %s\n", maxProfile.ChargingSchedule.ChargingRateUnit);
		DEBUG_INFO("Profile charging min rate: %f\n", maxProfile.ChargingSchedule.MinChargingRate);

		for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
		{
			if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
			{
				DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod);
				DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit);
				DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases);
			}
		}
		DEBUG_INFO("------------------------------------\n");*/
	}

	/*
	 * Merge to conposite schedule
	 */
	//DEBUG_INFO("====================================\n");
	// Find each profile period quantity
	for(int idx=0;idx<ARRAY_SIZE(maxProfile.ChargingSchedule.ChargingSchedulePeriod);idx++)
	{
		if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idx].Limit != -1)
			limitMax = idx+1;
	}

	for(int idx=0;idx<ARRAY_SIZE(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod);idx++)
	{
		if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idx].Limit != -1)
			limitDef = idx+1;
	}

	for(int idx=0;idx<ARRAY_SIZE(txProfile.ChargingSchedule.ChargingSchedulePeriod);idx++)
	{
		if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idx].Limit != -1)
			limitTx = idx+1;
	}

	// TxProfile found, composite schedule based on it
	if(txProfile.ChargingProfileId != -1)
	{
		compositeProfile.ChargingSchedule.Duration = txProfile.ChargingSchedule.Duration;
		for(int idxTxPeriod=0;idxTxPeriod<limitTx;idxTxPeriod++)
		{
			if((txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].Limit != -1) &&
			   (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].StartPeriod < durationReq) &&
			   (txProfile.ChargingSchedule.Duration > 0))
			{
				if(maxProfile.ChargingProfileId != -1)
				{
					for(int idxMaxPeriod=0;idxMaxPeriod<limitMax;idxMaxPeriod++)
					{
						if((txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].StartPeriod >= maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod))
						{
							if((maxProfile.ChargingSchedule.Duration > 0))
							{
								tmpPeriod.StartPeriod = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].StartPeriod;
								tmpPeriod.NumberPhases = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].NumberPhases;
								tmpPeriod.Limit = (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].Limit>maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit?maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit:txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].Limit);
							}
							else
							{
								tmpPeriod.StartPeriod = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].StartPeriod;
								tmpPeriod.NumberPhases = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].NumberPhases;
								tmpPeriod.Limit = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].Limit;
							}
						}

						if(idxMaxPeriod == (limitMax-1))
						{
							if(tmpPeriod.Limit != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].Limit)
							{
								if(tmpPeriod.StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod)
								{
									memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod));
									compositePeriodIdx++;
								}
								else
								{
									memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod));
								}
							}
						}
					}
				}
				else
				{
					if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod)
					{
						memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod],sizeof(struct StructChargingSchedulePeriod));
						compositePeriodIdx++;
					}
					else
					{
						memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod],sizeof(struct StructChargingSchedulePeriod));
					}
				}
			}

			if(idxTxPeriod == (limitTx-1))
			{
				if(defaultTxProfile.ChargingProfileId != -1)
				{
					compositeProfile.ChargingSchedule.Duration = (defaultTxProfile.ChargingSchedule.Duration>compositeProfile.ChargingSchedule.Duration)?defaultTxProfile.ChargingSchedule.Duration:compositeProfile.ChargingSchedule.Duration;
					for(int idxDefPeriod=0;idxDefPeriod<limitDef;idxDefPeriod++)
					{
						if((defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod >= (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].StartPeriod + (txProfile.ChargingSchedule.Duration-defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod))) &&
						   (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod < durationReq) &&
						   (defaultTxProfile.ChargingSchedule.Duration>0))
						{
							if(maxProfile.ChargingProfileId != -1)
							{
								for(int idxMaxPeriod=0;idxMaxPeriod<limitMax;idxMaxPeriod++)
								{
									if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod >= maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod)
									{
										if((maxProfile.ChargingSchedule.Duration > 0))
										{
											tmpPeriod.StartPeriod = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod;
											tmpPeriod.NumberPhases = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].NumberPhases;
											tmpPeriod.Limit = (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit>maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit?maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit:defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].Limit);
										}
										else
										{
											tmpPeriod.StartPeriod = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod;
											tmpPeriod.NumberPhases = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].NumberPhases;
											tmpPeriod.Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit;
										}

										if(tmpPeriod.Limit != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].Limit)
										{
											if(tmpPeriod.StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod)
											{
												memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod));
												compositePeriodIdx++;
											}
											else
											{
												memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod));
											}
										}

										// Delete duplicate period
										if(compositePeriodIdx > 1)
										{
											if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit == compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-2].Limit)
											{
												compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].StartPeriod = -1;
												compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit = -1;
												compositePeriodIdx -= 1;
											}
										}
									}
									else
									{
										if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod)
										{
											memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod));
											compositePeriodIdx++;
										}
										else
										{
											memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod));
										}
										break;
									}
								}
							}
							else
							{
								if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod)
								{
									memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod));
									compositePeriodIdx++;
								}
								else
								{
									memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod));
								}
							}
						}
					}
				}
			}
		}
	}
	// TxProfile not found but defaultTxProfile found, composite schedule based on it
	else if(defaultTxProfile.ChargingProfileId != -1)
	{
		compositeProfile.ChargingSchedule.Duration = defaultTxProfile.ChargingSchedule.Duration;
		for(int idxDefPeriod=0;idxDefPeriod<limitDef;idxDefPeriod++)
		{
			if((defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit != -1) &&
			   (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod < durationReq) &&
			   (defaultTxProfile.ChargingSchedule.Duration > 0))
			{
				if(maxProfile.ChargingProfileId != -1)
				{
					for(int idxMaxPeriod=0;idxMaxPeriod<limitMax;idxMaxPeriod++)
					{
						if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod >= maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod)
						{
							tmpPeriod.StartPeriod = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod;
							tmpPeriod.NumberPhases = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].NumberPhases;
							if((maxProfile.ChargingSchedule.Duration > 0))
							{
								tmpPeriod.Limit = (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit>maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit?maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit:defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit);
							}
							else
							{
								tmpPeriod.Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit;
							}

							if(tmpPeriod.Limit != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].Limit)
							{
								if(tmpPeriod.StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod)
								{
									memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod));
									compositePeriodIdx++;
								}
								else
								{
									memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod));
								}
							}

							// Delete duplicate period
							if(compositePeriodIdx > 1)
							{
								if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit == compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-2].Limit)
								{
									compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].StartPeriod = -1;
									compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit = -1;
									compositePeriodIdx -= 1;
								}
							}
						}
						else
						{
							if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod)
							{
								memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod));
								compositePeriodIdx++;
							}
							else
							{
								memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod));
							}
							break;
						}
					}
				}
				else
				{
					if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod)
					{
						memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod));
						compositePeriodIdx++;
					}
					else
					{
						memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod));
					}
				}
			}
		}
	}

	// Fill other period by MaxProfile
	if(maxProfile.ChargingProfileId != -1)
	{
		if(compositePeriodIdx==0)
		{
			compositeProfile.ChargingSchedule.Duration = maxProfile.ChargingSchedule.Duration;
			for(int idxMaxPeriod=0;idxMaxPeriod<limitDef;idxMaxPeriod++)
			{
				if((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit != -1) &&
				   (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod < durationReq) &&
				   (maxProfile.ChargingSchedule.Duration > 0))
				{
					if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod)
					{
						memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod],sizeof(struct StructChargingSchedulePeriod));
						compositePeriodIdx++;
					}
					else
					{
						memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod],sizeof(struct StructChargingSchedulePeriod));
					}
				}
			}
		}
		else
		{
			int lastCompositePeriodIdx = compositePeriodIdx;
			for(int idxMaxPeriod=0;idxMaxPeriod<limitMax;idxMaxPeriod++)
			{
				if((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit != -1) &&
				   (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod < durationReq) &&
				   (maxProfile.ChargingSchedule.Duration > 0))
				{
					if((maxProfile.ChargingSchedule.Duration >= compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].StartPeriod))
					{
						if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit > compositeProfile.ChargingSchedule.ChargingSchedulePeriod[lastCompositePeriodIdx-1].Limit)
						{
							tmpPeriod.StartPeriod = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod;
							tmpPeriod.NumberPhases = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].NumberPhases;
							tmpPeriod.Limit = compositeProfile.ChargingSchedule.ChargingSchedulePeriod[lastCompositePeriodIdx-1].Limit;
						}
						else
						{
							tmpPeriod.StartPeriod = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod;
							tmpPeriod.NumberPhases = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].NumberPhases;
							tmpPeriod.Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit;
						}
					}

					if(tmpPeriod.Limit != -1)
					{
						if(tmpPeriod.Limit != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit)
						{
							if(tmpPeriod.StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].StartPeriod)
							{
								memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod));
								compositePeriodIdx++;
							}
							else
							{
								memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod));
							}
						}

						// Delete duplicate period
						if(compositePeriodIdx > 1)
						{
							if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit == compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-2].Limit)
							{
								compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].StartPeriod = -1;
								compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit = -1;
								compositePeriodIdx -= 1;
							}
						}
					}
				}
			}
		}
	}

	compositeProfile.ChargingSchedule.Duration = durationReq;
	DEBUG_INFO("Connector-%d composite schedule ready.\n", connectorId);
	DEBUG_INFO("Schedule start: %s\n", compositeProfile.ChargingSchedule.StartSchedule);
	DEBUG_INFO("Schedule duration: %d\n", compositeProfile.ChargingSchedule.Duration);
	DEBUG_INFO("Rate unit: %s\n", compositeProfile.ChargingSchedule.ChargingRateUnit);
	for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(compositeProfile.ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
	{
		if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
		{
			compositeProfile.ChargingProfileId = 1;
			DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod);
			DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit);
			DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases);
		}

		if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit == -1)
			compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit =0;

		if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod == -1)
			compositeProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod =0;
	}

	memcpy(targetCompositeProfile, &compositeProfile, sizeof(struct StructChargingProfile));

	if(line)
		free(line);

	checkChargePointMaxProfile(durationReq, &ShmOCPP16DataPH->MaxChargingProfile, isUnitA);

	ShmOCPP16DataPH->CSUMsg.bits[(connectorId==0?0:connectorId-1)].ChargingProfileConf = 1;
}

//==========================================
// Init all share memory
//==========================================
int InitShareMemory()
{
	int result = PASS;
	int MeterSMId;

	//creat ShmSysConfigAndInfo
	if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo),  0777)) < 0)
    {
		DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
		result = FAIL;
	}
    else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
    {
    	DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
    	result = FAIL;
   	 }
    else
    {}

   	if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData),  0777)) < 0)
    {
   		DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
   		result = FAIL;
	}
    else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
    {
    	DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
    	result = FAIL;
   	}
    else
    {}

	//creat ShmPsuData
   	if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), 0777)) < 0)
    {
   		DEBUG_ERROR("shmget ShmPsuData NG\n");
   		result = FAIL;
	}
    else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
    {
    	DEBUG_ERROR("shmat ShmPsuData NG\n");
    	result = FAIL;
   	}
    else
    {}

   	//link ShmOCPP16Data
   	if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data),  0777)) < 0)
	{
		DEBUG_ERROR("shmget ShmOCPP16Data NG\n");
		result = FAIL;
	}
	else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
	{
		DEBUG_ERROR("shmat ShmOCPP16Data NG\n");
		result = FAIL;
	}
	else
	{}

   	//creat ShmOCPP16DataPH
   	if ((MeterSMId = shmget(ShmOcppPHModuleKey, sizeof(struct OCPP16Data),  IPC_CREAT|0777)) < 0)
	{
		DEBUG_ERROR("shmget ShmOCPP16DataPH NG\n");
		result = FAIL;
	}
	else if ((ShmOCPP16DataPH = shmat(MeterSMId, NULL, 0)) == (void *) -1)
	{
		DEBUG_ERROR("shmat ShmOCPP16DataPH NG\n");
		result = FAIL;
	}
	else
	{}

    /****************************** For Initial Settings************************************************/
	ShmOCPP16DataPH->GetConfiguration.ResponseUnknownKey = NULL;
	ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList = NULL;

	// allocate Configuration memory address
	ShmOCPP16DataPH->GetConfiguration.Key = staticKeyArray;
	ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey = staticResponseConfigurationKeyArray;
	ShmOCPP16DataPH->GetConfiguration.ResponseUnknownKey = staticResponseUnknownKey;
	ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList = staticLocalAuthorizationList;
	sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Idle]);

	//offline MeterValue Interval
	TempMeterValueInterval = 0;

	return result;
}

int ProcessShareMemory()
{
	int result = PASS;

	if(InitShareMemory() == FAIL)
	{
		DEBUG_ERROR("InitShareMemory NG\n");

		if(ShmStatusCodeData!=NULL)
		{
			ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
		}

		result = FAIL;
	}

	// Model name parsing
	if(RatedCurrentParsing((char*)ShmSysConfigAndInfo->SysConfig.ModelName, &modelnameInfo) != -1)
	{
		DEBUG_INFO("Model name rated power: %d\n", modelnameInfo.ratedPower);
	 	if((ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') &&
	 	   ((ShmSysConfigAndInfo->SysConfig.ModelName[1]=='B') ||
		    (ShmSysConfigAndInfo->SysConfig.ModelName[1]=='K') ||
			(ShmSysConfigAndInfo->SysConfig.ModelName[1]=='O') ||
			(ShmSysConfigAndInfo->SysConfig.ModelName[1]=='L'))
		   ) // 'D' means DC
		{
			// DO series
			for(int gun_index=0; gun_index<GENERAL_GUN_QUANTITY ; gun_index++)
			{
				gunTotalNumber += 1;
				gunType[gun_index] = GUN_TYPE_DO;
				for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == gun_index)
					{
						periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption;
						periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption;
						DEBUG_INFO("Gun-%02d PowerConsumption: %.3f\n", gun_index, ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption);
					}
				}

 				switch(modelnameInfo.ParsingInfo[gun_index].GunType)
 				{
 					case Gun_Type_Chademo:
 						DEBUG_INFO("Gun-%02d type: Cabinet CHAdeMO\n", gun_index);
 						break;
 					case Gun_Type_CCS_2:
 						DEBUG_INFO("Gun-%02d type: Cabinet CCS\n", gun_index);
						break;
 					case Gun_Type_GB:
 						DEBUG_INFO("Gun-%02d type: Cabinet GBT\n", gun_index);
						break;
 					case Gun_Type_AC:
 						DEBUG_INFO("Gun-%02d type: Cabinet AC\n", gun_index);
						break;
 					default:
 						DEBUG_WARN("Gun-%02d type: Cabinet unknown\n", gun_index);
 						break;
 				}
			}
		}
		else
		{
 			for(int gun_index=0;gun_index<modelnameInfo.GetGunCount;gun_index++)
 			{
				gunTotalNumber += 1;

				switch(modelnameInfo.ParsingInfo[gun_index].GunType)
				{
					case Gun_Type_Chademo:
						gunType[gun_index] = GUN_TYPE_CHAdeMO;
						DEBUG_INFO("Gun-%02d type: CHAdeMO\n", gun_index);
						for(int index = 0; index < CHAdeMO_QUANTITY; index++)
						{
							if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
							{
								periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption;
								periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption;
								DEBUG_INFO("Gun-%02d PowerConsumption: %.3f\n", gun_index, ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption);
							}
						}
						break;
					case Gun_Type_CCS_2:
						gunType[gun_index] = GUN_TYPE_CCS;
						DEBUG_INFO("Gun-%02d type: CCS\n", gun_index);
						for (int index = 0; index < CCS_QUANTITY; index++)
						{
							if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
							{
								periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption;
								periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption;
								DEBUG_INFO("Gun-%02d PowerConsumption: %.3f\n", gun_index, ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption);
							}
						}
						break;
					case Gun_Type_GB:
						gunType[gun_index] = GUN_TYPE_GBT;
						DEBUG_INFO("Gun-%02d type: GBT\n", gun_index);
						for (int index = 0; index < GB_QUANTITY; index++)
						{
							if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
							{
								periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption;
								periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption;
								DEBUG_INFO("Gun-%02d PowerConsumption: %.3f\n", gun_index, ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption);
							}
						}
						break;
					case Gun_Type_AC:
						gunType[gun_index] = GUN_TYPE_AC;
						DEBUG_INFO("Gun-%02d type: AC\n", gun_index);
						for (int index = 0; index < AC_QUANTITY; index++)
						{
							if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
							{
								periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption;
								periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption;
								DEBUG_INFO("Gun-%02d PowerConsumption: %.3f\n", gun_index, ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption);
							}
						}
						break;
					default:
						DEBUG_WARN("Gun-%02d type: Unknown\n", gun_index);
						break;
				}
 			}
		}
	}
	else
	{
		DEBUG_ERROR("Model name parsing fail.\n");
		result = FAIL;
	}

	if(result != PASS)sleep(5);

	return result;
}

void checkRemoteStart(uint8_t connectorIdInt)
{
	uint8_t tempIndex;
	int result = PASS;
	char cmdBuf[512];

	//check Transaction active
	if(gunType[connectorIdInt -1] == GUN_TYPE_CHAdeMO)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex =  ((connectorIdInt -1) == 2) ? 1: 0;
		}
		else
		{
			tempIndex = connectorIdInt -1;
		}

		for (int index = 0; index < CHAdeMO_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
			{

				if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != -1) &&
				   (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId >= 0) &&
				   (strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0))
				{
					//Reserved
					DEBUG_INFO("CHAdeMO connector already reserved and idTag match.\n");
				}
				else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != -1) &&
						(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId >= 0) &&
						(strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0))
				{
					//Reserved
					DEBUG_INFO("CHAdeMO connector already reserved and idTag does not match.\n");
					result = FAIL;
					goto end;
				}
				else
				{
					if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_IDLE)				//S_IDLE
						&& (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARING ) 	//S_PRECHARGE
						&& (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV ) 	//S_PREPARING_FOR_EV
						&& (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE ))   // S_PREPARING_FOR_EVSE
					{
						DEBUG_WARN("CHAdeMO connector not allow start cause busy.\n.");
						result = FAIL;
						goto end;
					}
				}//END FOR ELSE
			}
		}// END FOR CHAdeMO_QUANTITY
	}
	else if(gunType[connectorIdInt -1] == GUN_TYPE_CCS)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex =  ((connectorIdInt -1) == 2) ? 1: 0;
		}
		else
		{
			tempIndex = connectorIdInt -1;
		}

		for (int index = 0; index < CCS_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
			{
				if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != -1) &&
				   (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId >= 0) &&
				   (strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0))
				{
					//Reserved
					DEBUG_INFO("CCS connector already reserved and idTag match.\n");
				}
				else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != -1) &&
						(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId >= 0) &&
						(strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0))
				{
					//Reserved
					DEBUG_INFO("CCS connector already reserved and idTag does not match.\n");
					result = FAIL;
					goto end;
				}
				else
				{
					if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_IDLE)          //S_IDLE
						&& (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARING)   	//S_PRECHARGE
						&& (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV)   	//S_PREPARING_FOR_EV
						&& (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) 	// S_PREPARING_FOR_EVSE
					{
						DEBUG_WARN("CCS connector not allow start cause busy.\n.");
						result = FAIL;
						goto end;
					}

				}// END FOR ELSE
			}
		}// END FOR CCS_QUANTITY
	}
	else if(gunType[connectorIdInt -1] == GUN_TYPE_GBT)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex =  ((connectorIdInt -1) == 2) ? 1: 0;
		}
		else
		{
			tempIndex = connectorIdInt -1;
		}

		for (int index = 0; index < GB_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex )
			{
				if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != -1) &&
				   (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId >= 0) &&
				   (strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0))
				{
					//Reserved
					DEBUG_INFO("GBT connector already reserved and idTag match.\n");
				}
				else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != -1) &&
						(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId >= 0) &&
						(strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0))
				{
					//Reserved
					DEBUG_INFO("GBT connector already reserved and idTag does not match.\n");
					result = FAIL;
					goto end;
				}
				else
				{
					if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_IDLE)         	//S_IDLE
						&& (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARING)		//S_PRECHARGE
						&& (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV)		//S_PREPARING_FOR_EV
						&& (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) 		// S_PREPARING_FOR_EVSE
					{
						DEBUG_WARN("GBT connector not allow start cause busy.\n.");
						result = FAIL;
						goto end;
					}

				}// END FOR ELSE
			}
		} // END FOR GB_QUANTITY

	}
	else if(gunType[connectorIdInt -1] == GUN_TYPE_DO)
	{
		tempIndex = connectorIdInt -1;

		for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex )
			{
				if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId != -1) &&
				   (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId >= 0) &&
				   (strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0))
				{
					//Reserved
					DEBUG_INFO("Dispenser connector already reserved and idTag match.\n");
				}
				else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId != -1) &&
						(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId >= 0) &&
						(strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0))
				{
					//Reserved
					DEBUG_INFO("Dispenser connector already reserved and idTag does not match.\n");
					result = FAIL;
					goto end;
				}
				else
				{
					if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_IDLE)         	//S_IDLE
						&& (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_PREPARING)		//S_PRECHARGE
						&& (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_PREPARE_FOR_EV)		//S_PREPARING_FOR_EV
						&& (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) 		// S_PREPARING_FOR_EVSE
					{
						DEBUG_WARN("Dispenser connector not allow start cause busy.\n.");
						result = FAIL;
						goto end;
					}

				}// END FOR ELSE
			}
		} // END FOR GB_QUANTITY

	}
	else
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC
		{
			tempIndex = 2;
		}
		else
		{
			tempIndex = connectorIdInt -1;
		}

		for (int index = 0; index < AC_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex )
			{

				if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != -1) &&
				   (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId >= 0) &&
				   (strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0))
				{
					//Reserved
					DEBUG_INFO("AC connector already reserved and idTag match.\n");
				}
				else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != -1) &&
						(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId >= 0) &&
						(strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0))
				{
					//Reserved
					DEBUG_INFO("AC connector already reserved and idTag does not match.\n");
					result = FAIL;
					goto end;
				}
				else
				{
					if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_IDLE)				//S_IDLE
						&& (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARING) 	//S_PRECHARGE
						&& (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV) 	//S_PREPARING_FOR_EV
						&& (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE))   // S_PREPARING_FOR_EVSE
					{
						DEBUG_WARN("AC connector not allow start cause busy.\n.");
						result = FAIL;
						goto end;
					}

				}//END FOR ELSE
			}
		}// END FOR AC_QUANTITY
	}

	if(ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId > -1)
	{
		if(strcmp((char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
		{
			ShmOCPP16DataPH->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;

			if((access("/Storage/OCPP_PH/TxProfile_Tmp.json", F_OK))!=-1)
			{
				sprintf(cmdBuf, "mv /Storage/OCPP_PH/TxProfile_Tmp.json /Storage/OCPP_PH/TxProfile_%d.json", connectorIdInt);
				system(cmdBuf);
			}
		}
		else
		{
			DEBUG_WARN("Profile purpose not TxProfile.\n.");
			result = FAIL;
		}
	}

end:
	if(result == PASS)
	{
		ShmOCPP16DataPH->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;

		memset((char *)ShmOCPP16DataPH->StartTransaction[connectorIdInt -1].IdTag, 0, 20);
		strcpy((char *)ShmOCPP16DataPH->StartTransaction[connectorIdInt -1].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag);

		memset((char *)ShmOCPP16DataPH->StopTransaction[connectorIdInt -1].IdTag, 0, 20);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[connectorIdInt -1].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag);
	}
}

void CheckSystemValue(void)
{
	char filenmae[100]={0};
	char str[100]={0};
	int tempIndex = 0;

	//===============================
	// send Heartbeat
	//===============================
	if((server_sign == TRUE) && (HeartBeatWaitTime > 0) && (getDiffSecNow(clientTime.Heartbeat) >= (HeartBeatWaitTime + HeartBeatWithNOResponse)))
	{
		//parameter for test
		sendHeartbeatRequest(0);
	    //==============================================
		// Reset Waiting Time
		//==============================================
		HeartBeatWithNOResponse += 2;
	}

	//===============================
	// Credit deduct report
	//===============================
	if(ShmOCPP16DataPH->TcciCustomData.ReportCreditDeductReq)
	{
		OCPP_insert_deduct_info(ShmOCPP16DataPH->TcciCustomData.DeductInfo.txId, (char*)ShmOCPP16DataPH->TcciCustomData.DeductInfo.creditNo,
								ShmOCPP16DataPH->TcciCustomData.DeductInfo.deductResult, ShmOCPP16DataPH->TcciCustomData.DeductInfo.isDonateInvoice,
								ShmOCPP16DataPH->TcciCustomData.DeductInfo.amount, (char*)ShmOCPP16DataPH->TcciCustomData.DeductInfo.vemData,
								(char*)ShmOCPP16DataPH->TcciCustomData.DeductInfo.ROC,(char*)ShmOCPP16DataPH->TcciCustomData.DeductInfo.RRN,
								(char*)ShmOCPP16DataPH->TcciCustomData.DeductInfo.approvalNo,(char*)ShmOCPP16DataPH->TcciCustomData.DeductInfo.storeId);

		ShmOCPP16DataPH->TcciCustomData.ReportCreditDeductReq = FALSE;
	}

	if(getDiffSecNow(clientTime.TcciQueryDeduct) > 5)
	{
		OCPP_query_deduct_info();
		refreshStartTimer(&clientTime.TcciQueryDeduct);
	}

	for(int gun_index=0;gun_index < gunTotalNumber;gun_index++)
	{
		// ClockAlign MeterValue
		if((server_sign == TRUE) && ((atoi((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData) > 0)?((getTimePassSinceToday(gun_index)%(atoi((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData)))==0):FALSE))
		{
			if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex = ((gun_index==2) ? 1: 0);
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < CHAdeMO_QUANTITY; index++)
				{
					// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
					if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
					{
						reqClockAlignMeter[gun_index] = 1;
					}
				}// End for CHAdeMO
			}
			else if(gunType[gun_index] == GUN_TYPE_CCS)
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex = ((gun_index==2) ? 1: 0);
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < CCS_QUANTITY; index++)
				{
					// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
					if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
					{
						reqClockAlignMeter[gun_index] = 1;
					}
				} // End for CCS
			}
			else if(gunType[gun_index] == GUN_TYPE_GBT)
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex = ((gun_index==2) ? 1: 0);
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < GB_QUANTITY; index++)
				{
					// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
					if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
					{
						reqClockAlignMeter[gun_index] = 1;
					}
				}// End for GB
			}
			else if(gunType[gun_index] == GUN_TYPE_DO)
			{
				tempIndex = gun_index;

				for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
				{
					// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
					if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
					{
						reqClockAlignMeter[gun_index] = 1;
					}
				}
			}
			else
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
				{
					tempIndex = 2;
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < AC_QUANTITY; index++)
				{
					// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
					if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
					{
						reqClockAlignMeter[gun_index] = 1;
					}
				}//End for AC
			}
		}
	}

	for(int gun_index=0;gun_index < gunTotalNumber ;gun_index++)
	{
		//==========================================
		// Check remote start without connector id
		//==========================================
		if(ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq)
		{
			int connectorIdInt = -1;

			for(uint8_t gun_index=0;gun_index<gunTotalNumber;gun_index++)
			{
				if(!cpinitateMsg.bits[gun_index].isOnCharging && (strstr((char*)ShmOCPP16DataPH->StatusNotification[gun_index].Status, "Preparing") != NULL))
				{
					connectorIdInt = (gun_index+1);
					DEBUG_INFO("Detect connector-%02d connected ready to start.\n", connectorIdInt);
					checkRemoteStart(connectorIdInt);
					ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq = 0;
					break;
				}
			}

			if(getDiffSecNow(clientTime.RemoteStartWait) > atoi((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData))
			{
				DEBUG_WARN("Remote start request without connector id wait link over %s seconds.\n", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData);
				ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq = 0;
			}
		}

		//==========================================
		// csu trigger DataTransferReq
		//==========================================
		if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16DataPH->CsMsg.bits[gun_index].DataTransferReq == 1))
		{
			sendDataTransferRequest(gun_index);
			ShmOCPP16DataPH->CsMsg.bits[gun_index].DataTransferReq = 0;
		}

		//===============================
		// CSU Trigger Authorize Request
		//===============================
		if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16DataPH->SpMsg.bits.AuthorizeReq == 1)&&(authorizeRetryTimes < 3))
		{
			sendAuthorizeRequest(0);
			authorizeRetryTimes = authorizeRetryTimes + 1;

			if(authorizeRetryTimes < 3)
				ShmOCPP16DataPH->SpMsg.bits.AuthorizeReq = 0;

		}
		else if((server_sign == TRUE) && (ShmOCPP16DataPH->SpMsg.bits.AuthorizeReq == 1) && (authorizeRetryTimes >= 3))
		{
			authorizeRetryTimes = 0;
			SetOcppConnStatus(FALSE);
			server_sign = FALSE;
		}
		else if((server_sign == FALSE) && (strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE") == 0)&&(strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE") == 0)&&(ShmOCPP16DataPH->OcppConnStatus == 0)&& (ShmOCPP16DataPH->SpMsg.bits.AuthorizeReq == 1))
		{
			sendAuthorizeRequest(0);
		}

		//==============================================
		// Charger start transaction
		//==============================================
		if(/*(server_sign == TRUE) &&*/ (ShmOCPP16DataPH->CpMsg.bits[gun_index].StartTransactionReq == 1))
		{
			ShmOCPP16DataPH->CpMsg.bits[gun_index].StartTransactionReq = 0;
			memcpy(&ShmOCPP16DataPH->StartTransaction[gun_index], &ShmOCPP16DataPH->StartTransaction[gun_index], sizeof(struct StructStartTransaction));
			sendStartTransactionRequest(gun_index);
			refreshStartTimer(&clientTime.StartTransaction);
			refreshStartTimer(&clientTime.MeterValues[gun_index]);
			//storeTempStopTransaction(gun_index);
		}

		//==============================================
		// Charger stop transaction
		//==============================================
		if(/*(server_sign == TRUE) &&*/ ((ShmOCPP16DataPH->CpMsg.bits[gun_index].StopTransactionReq == 1)))
		{
			ShmOCPP16DataPH->CpMsg.bits[gun_index].StopTransactionReq = 0;
			memcpy(&ShmOCPP16DataPH->StopTransaction[gun_index], &ShmOCPP16DataPH->StopTransaction[gun_index], sizeof(struct StructStopTransaction));
			sendStopTransactionRequest(gun_index);
			refreshStartTimer(&clientTime.StopTransaction);
			memset(&ShmOCPP16DataPH->SessionTarget[gun_index], 0x00, sizeof(struct StructSessionTarget));
		}

		//==============================================
		// Charger status report
		//==============================================
		//--- Check Mode Change ---//
		// J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DCcc

		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != ChademoPreviousSystemStatus[index]) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn != ChademoPreviousConnectorPlugIn[index]) )
					{
						// Sent unplug message for California pricing logic
						if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE) && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn == 0) && !interLock.isSentUnplug[gun_index])
						{
							uint8_t ts[36];
							getNowDatetime(ts);
							sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor);
							sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].MessageId, "ConnectorUnplugged");
							if(strcmp((char*)dmsVersion, "2.0")==0)
								sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data, "{\\\"transactionId\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId, ts);
							else
								sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId, ts);
							sendUnplugByDataTransferRequest(gun_index);
							interLock.isSentUnplug[gun_index] = 1;
						}
						else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE))
						{
							interLock.isSentUnplug[gun_index] = 0;
						}

						ChademoPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus;
						ChademoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn;
						cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;

						if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus <= SYS_MODE_IDLE))) // complete
						{
							sprintf(filenmae,"/Storage/OCPP_PH/TxProfile_%d.json",(gun_index+1));
							if((access(filenmae,F_OK))!=-1)
							{
								DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");

								sprintf(str,"rm -f %s",filenmae);
								system(str);
							}
						}
					}

					cpinitateMsg.bits[gun_index].isOnCharging = ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING)?1:0);

				#if 1 // for TempStopTransaction
					if(((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE)) &&
					   (ShmOCPP16DataPH->CpMsg.bits[gun_index].StopTransactionReq == 0))
					{
						checkTempStopTransaction(gun_index);
					}
				#endif
				}
			}
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{

			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != CcsPreviousSystemStatus[index]) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn != CcsPreviousConnectorPlugIn[index]) )//if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != CcsPreviousSystemStatus[index]/*PRE_SYS_MODE[gun_index]*/ )
					{
						// Sent unplug message for California pricing logic
						if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE) && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn == 0) && !interLock.isSentUnplug[gun_index])
						{
							uint8_t ts[36];
							getNowDatetime(ts);
							sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor);
							sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].MessageId, "ConnectorUnplugged");
							if(strcmp((char*)dmsVersion, "2.0")==0)
								sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data, "{\\\"transactionId\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId, ts);
							else
								sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId, ts);
							sendUnplugByDataTransferRequest(gun_index);
							interLock.isSentUnplug[gun_index] = 1;
						}
						else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE))
						{
							interLock.isSentUnplug[gun_index] = 0;
						}

						CcsPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus;
						CcsPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn;
						cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;

						if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_IDLE))) // complete
						{
							sprintf(filenmae,"/Storage/OCPP_PH/TxProfile_%d.json",(gun_index+1));
							if((access(filenmae,F_OK))!=-1)
							{
								DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
								sprintf(str,"rm -f %s",filenmae);
								system(str);
							}
						}
					}

					cpinitateMsg.bits[gun_index].isOnCharging = ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING)?1:0);

				#if 1 // for TempStopTransaction
					if(((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE)) &&
					   (ShmOCPP16DataPH->CpMsg.bits[gun_index].StopTransactionReq == 0))
					{
						checkTempStopTransaction(gun_index);
					}
				#endif
				}
			}
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{

			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}


			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != GbPreviousSystemStatus[index]) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn != GbPreviousConnectorPlugIn[index]) )
					{
						// Sent unplug message for California pricing logic
						if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE) && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn == 0) && !interLock.isSentUnplug[gun_index])
						{
							uint8_t ts[36];
							getNowDatetime(ts);
							sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor);
							sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].MessageId, "ConnectorUnplugged");
							if(strcmp((char*)dmsVersion, "2.0")==0)
								sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data, "{\\\"transactionId\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId, ts);
							else
								sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId, ts);
							sendUnplugByDataTransferRequest(gun_index);
							interLock.isSentUnplug[gun_index] = 1;
						}
						else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE))
						{
							interLock.isSentUnplug[gun_index] = 0;
						}

						GbPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus;
						GbPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn;
						cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;

						if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus <= SYS_MODE_IDLE))) // complete
						{
							sprintf(filenmae,"/Storage/OCPP_PH/TxProfile_%d.json",(gun_index+1));
							if((access(filenmae,F_OK))!=-1)
							{
								DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
								sprintf(str,"rm -f %s",filenmae);
								system(str);
							}
						}
					}

					cpinitateMsg.bits[gun_index].isOnCharging = ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING)?1:0);

				#if 1 // for TempStopTransaction
					if(((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE)) &&
					   (ShmOCPP16DataPH->CpMsg.bits[gun_index].StopTransactionReq == 0))
					{
						checkTempStopTransaction(gun_index);
					}
				#endif
				}
			}

		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != DoPreviousSystemStatus[index]) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn != DoPreviousConnectorPlugIn[index]) )
					{
						// Sent unplug message for California pricing logic
						if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE) && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn == 0) && !interLock.isSentUnplug[gun_index])
						{
							uint8_t ts[36];
							getNowDatetime(ts);
							sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor);
							sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].MessageId, "ConnectorUnplugged");
							if(strcmp((char*)dmsVersion, "2.0")==0)
								sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data, "{\\\"transactionId\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId, ts);
							else
								sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId, ts);
							sendUnplugByDataTransferRequest(gun_index);
							interLock.isSentUnplug[gun_index] = 1;
						}
						else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_IDLE))
						{
							interLock.isSentUnplug[gun_index] = 0;
						}

						DoPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus;
						DoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn;
						cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;

						if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus <= SYS_MODE_IDLE))) // complete
						{
							sprintf(filenmae,"/Storage/OCPP_PH/TxProfile_%d.json",(gun_index+1));
							if((access(filenmae,F_OK))!=-1)
							{
								DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
								sprintf(str,"rm -f %s",filenmae);
								system(str);
							}
						}
					}

					cpinitateMsg.bits[gun_index].isOnCharging = ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING)?1:0);

				#if 1 // for TempStopTransaction
					if(((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_IDLE)) &&
					   (ShmOCPP16DataPH->CpMsg.bits[gun_index].StopTransactionReq == 0))
					{
						checkTempStopTransaction(gun_index);
					}
				#endif
				}
			}
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}


			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != AcPreviousSystemStatus[index]) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState != AcPreviousConnectorPlugIn[index]) )
					{
						// Sent unplug message for California pricing logic
						if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_A) && !interLock.isSentUnplug[gun_index])
						{
							uint8_t ts[36];
							getNowDatetime(ts);
							sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor);
							sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].MessageId, "ConnectorUnplugged");
							if(strcmp((char*)dmsVersion, "2.0")==0)
								sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data, "{\\\"transactionId\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId, ts);
							else
								sprintf((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId, ts);
							sendUnplugByDataTransferRequest(gun_index);
							interLock.isSentUnplug[gun_index] = 1;
						}
						else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE))
						{
							interLock.isSentUnplug[gun_index] = 0;
						}

						AcPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus;
						AcPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState;
						cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;

						if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus <= SYS_MODE_IDLE))) // complete
						{
							sprintf(filenmae,"/Storage/OCPP_PH/TxProfile_%d.json",(gun_index+1));
							if((access(filenmae,F_OK))!=-1)
							{
								DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");

								sprintf(str,"rm -f %s",filenmae);
								system(str);
							}
						}
					}

					cpinitateMsg.bits[gun_index].isOnCharging = ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)?1:0);

				#if 1 // for TempStopTransaction
					if(((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE)) &&
					   (ShmOCPP16DataPH->CpMsg.bits[gun_index].StopTransactionReq == 0))
					{
						checkTempStopTransaction(gun_index);
					}
				#endif
				}
			}// END
		}

		if(isWebsocketSendable && (server_sign == TRUE) && (getDiffSecNow(clientTime.StatusNotification[gun_index]) >= 1) &&
			(
				(cpinitateMsg.bits[gun_index].StatusNotificationReq == 1) || (cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq == 1) ||
				((strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "TRUE") == 0) && (getDiffSecNow(clientTime.StatusNotification[gun_index]) >= atoi((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData)))
			)
		  )
		{
			memcpy(&ShmOCPP16DataPH->StatusNotification[gun_index], &ShmOCPP16DataPH->StatusNotification[gun_index], sizeof(struct StructStatusNotification));
			sendStatusNotificationRequest(gun_index);
			refreshStartTimer(&clientTime.StatusNotification[gun_index]);
		}

		//==============================================
		// TCCI reader status report
		//==============================================
		if(ShmOCPP16DataPH->TcciCustomData.ReaderStatus[gun_index].ReportReaderStatusReq == 1)
		{
			reportReaderStatus(gun_index);
			ShmOCPP16DataPH->TcciCustomData.ReaderStatus[gun_index].ReportReaderStatusReq = 0;
		}

		//==============================================
		// CSU Trigger or timer timeout refresh Smart Charging Profile
	    //==============================================
		 if((ShmOCPP16DataPH->CSUMsg.bits[gun_index].ChargingProfileReq == 1) ||
		   ((cpinitateMsg.bits[gun_index].isOnCharging) && (atoi((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData) > 0) && (getDiffSecNow(clientTime.CharingProfileRefresh[gun_index]) > atoi((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData))))
		{
	    	checkCompositeSchedule(gun_index+1, 86400, &ShmOCPP16DataPH->SmartChargingProfile[gun_index], TRUE);
	    	ShmOCPP16DataPH->CSUMsg.bits[gun_index].ChargingProfileReq = 0;

	    	refreshStartTimer(&clientTime.CharingProfileRefresh[gun_index]);
	    }

		//==============================================
		// Meter report
		//==============================================
		// Trigger MeterValue
		if(isWebsocketSendable && (server_sign == TRUE) && cpinitateMsg.bits[gun_index].TriggerMeterValue)
		{
			sendMeterValuesRequest(gun_index, ReadingContext_Trigger);
			cpinitateMsg.bits[gun_index].TriggerMeterValue = 0;
		}

		// Clock-aligned Meter value
		if(isWebsocketSendable && (reqClockAlignMeter[gun_index] == 1))
		{
			sendMeterValuesRequest(gun_index, ReadingContext_Sample_Clock);
			reqClockAlignMeter[gun_index] = 0;
		}

		// Sample period MeterValue
		if(((getDiffSecNow(clientTime.MeterValues[gun_index]) >= ((atoi((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData))>3?(atoi((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData)- 1):3))))
				{
			//check Transaction active
			if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex = ((gun_index==2) ? 1: 0);
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < CHAdeMO_QUANTITY; index++)
				{
					// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
					if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
					{
						if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING)
						{
							reqSampleMeter[gun_index] = 1;
						}
					}
				}// End for CHAdeMO
			}
			else if(gunType[gun_index] == GUN_TYPE_CCS)
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex = ((gun_index==2) ? 1: 0);
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < CCS_QUANTITY; index++)
				{
					// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
					if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
					{
						if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING)
						{
							reqSampleMeter[gun_index] = 1;
						}
					}
				} // End for CCS
			}
			else if(gunType[gun_index] == GUN_TYPE_GBT)
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex = ((gun_index==2) ? 1: 0);
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < GB_QUANTITY; index++)
				{
					// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
					if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
					{
						if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING)
						{
							reqSampleMeter[gun_index] = 1;
						}
					}
				}// End for GB
			}
			else if(gunType[gun_index] == GUN_TYPE_DO)
			{
				tempIndex = gun_index;

				for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
				{
					// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
					if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
					{
						if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING)
						{
							reqSampleMeter[gun_index] = 1;
						}
					}
				}
			}
			else
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
				{
					tempIndex = 2;
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < AC_QUANTITY; index++)
				{
					// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
					if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
					{
						if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING))
						{
							reqSampleMeter[gun_index] = 1;
						}
					}
				}//End for AC
			}

			if(reqSampleMeter[gun_index] == 1)
			{
				if(atoi((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData)>0)
					sendMeterValuesRequest(gun_index, ReadingContext_Sample_Periodic);

				//storeTempStopTransaction(gun_index);
				reqSampleMeter[gun_index] = 0;
			}

			refreshStartTimer(&clientTime.MeterValues[gun_index]);
		}

		//==============================================
		// Check Connector reserved
		//==============================================
		//===============================
		// Check if Reserve is expired
		//===============================
		if((server_sign == TRUE) && (ShmOCPP16DataPH->ReserveNow[gun_index].ExpiryDate[0] != 0) )
		{
			double diff_t;
			struct tm tp;
			// current time
			time_t t = time(NULL);
			strptime((char *)ShmOCPP16DataPH->ReserveNow[gun_index].ExpiryDate, "%Y-%m-%dT%H:%M:%S", &tp);
			tp.tm_isdst = -1;
			time_t utc = mktime(&tp);
			diff_t = difftime(utc, t);

			if(diff_t <= 0)
			{
				DEBUG_INFO("reserve expired.\n");
				memset(ShmOCPP16DataPH->ReserveNow[gun_index].ExpiryDate,0,ARRAY_SIZE(ShmOCPP16DataPH->ReserveNow[gun_index].ExpiryDate));
			}

		}//END OF Check if Reserve is expired

		//==========================================
		// csu trigger FirmwareStatusNotificationReq
		//==========================================
		if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq == 1))
		{
			sendFirmwareStatusNotificationRequest((char *)ShmOCPP16DataPH->FirmwareStatusNotification.Status);
		}

		//==========================================
		// csu trigger DiagnosticsStatusNotificationReq
		//==========================================
		if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq == 1))
		{
			sendDiagnosticsStatusNotificationRequest((char *)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status);
		}

		//==========================================
		// csu trigger CancelReservationConf
		//==========================================
		if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16DataPH->CsMsg.bits[gun_index].CancelReservationConf == 1))
		{
			sendCancelReservationConfirmation((char *)ShmOCPP16DataPH->CancelReservation[gun_index].guid,(char *)ShmOCPP16DataPH->CancelReservation[gun_index].ResponseStatus);
			ShmOCPP16DataPH->CsMsg.bits[gun_index].CancelReservationConf = 0;
		}

		//==========================================
		// csu trigger ChangeAvailabilityConf
		//==========================================
		if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16DataPH->CsMsg.bits[gun_index].ChangeAvailabilityConf == 1))
		{
			//sendChangeAvailabilityConfirmation(,(char *)ShmOCPP16DataPH->ChangeAvailability[gun_index].ResponseStatus);
		}

		//==========================================
		// csu trigger UnlockConnectorConf
		//==========================================
		if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16DataPH->CsMsg.bits[gun_index].UnlockConnectorConf == 1))
		{
			sendUnlockConnectorConfirmation((char *)ShmOCPP16DataPH->UnlockConnector[gun_index].guid, (char *)ShmOCPP16DataPH->UnlockConnector[gun_index].ResponseStatus);
			ShmOCPP16DataPH->CsMsg.bits[gun_index].UnlockConnectorConf = 0;
		}

		//==========================================
		// csu trigger ReserveNowConf
		//==========================================
		if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16DataPH->CsMsg.bits[gun_index].ReserveNowConf == 1))
		{
			sendReserveNowTransactionConfirmation((char *)ShmOCPP16DataPH->ReserveNow[gun_index].guid, (char *)ShmOCPP16DataPH->ReserveNow[gun_index].ResponseStatus);
			ShmOCPP16DataPH->CsMsg.bits[gun_index].ReserveNowConf = 0;
		}

		if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16DataPH->SpMsg.bits.SignCertificateReq == 1) && (access("/Storage/OCPP_PH/certCP.csr",F_OK) != -1))
		{
			sendSignCertificateRequest();
		}
	}
}

//==========================================
// send request routine
//==========================================
int sendAuthorizeRequest(int gun_index)
{
	mtrace();
	int result = FAIL;
	char message[100]={0};
	char guid[37];
	char tempdata[65]={0};

	DEBUG_INFO("sendAuthorizeRequest...\n");
	memset(&(ShmOCPP16DataPH->Authorize.ResponseIdTagInfo),0,sizeof(struct StructIdTagInfo));

	//Local Authorize
	if((strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData , "TRUE")==0) &&(ShmOCPP16DataPH->OcppConnStatus == 0))
	{
		DEBUG_INFO("Allow OfflineTx UnknownId Pass.\n");
		strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.ExpiryDate, "");
		strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.ParentIdTag, "");
		strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.Status, "Accepted");
		result = PASS;
		ShmOCPP16DataPH->SpMsg.bits.AuthorizeReq = 0;
		ShmOCPP16DataPH->SpMsg.bits.AuthorizeConf = 1; // inform csu
		authorizeRetryTimes = 0;
		return result;

	}
	else if(((strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE") == 0)&&(strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE") == 0)&&(ShmOCPP16DataPH->OcppConnStatus == 0))||
			((strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "TRUE") == 0)&&(strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE") == 0)))
	{
		// Query from cache
		DEBUG_INFO("Authorize from cache.\n");
		OCPP_getIdTagFromLocalCache((char *)ShmSysConfigAndInfo->SysConfig.UserId);

		// Query from list
		if((strcmp(idTagQuery.idTagstr,"") == 0) || (strcmp(idTagQuery.idTagstatus,"Accepted") != 0) )
		{
			DEBUG_INFO("Authorize from list.\n");
			OCPP_getIdTagFromLocalList((char *)ShmSysConfigAndInfo->SysConfig.UserId);
		}

		if((strcmp(idTagQuery.idTagstr,"") == 0) || (strcmp(idTagQuery.idTagstatus,"Accepted") != 0) )
		{
			if(strcmp(idTagQuery.idTagstr,"") == 0)
			{
				DEBUG_INFO("Local Authorization Fail, Card %s is not in local cache and list.\n", ShmSysConfigAndInfo->SysConfig.UserId);
			}
			else if(strcmp(idTagQuery.idTagstatus,"Accepted") != 0)
			{
				DEBUG_INFO("Local Authorization Fail, Card %s is not Accepted.\n", idTagQuery.idTagstr);
			}

			if(!GetOcppConnStatus())
			{
				DEBUG_INFO("off-line Local Authorization Fail.\n");
				strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.ExpiryDate, idTagQuery.expiryDate);
				strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.ParentIdTag, idTagQuery.parentIdTag);
				strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.Status, "Invalid");
				DEBUG_INFO("ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.Status: %s \n", ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.Status);
				ShmOCPP16DataPH->SpMsg.bits.AuthorizeReq = 0;
				ShmOCPP16DataPH->SpMsg.bits.AuthorizeConf = 1; // inform csu
				authorizeRetryTimes = 0;
				return result;
			}
		}
		else
		{
			DEBUG_INFO("off-line Local Authorization get result !!!!\n");
			strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.ExpiryDate, idTagQuery.expiryDate);
			strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.ParentIdTag, idTagQuery.parentIdTag);

			if(isOvertNow((uint8_t*)&idTagQuery.expiryDate[0]))
				sprintf((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.Status, "Expired");
			else
				strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.Status, idTagQuery.idTagstatus);

			DEBUG_INFO("ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.Status: %s \n", ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.Status);
			result = PASS;
			ShmOCPP16DataPH->SpMsg.bits.AuthorizeReq = 0;
			ShmOCPP16DataPH->SpMsg.bits.AuthorizeConf = 1; // inform csu
			authorizeRetryTimes = 0;
			return result;
		}
	}

	//initialize  struct Authorize
	memset(&(ShmOCPP16DataPH->Authorize), 0 , sizeof(struct StructAuthorize));

	//get data from shared memory
	strcpy((char *)ShmOCPP16DataPH->Authorize.IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);

	random_uuid(guid);
	sprintf(message,"[%d,\"%s\",\"Authorize\",{\"idTag\":\"%s\"}]",MESSAGE_TYPE_CALL, guid, ShmOCPP16DataPH->Authorize.IdTag);
	LWS_Send(message);

	sprintf(tempdata, "Authorize,%d", gun_index);
	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)
	{
		result = PASS;
		DEBUG_INFO("Authorize mapItem pass\n");
	}

	ShmOCPP16DataPH->SpMsg.bits.AuthorizeReq = 0;
	return result;
}

int sendBootNotificationRequest(void)
{
	mtrace();
	int result = FAIL;
	char message[500]={0}, payload[700]={0};
    char guid[37]={0};
    char tempdata[65]={0};

	// Fill BootNotification fields
	strcpy((char *)ShmOCPP16DataPH->BootNotification.CbSN,(const char *)ShmOCPP16DataPH->ChargeBoxId);
	strcpy((char *)ShmOCPP16DataPH->BootNotification.CpModel,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName);
	strcpy((char *)ShmOCPP16DataPH->BootNotification.CpSN,(const char *)ShmSysConfigAndInfo->SysConfig.SerialNumber);
	strcpy((char *)ShmOCPP16DataPH->BootNotification.CpVendor,(const char *)ShmSysConfigAndInfo->SysConfig.chargePointVendor);
	strcpy((char *)ShmOCPP16DataPH->BootNotification.CpFwVersion,(const char *)ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev);
	strcpy((char *)ShmOCPP16DataPH->BootNotification.CpIccid,(const char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimIccid);
	strcpy((char *)ShmOCPP16DataPH->BootNotification.CpImsi,(const char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi);

	sprintf(payload, "{\"chargeBoxSerialNumber\":\"%s\",\"chargePointModel\":\"%s\",\"chargePointSerialNumber\":\"%s\",\"chargePointVendor\":\"%s\",\"firmwareVersion\":\"%s\",\"iccid\":\"%s\",\"imsi\":\"%s\"} ",
				ShmOCPP16DataPH->ChargeBoxId
				,ShmSysConfigAndInfo->SysConfig.ModelName
				,ShmSysConfigAndInfo->SysConfig.SerialNumber
				,ShmSysConfigAndInfo->SysConfig.chargePointVendor
				,ShmOCPP16DataPH->BootNotification.CpFwVersion
				,ShmOCPP16DataPH->BootNotification.CpIccid
				,ShmOCPP16DataPH->BootNotification.CpImsi);

	random_uuid(guid);

	sprintf(message,"[%d,\"%s\",\"%s\",%s]",MESSAGE_TYPE_CALL, guid, "BootNotification", payload);
	LWS_Send(message);
	sprintf(tempdata, "BootNotification,0");
	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid,mapItem, tempdata/*(void**)(&mapItem)*//*(void**)(&mapItem)*/) ==  MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
	{
		result = PASS;
	}

	memset(queuedata, 0, ARRAY_SIZE(queuedata));
	strcpy(queuedata,message);

	return result;
}

int sendDataTransferRequest(int gun_index)
{
	mtrace();
	char message[10240]={0};
	char guid[37]={0};
	char tempdata[65]={0};
	int result = FAIL;

	json_object *DataTransfer = json_object_new_object();

	json_object_object_add(DataTransfer, "vendorId", json_object_new_string((char*)ShmOCPP16DataPH->DataTransfer[gun_index].VendorId));
	json_object_object_add(DataTransfer, "messageId", json_object_new_string((char*)ShmOCPP16DataPH->DataTransfer[gun_index].MessageId));
	json_object_object_add(DataTransfer, "data", json_object_new_string((char*)ShmOCPP16DataPH->DataTransfer[gun_index].Data));


	random_uuid(guid);
	sprintf(message,"[%d,\"%s\",\"DataTransfer\",%s]", MESSAGE_TYPE_CALL,
													   guid,
													   json_object_to_json_string_ext(DataTransfer, JSON_C_TO_STRING_PLAIN));
	json_object_put(DataTransfer);

	LWS_Send(message);
	sprintf(tempdata, "DataTransfer,%d", gun_index);
	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)
	{
		result = PASS;
		DEBUG_INFO("DataTransfer mapItem pass\n");
	}

	return result;
}

int sendUnplugByDataTransferRequest(int gun_index)
{
	mtrace();
	char message[10752]={0};
	char guid[37]={0};
	char tempdata[65]={0};
	int result = FAIL;

	random_uuid(guid);
	sprintf(message,"%d,[%d,\"%s\",\"DataTransfer\",{\"vendorId\":\"%s\",\"messageId\":\"%s\",\"data\":\"%s\"}]",
			(gun_index+1),
			MESSAGE_TYPE_CALL,
			guid,
			ShmOCPP16DataPH->DataTransfer[gun_index].VendorId,
			ShmOCPP16DataPH->DataTransfer[gun_index].MessageId,
			ShmOCPP16DataPH->DataTransfer[gun_index].Data);

	sprintf(tempdata, "DataTransfer,%d", (gun_index + 1));
	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)
	{
		result = PASS;
		DEBUG_INFO("DataTransfer mapItem pass\n");
	}

	queue_operation(QUEUE_OPERATION_ADD, guid, message);

	return result;
}

int sendDiagnosticsStatusNotificationRequest(char *status)
{
	mtrace();
	int result = FAIL;
	char message[110]={0};
	char guid[37]={0};
	char tempdata[65]={0};

	//[ 2, "9f7bced1-b8b1-40ec-b3bb-2e15630e3cdc", "DiagnosticsStatusNotification", { "status": "Idle" } ]

	DEBUG_INFO("sendDiagnosticsStatusNotificationRequest...\n");
	sprintf((char *)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status,"%s",(const char *)status);
	random_uuid(guid);

	sprintf(message,"[%d,\"%s\",\"DiagnosticsStatusNotification\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALL, guid,status);
	LWS_SendNow(message);

	sprintf(tempdata, "DiagnosticsStatusNotification,%d", 0);

	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)
	{
		result = PASS;
		//DEBUG_INFO("DiagnosticsStatusNotification mapItem pass\n");
	}

	//#ifdef SystemLogMessage
	//DEBUG_INFO(">>>>>DiagnosticsStatusNotification request\n");
	//DEBUG_INFO("Message: %s\n", SendBuffer);
	//DEBUG_INFO("After push hash length: %d\n", hashmapForMessageLength()/*hashmap_length(hashMap)*/);
	//#endif

	ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 0;
	ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationConf = 0;

	//record status
	if(strcmp(status,"Idle")==0)
	{
		DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_IDLE;
	}
	else if(strcmp(status,"Uploaded")==0)
	{
		DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_UPLOADED;
	}
	else if(strcmp(status,"UploadFailed")==0)
	{
		DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_UPLOAD_FAIL;
	}
	else if(strcmp(status,"Uploading")==0)
	{
		DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_UPLOADING;
	}

	return result;
}

int sendFirmwareStatusNotificationRequest(char *status)
{
	mtrace();
	int result = FAIL;
	char message[110]={0};
	char guid[37]={0};
	char tempdata[65]={0};

//	[ 2, "eb841424-ae56-42b0-8c84-d5296018c33c", "FirmwareStatusNotification", { "status": "Downloaded" } ]

	DEBUG_INFO("sendFirmwareStatusNotificationRequest \n");
	sprintf((char *)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s", (const char *)status);
	random_uuid(guid);

	sprintf(message,"[%d,\"%s\",\"FirmwareStatusNotification\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALL, guid, status);
	LWS_SendNow(message);

	sprintf(tempdata, "FirmwareStatusNotification,%d", 0);

	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, mapItem[0].key_string, mapItem[0].key_value/*mapItem*/, (void**)(&mapItem)/*(void**)(&mapItem)*/) ==  MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
	{
		result = PASS;
		DEBUG_INFO("FirmwareStatusNotification mapItem pass\n");
	}

	//#ifdef SystemLogMessage
	//DEBUG_INFO(">>>>>FirmwareStatusNotification request\n");
	//DEBUG_INFO("Message: %s\n", SendBuffer);
	//#endif

	ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 0;
	ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationConf = 0;

	//record status
	if(strcmp(status,"Downloaded")==0)
	{
		 FirmwareStatusNotificationStatus = FIRMWARE_STATUS_DOWNLOADED;
	}
	else if(strcmp(status,"DownloadFailed")==0)
	{
		FirmwareStatusNotificationStatus = FIRMWARE_STATUS_DOWNLOAD_FAILED;
	}
	else if(strcmp(status,"Downloading")==0)
	{
		FirmwareStatusNotificationStatus = FIRMWARE_STATUS_DOWNLOADING;
	}
	else if(strcmp(status,"Idle")==0)
	{
		FirmwareStatusNotificationStatus = FIRMWARE_STATUS_IDLE;
	}
	else if(strcmp(status,"InstallationFailed")==0)
	{
		FirmwareStatusNotificationStatus = FIRMWARE_STATUS_INSTALLATION_FAILED;
	}
	else if(strcmp(status,"Installing")==0)
	{
		FirmwareStatusNotificationStatus = FIRMWARE_STATUS_INSTALLING;
	}
	else if(strcmp(status,"Installed")==0)
	{
		FirmwareStatusNotificationStatus = FIRMWARE_STATUS_INSTALLED;
	}


	return result;
}

int sendHeartbeatRequest(int gun_index)
{
	mtrace();
	int result = FAIL;

	char message[80]={0};
	char guid[37]={0};
	char tempdata[65]={0};

	random_uuid(guid);

	sprintf(message, "[%d,\"%s\",\"Heartbeat\",{ }]"
					, MESSAGE_TYPE_CALL
					, guid );

	LWS_Send(message);

	sprintf(tempdata, "Heartbeat,%d", 0);

	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid, mapItem, tempdata/*(void**)(&mapItem)*/) ==  MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
	{
		result = PASS;
	}

	return result;
}

int sendStartTransactionRequest(int gun_index)
{
	mtrace();
	int result = FAIL;
	char message[250]={0};
	char guid[37]={0};
	struct timeval tmnow;
	struct tm *tm;
	char buf[28];//, usec_buf[6];
	char tempdata[65]={0};
	int tempIndex = 0;

	DEBUG_INFO("sendStartTransactionRequest...\n");
	gettimeofday(&tmnow, NULL);

	time_t t;
	t = time(NULL);
	/*UTC time and date*/
	tm = gmtime(&t);
	strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm);
#if 0 // remove temporally
	strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
	strcat(buf,".");
	sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
	strcat(buf,usec_buf);
#endif

	ShmOCPP16DataPH->StartTransaction[gun_index].ConnectorId = gun_index +1 ; // gun start from 1~
	strcpy((char *)ShmOCPP16DataPH->StartTransaction[gun_index].Timestamp, buf);
	//strcpy((char *)ShmOCPP16DataPH->StartTransaction[gun_index].IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);

	// clear StartTransaction Response
	strcpy((char *)ShmOCPP16DataPH->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "");
	strcpy((char *)ShmOCPP16DataPH->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "");
	strcpy((char *)ShmOCPP16DataPH->StartTransaction[gun_index].ResponseIdTagInfo.Status, "");
	ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId = 0;
	refreshStartTimer(&clientTime.MeterValues[gun_index]);
	//J: CHAdeMO   U: CCS1 combo   E: CCS2 combo  G: GBT DCcc

	if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < CHAdeMO_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StartTransaction[gun_index].MeterStart = (int)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption*1000);
				ShmOCPP16DataPH->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId;
				periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption;
			}
		}

	}
	else if(gunType[gun_index] == GUN_TYPE_CCS)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < CCS_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StartTransaction[gun_index].MeterStart = (int)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption*1000);
				ShmOCPP16DataPH->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId;
				periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption;
			}
		}
	}
	else if(gunType[gun_index] == GUN_TYPE_GBT)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < GB_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StartTransaction[gun_index].MeterStart = (int)(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption*1000);
				ShmOCPP16DataPH->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId;
				periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption;
			}
		}
	}
	else if(gunType[gun_index] == GUN_TYPE_DO)
	{
		tempIndex = gun_index;

		for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
			{
				ShmOCPP16DataPH->StartTransaction[gun_index].MeterStart = (int)(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption*1000);
				ShmOCPP16DataPH->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId;
				periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption;
			}
		}
	}
	else
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
		{
			tempIndex = 2;
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < AC_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StartTransaction[gun_index].MeterStart = (int)(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption*1000);
				ShmOCPP16DataPH->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId;
				periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption;
			}
		}
	}

	random_uuid(guid);

	if(ShmOCPP16DataPH->StartTransaction[gun_index].ReservationId == -1) // No Reservation
	{
		sprintf(message, "%d,[%d,\"%s\",\"StartTransaction\",{\"connectorId\":%d,\"idTag\":\"%s\",\"meterStart\":%d,\"timestamp\":\"%s\"}]"
						, gun_index +1
						, MESSAGE_TYPE_CALL
						, guid
						, ShmOCPP16DataPH->StartTransaction[gun_index].ConnectorId
						, ShmOCPP16DataPH->StartTransaction[gun_index].IdTag
						, ShmOCPP16DataPH->StartTransaction[gun_index].MeterStart
						, ShmOCPP16DataPH->StartTransaction[gun_index].Timestamp );

	}
	else
	{
		sprintf(message, "%d,[%d,\"%s\",\"StartTransaction\",{\"connectorId\":%d,\"idTag\":\"%s\",\"meterStart\":%d,\"reservationId\":%d,\"timestamp\":\"%s\"}]"
						, gun_index +1
						, MESSAGE_TYPE_CALL
						, guid
						, ShmOCPP16DataPH->StartTransaction[gun_index].ConnectorId
						, ShmOCPP16DataPH->StartTransaction[gun_index].IdTag
						, ShmOCPP16DataPH->StartTransaction[gun_index].MeterStart
						, ShmOCPP16DataPH->StartTransaction[gun_index].ReservationId
						, ShmOCPP16DataPH->StartTransaction[gun_index].Timestamp );
	}


#if 1
	sprintf(tempdata, "StartTransaction,%d", (gun_index));
	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, mapItem[0].key_string, mapItem[0].key_value/*mapItem*/, (void**)(&mapItem)/*(void**)(&mapItem)*/) ==  MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
	{
		result = PASS;
	}
#endif

	strcpy(queuedata, message);
	queue_operation(QUEUE_OPERATION_ADD, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
	OCPP_insert_transaction_msg(YES, queuedata);
	return result;
}

int sendStatusNotificationRequest(int gun_index)
{
	mtrace();
	int result = FAIL;

	char message[600]={0};
	char guid[37];
	int currentStatus = 0;
	struct timeval tmnow;
	struct tm *tm;
	char buf[28];//, usec_buf[6];
	char tempdata[65]={0};
	int tempIndex = 0;
	uint8_t isStateChanged = TRUE;
	uint8_t isContentIllegal = TRUE;

	DEBUG_INFO("sendStatusNotificationRequest...\n");
	gettimeofday(&tmnow, NULL);

	time_t t;
	t = time(NULL);
	/*UTC time and date*/
	tm = gmtime(&t);
	strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm);
#if 0 // remove temporally
	strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
	strcat(buf,".");
	sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
	strcat(buf,usec_buf);
#endif
	//printf("%s",buf);

	ShmOCPP16DataPH->StatusNotification[gun_index].ConnectorId = (gun_index + 1);

	//strcpy(ShmOCPP16DataPH->StatusNotification[gun_index].ErrorCode, "NoError"); --- CSU Setting

	// it's option
	strcpy((char *)ShmOCPP16DataPH->StatusNotification[gun_index].Info, "");

/*
	 enum _SYSTEM_STATUS
{
S_BOOTING               = 0,
S_IDLE,                 = 1
S_AUTHORIZING,          =2
S_REASSIGN_CHECK,       =3
S_REASSIGN,             =4
S_PRECHARGE,            =5
S_PREPARING_FOR_EV,     =6
S_PREPARING_FOR_EVSE,   =7
S_CHARGING,             =8
S_TERMINATING,          =9
S_COMPLETE,             =10
S_ALARM,                =11
S_FAULT                 =12
}

*/

	//check Transaction active
	//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DCcc
	if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < CHAdeMO_QUANTITY; index++)
		{
			if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex))
			{
				if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE)//S_IDLE
				{
					if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn == 1) // //0: unplug, 1: Plug-in
					{
						currentStatus = Preparing; //OCPP Status: Preparing
					}
					else
					{
						currentStatus = Available; //OCPP Status: Available
					}
				}
				else if ( ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus >= SYS_MODE_AUTHORIZING)&&( ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus <= SYS_MODE_PREPARE_FOR_EVSE)) ||
				          ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus >= SYS_MODE_CCS_PRECHARGE_STEP0) && ( ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1) )
						) //S_PRECHARGE
				{
					currentStatus = Preparing; //OCPP Status: Preparing
				}
				else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
				{
					currentStatus = Charging; //OCPP Status: Charging
				}
				else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE
				{
					currentStatus = Finishing; //OCPP Status: Finishing
				}
				else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING   ---> SuspendedEV
				{
					currentStatus = SuspendedEV; //OCPP Status: SuspendedEV
				}
				else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //  ---> Unavailable
				{
					currentStatus = Unavailable; //OCPP Status: Unavailable
				}
				else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM,S_FAULT   ---> Faulted
				{
					currentStatus = Faulted; //OCPP Status: Faulted
				}
				else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION) //    ---> Reserved
				{
					currentStatus = Reserved; //OCPP Status: Reserved
				}
			} //end of the same index
		}//end of for CHAdeMO_QUANTITY

	}
	else if(gunType[gun_index] == GUN_TYPE_CCS)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < CCS_QUANTITY; index++)
		{
			if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
				{

					if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn == 1) //0: unplug, 1: Plug-in
					{
						currentStatus = Preparing; //OCPP Status: Preparing
					}
					else
					{
						currentStatus = Available; //OCPP Status: Available
					}
				}
				else if ( ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus >= SYS_MODE_AUTHORIZING)&&( ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_PREPARE_FOR_EVSE)) ||
				          ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus >= SYS_MODE_CCS_PRECHARGE_STEP0) && ( ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1) )
						) //S_PRECHARGE
				{
					currentStatus = Preparing; //OCPP Status: Preparing
				}
				else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
				{
					currentStatus = Charging; //OCPP Status: Charging
				}
				else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE
				{
					currentStatus = Finishing; //OCPP Status: Finishing
				}
				else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING) //S_TERMINATING  ---> SuspendedEV
				{
					currentStatus = SuspendedEV; //OCPP Status: SuspendedEV
				}
				else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //   ---> Unavailable
				{
					currentStatus = Unavailable; //OCPP Status : Unavailable
				}
				else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ,S_FAULT   ---> Faulted
				{
					currentStatus = Faulted; //OCPP Status: Faulted
				}
				else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION) //   ---> Reserved
				{
					currentStatus = Reserved; //OCPP Status: Reserved
				}
			} //end of the same index
		} // end of for CCS_QUANTITY
	}
	else if(gunType[gun_index] == GUN_TYPE_GBT)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < GB_QUANTITY; index++)
		{
			if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
				{

					if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn == 1) // //0: unplug, 1: Plug-in
					{
						currentStatus = Preparing; //OCPP Status: Preparing
					}
					else
					{
						currentStatus = Available; //OCPP Status: Available
					}
				}
				else if ( ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus >= SYS_MODE_AUTHORIZING)&&( ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus <= SYS_MODE_PREPARE_FOR_EVSE)) ||
				          ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus >= SYS_MODE_CCS_PRECHARGE_STEP0) && ( ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1) )
						) //S_PRECHARGE
				{
					currentStatus = Preparing; //OCPP Status: Preparing
				}
				else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
				{
					currentStatus = Charging; //OCPP Status: Charging
				}
				else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE
				{
					currentStatus = Finishing; //OCPP Status: Finishing
				}
				else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING  ---> SuspendedEV
				{
					currentStatus = SuspendedEV; //OCPP Status: SuspendedEV
				}
				else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //  ---> Unavailable
				{
					currentStatus = Unavailable; //OCPP Status: Unavailable
				}
				else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ,S_FAULT   ---> Faulted
				{
					currentStatus = Faulted; //OCPP Status: Faulted
				}
				else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION) //   ---> Reserved
				{
					currentStatus = Reserved; //OCPP Status: Reserved
				}
			} //end of the same index
		} // end of for GB_QUANTITY
	}
	else if(gunType[gun_index] == GUN_TYPE_DO)
	{
		tempIndex = gun_index;

		for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
		{
			if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_IDLE) //S_IDLE
				{

					if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn == 1) // //0: unplug, 1: Plug-in
					{
						currentStatus = Preparing; //OCPP Status: Preparing
					}
					else
					{
						currentStatus = Available; //OCPP Status: Available
					}
				}
				else if ( ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus >= SYS_MODE_AUTHORIZING) && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus <= SYS_MODE_PREPARE_FOR_EVSE)) ||
						  ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus >= SYS_MODE_CCS_PRECHARGE_STEP0) && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1) )
				) //S_PRECHARGE

				{
					currentStatus = Preparing; //OCPP Status: Preparing
				}
				else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
				{
					currentStatus = Charging; //OCPP Status: Charging
				}
				else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE
				{
					currentStatus = Finishing; //OCPP Status: Finishing
				}
				else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING  ---> SuspendedEV
				{
					currentStatus = SuspendedEV; //OCPP Status: SuspendedEV
				}
				else if ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_UPDATE)) //  ---> Unavailable
				{
					currentStatus = Unavailable; //OCPP Status: Unavailable
				}
				else if ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_ALARM)) //S_ALARM ,S_FAULT   ---> Faulted
				{
					currentStatus = Faulted; //OCPP Status: Faulted
				}
				else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_RESERVATION) //   ---> Reserved
				{
					currentStatus = Reserved; //OCPP Status: Reserved
				}
			} //end of the same index
		}
	}
	else
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
		{
			tempIndex = 2;
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < AC_QUANTITY; index++)
		{
			if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) //SYS_MODE_IDLE
				{
					if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_B) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_C) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_D))
					{
						currentStatus = Preparing; //OCPP Status: Preparing
					}
					else
					{
						currentStatus = Available; //OCPP Status: Available
					}
				}
				else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING)) //SYS_MODE_PREPARING
				{
					currentStatus = Preparing; //OCPP Status: Preparing
				}
				else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) //SYS_MODE_CHARGING
				{
					currentStatus = Charging; //OCPP Status: Charging
				}
				else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //SYS_MODE_COMPLETE
				{
					currentStatus = Finishing; //OCPP Status: Finishing
				}
				else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING   ---> SuspendedEV
				{
					if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_B))
						currentStatus = SuspendedEV; 	//OCPP Status: SuspendedEV
					else
						currentStatus = SuspendedEVSE;	//OCPP Status: SuspendedEVSE
				}
				else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //   ---> Unavailable
				{
					currentStatus = Unavailable; //OCPP Status: Unavailable
				}
				else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM,S_FAULT   ---> Faulted
				{
					currentStatus = Faulted; //OCPP Status: Faulted
				}
				else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION) //    ---> Reserved
				{
					currentStatus = Reserved; //OCPP Status: Reserved
				}
			}//end of the same index

		}//end of for AC_QUANTITY
	}

	//it's option
	if(((strstr((char *)ShmOCPP16DataPH->StatusNotification[gun_index].Status, ChargePointStatusStr[currentStatus]) != NULL) || (((currentStatus == SuspendedEV) || (currentStatus == SuspendedEVSE)) && ShmOCPP16DataPH->CsMsg.bits[gun_index].RemoteStopTransactionReq)) &&
		!cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq &&
		(strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "TRUE") != 0))
	{
		isStateChanged = FALSE;
	}
	cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq = 0;

	strcpy((char *)ShmOCPP16DataPH->StatusNotification[gun_index].Timestamp, buf);
	strcpy((char *)ShmOCPP16DataPH->StatusNotification[gun_index].VendorId, (char*)ShmSysConfigAndInfo->SysConfig.chargePointVendor);
	strcpy((char *)ShmOCPP16DataPH->StatusNotification[gun_index].Status, ChargePointStatusStr[currentStatus]);
	memcpy(ShmOCPP16DataPH->StatusNotification[gun_index].ErrorCode, ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, ARRAY_SIZE(ShmOCPP16DataPH->StatusNotification[gun_index].ErrorCode));
	memcpy(ShmOCPP16DataPH->StatusNotification[gun_index].VendorErrorCode, ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode, ARRAY_SIZE(ShmOCPP16DataPH->StatusNotification[gun_index].VendorErrorCode));

	isContentIllegal = TRUE;
	for(int index = 0; index < ARRAY_SIZE(ChargePointErrorCodeStr); index++)
	{
		if(strcmp((char *)ShmOCPP16DataPH->StatusNotification[gun_index].ErrorCode, ChargePointErrorCodeStr[index])==0)
		{
			isContentIllegal = FALSE;
			break;
		}
	}
	if(isContentIllegal)
	{
		//DEBUG_WARN("Detect illegal ErrorCode: %s \n",(char *)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode);
		strcpy((char *)ShmOCPP16DataPH->StatusNotification[gun_index].ErrorCode, ChargePointErrorCodeStr[6]);
	}

	random_uuid(guid);

	sprintf(message, "[%d,\"%s\",\"StatusNotification\",{\"connectorId\":%d,\"errorCode\":\"%s\",\"info\":\"%s\",\"status\":\"%s\",\"timestamp\":\"%s\",\"vendorId\":\"%s\",\"vendorErrorCode\":\"%s\"}]"
					, MESSAGE_TYPE_CALL
					, guid
					, ShmOCPP16DataPH->StatusNotification[gun_index].ConnectorId
					, ShmOCPP16DataPH->StatusNotification[gun_index].ErrorCode
					, ShmOCPP16DataPH->StatusNotification[gun_index].Info
					, ShmOCPP16DataPH->StatusNotification[gun_index].Status
					, ShmOCPP16DataPH->StatusNotification[gun_index].Timestamp
					, ShmOCPP16DataPH->StatusNotification[gun_index].VendorId
					, ShmOCPP16DataPH->StatusNotification[gun_index].VendorErrorCode);

	if((server_sign == TRUE) && isStateChanged)
	{
		cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
		cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq = 0;
		LWS_Send(message);

		sprintf(tempdata, "StatusNotification,%d", (gun_index));

		if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid, mapItem, tempdata/*(void**)(&mapItem)*//*(void**)(&mapItem)*/) ==  MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
		{
			//DEBUG_ERROR("statusNotification mapitem pass");
			result = PASS;
		}
	}
	else
	{
		cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
		cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq = 0;
		result = PASS;
	}

	return result;
}

int sendStopTransactionRequest(int gun_index)
{
	mtrace();
	int result = FAIL;
	//char message[1500]={0};
	char guid[37]={0};
	char tempdata[65]={0};
	int tempIndex = 0;
	char TempStopTransaction[256];
	sprintf(TempStopTransaction, "/Storage/OCPP_PH/TempStopTransaction_%d", (gun_index+1));
	//int idx_sample=0;

	DEBUG_INFO("sendStopTransactionRequest \n");
	memset(queuedata, 0, ARRAY_SIZE(queuedata));
	memset(&ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0], 0, ARRAY_SIZE(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData));
	//=========================== ENERGY_ACTIVE_IMPORT_REGISTER =======================================
	//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DCcc
	if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < CHAdeMO_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption*1000);
			}
		}// END OF CHAdeMO_QUANTITY
	}
	else if(gunType[gun_index] == GUN_TYPE_CCS)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < CCS_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption*1000);
			}
		}// END OF CCS_QUANTITY

	}
	else if(gunType[gun_index] == GUN_TYPE_GBT)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < GB_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption*1000);
			}
		}// END OF GB_QUANTITY
	}
	else if(gunType[gun_index] == GUN_TYPE_DO)
	{
		tempIndex = gun_index;

		for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
			{
				ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption*1000);
			}
		}// END OF GB_QUANTITY
	}
	else
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
		{
			tempIndex = 2;
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < AC_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption*1000);
			}
		}// END OF AC_QUANTITY
	}

	//====================================== Stop Transaction Time =====================================================
	struct timeval tmnow;
	struct tm *tm;
	char buf[28];//, usec_buf[6];
	gettimeofday(&tmnow, NULL);

	time_t t;
	t = time(NULL);
	/*UTC time and date*/
	tm = gmtime(&t);
	strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm);

	strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].Timestamp,buf);
	ShmOCPP16DataPH->StopTransaction[gun_index].TransactionId = ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId;

	random_uuid(guid);

	/***********************************transactionData******************************************************/
	memset(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData, 0, sizeof(struct StructMeterValue));
	strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].TimeStamp, buf);

	//=================================
	// Transaction_Begin
	//=================================

	//=================================
	// Transaction_End
	//=================================
	// ================================= Current.Import L1 ===============================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL)
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G : GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
				}
			}// End of for CHAdeMO_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
				}
			}// End of for CCS_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
				}
			}// End of for GB_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
				}
			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent );//  0~6553.5 amp for EVSE
				}
			}// End of for AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Measurand,MeasurandStr[Current_Import]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
	}

	// ================================= Energy.Active.Import.Interval ==============================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Energy.Active.Import.Interval") != NULL)
	{
		//J: CHAdeMO  U: CCS1 combo   E: CCS2 combo   G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh
					periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption;
				}
			}// END OF CHAdeMO_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]);

		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh
					periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption;
				}
			}// END OF CCS_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]);

		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh
					periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption;
				}
			}// END OF GB_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh
					periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption;
				}
			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}


			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh
					periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption;
				}
			}// END OF AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Measurand,MeasurandStr[Energy_Active_Import_Interval]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]);
	}


	//=================================== Power.Active.Import ==================================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Power.Active.Import") != NULL)
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower );//  PresentChargingPower is 0~6553.5 kW
				}
			} // End for CHAdeMO_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
				}
			} // END for CCS_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
				}
			}// END for GB_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
				}
			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
				}
			} // END for AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Measurand,MeasurandStr[Power_Active_Import]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Unit,UnitOfMeasureStr[UnitOfMeasure_kW/*UnitOfMeasure_kWh*/]);
	}

	//============================ Voltage L1 ====================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL)
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
				}
			} // END OF FOR CHAdeMO_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]);

		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
				}
			} // END OF  FOR CCS_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
				}
			} // END OF FOR GB_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
				}
			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltage );//AcChargingVoltage is 0~6553.5 volt  for AC EVSE
				}
			} // END OF FOR AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Measurand,MeasurandStr[Voltage]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
	}

	//====================== End SoC ================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, MeasurandStr[SoC]) != NULL)
	{
		//J : CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if((gunType[gun_index] == GUN_TYPE_CHAdeMO)||(gunType[gun_index] == GUN_TYPE_CCS)||(gunType[gun_index] == GUN_TYPE_GBT)||(gunType[gun_index] == GUN_TYPE_DO))
		{
			if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != GUN_TYPE_DO))
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
			{
				for (int index = 0; index < CHAdeMO_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );// 0~100%
					}
				}
			}
			else if(gunType[gun_index] == GUN_TYPE_CCS)
			{
				for (int index = 0; index < CCS_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );// 0~100%
					}
				}

			}
			else if(gunType[gun_index] == GUN_TYPE_GBT)
			{
				for (int index = 0; index < GB_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );// 0~100%
					}
				}

			}
			else if(gunType[gun_index] == GUN_TYPE_DO)
			{
				for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatterySoc );// 0~100%
					}
				}

			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Context,ReadingContextStr[ReadingContext_Transaction_End]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Format,ValueFormatStr[Raw]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Measurand,MeasurandStr[SoC/*Energy_Reactive_Export_Register*/]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Phase,PhaseStr[L3_N]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Location,LocationStr[Location_EV]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent/*UnitOfMeasure_kWh*/]);

		} // END FOR DC CASE
	}


	// ================================= Current.Import L2 ===============================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL)
	{
		// AC 3 phse L2 current
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL2 );//  0~6553.5 amp for EVSE
				}
			}// End of for AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Phase,PhaseStr[L2_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Measurand,MeasurandStr[Current_Import]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
	}

	// ================================= Current.Import L3 ===============================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL)
	{
		// AC 3 phse L3 current
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL3 );//  0~6553.5 amp for EVSE
				}
			}// End of for AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Phase,PhaseStr[L3_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Measurand,MeasurandStr[Current_Import]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
	}

	//============================ Voltage L2 ====================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL)
	{
		// AC 3 phse L2 voltage
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL2 );//AcChargingVoltage is 0~6553.5 volt  for AC EVSE
				}
			} // END OF FOR AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Phase,PhaseStr[L2_N]);
		}
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Measurand,MeasurandStr[Voltage]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
	}


	//============================ Voltage L3 ====================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL)
	{
		// AC 3 phse L3 voltage
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL3 );//AcChargingVoltage is 0~6553.5 volt  for AC EVSE
				}
			} // END OF FOR AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Phase,PhaseStr[L3_N]);
		}
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Measurand,MeasurandStr[Voltage]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
	}

	//====================== Start SoC ================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, MeasurandStr[SoC]) != NULL)
	{
		//J : CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if((gunType[gun_index] == GUN_TYPE_CHAdeMO)||(gunType[gun_index] == GUN_TYPE_CCS)||(gunType[gun_index] == GUN_TYPE_GBT)||(gunType[gun_index] == GUN_TYPE_DO))
		{
			if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != GUN_TYPE_DO))
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
			{
				for (int index = 0; index < CHAdeMO_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatteryStartSoc );// 0~100%
					}
				}
			}
			else if(gunType[gun_index] == GUN_TYPE_CCS)
			{
				for (int index = 0; index < CCS_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatteryStartSoc );// 0~100%
					}
				}

			}
			else if(gunType[gun_index] == GUN_TYPE_GBT)
			{
				for (int index = 0; index < GB_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatteryStartSoc );// 0~100%
					}
				}

			}
			else if(gunType[gun_index] == GUN_TYPE_DO)
			{
				for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatteryStartSoc );// 0~100%
					}
				}

			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Context,ReadingContextStr[ReadingContext_Transaction_Begin]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Format,ValueFormatStr[Raw]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Measurand,MeasurandStr[SoC/*Energy_Reactive_Export_Register*/]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Phase,PhaseStr[L3_N]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Location,LocationStr[Location_EV]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent/*UnitOfMeasure_kWh*/]);

		} // END FOR DC CASE
	}


	//================================================ Message create ====================================================
	json_object *StopTransaction = json_object_new_object();
	json_object *transactionDatas = json_object_new_array();
	json_object *sampledValues = json_object_new_array();

	if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].IdTag) > 0)
		json_object_object_add(StopTransaction, "idTag", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].IdTag));

	json_object_object_add(StopTransaction, "meterStop", json_object_new_int(ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop));
	json_object_object_add(StopTransaction, "transactionId", json_object_new_int(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionId));
	json_object_object_add(StopTransaction, "timestamp", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].Timestamp));

	if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].StopReason) > 0)
		json_object_object_add(StopTransaction, "reason", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].StopReason));

	for(int idxTrans = 0;idxTrans<ARRAY_SIZE(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData);idxTrans++)
	{
		json_object *transactionData = json_object_new_object();
		json_object_object_add(transactionData, "timestamp", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].TimeStamp));

		for(int idx=0;idx<ARRAY_SIZE(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue);idx++)
		{
			if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Value) > 0)
			{
				json_object *sampledValue = json_object_new_object();

				json_object_object_add(sampledValue, "value", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Value));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Context) > 0)
					json_object_object_add(sampledValue, "context", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Context));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Format) > 0)
					json_object_object_add(sampledValue, "format", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Format));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Measurand) > 0)
					json_object_object_add(sampledValue, "measurand", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Measurand));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Phase) > 0)
					json_object_object_add(sampledValue, "phase", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Phase));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Location) > 0)
					json_object_object_add(sampledValue, "location", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Location));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Unit) > 0)
					json_object_object_add(sampledValue, "unit", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Unit));

				json_object_array_add(sampledValues, sampledValue);
			}
		}

		json_object_object_add(transactionData, "sampledValue", sampledValues);
		json_object_array_add(transactionDatas, transactionData);
	}
	json_object_object_add(StopTransaction, "transactionData", transactionDatas);

	sprintf(queuedata, "%d,[%d,\"%s\",\"StopTransaction\",%s]",(gun_index+1)
															  ,MESSAGE_TYPE_CALL
															  ,guid
															  ,json_object_to_json_string_ext(StopTransaction, JSON_C_TO_STRING_PLAIN));
	json_object_put(StopTransaction);

#if 1 // for TempStopTransaction
	//Delete TempStopTransaction
	if((access(TempStopTransaction,F_OK))!=-1)
	{
		remove(TempStopTransaction);  		// remove file "TempStopTransaction"
	}
#endif

#if 1
	sprintf(tempdata, "StopTransaction,%d", (gun_index));
	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)
	{
		result = PASS;
		//DEBUG_INFO("StopTransaction mapitem pass\n");
	}
#endif
	queue_operation(QUEUE_OPERATION_ADD, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
	OCPP_insert_transaction_msg(NO, queuedata);
	//----------------------------replace queue StopTransaction TransactionId ---------------------------//
	//int gettransactionId = GetTransactionId(gun_index+1, ShmOCPP16DataPH->StopTransaction[gun_index].IdTag);
	int gettransactionId = GetTransactionId(gun_index+1, ShmOCPP16DataPH->StartTransaction[gun_index].IdTag, TRUE);

	if((ShmOCPP16DataPH->StopTransaction[gun_index].TransactionId != 0) && (gettransactionId != 0))
	{
		//SetTransactionIdZero(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionId);
	}

	//for test
	//ShmOCPP16DataPH->CpMsg.bits[gun_index].StopTransactionReq = 0;

	return result;
}

int sendMeterValuesRequest(int gun_index, ReadingContext dataType)
{
	mtrace();
	int result = FAIL;
	char guid[37]={0};
	char tempdata[65]={0};
	int tempIndex = 0;

	DEBUG_INFO("sendMeterValuesRequest ...\n");

	memset(queuedata, 0, ARRAY_SIZE(queuedata));
	memset(&ShmOCPP16DataPH->MeterValues[gun_index], 0, sizeof(struct StructMeterValues));
	//set value
	ShmOCPP16DataPH->MeterValues[gun_index].ConnectorId = gun_index + 1; // gun start from 1~
	ShmOCPP16DataPH->MeterValues[gun_index].TransactionId = (cpinitateMsg.bits[gun_index].isOnCharging?
															ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId :
															-1);

	random_uuid(guid);

	//UTC Date time
	struct timeval tmnow;
	struct tm *tm;
	char buf[28];//, usec_buf[6];
	gettimeofday(&tmnow, NULL);

	time_t t;
	t = time(NULL);
	/*UTC time and date*/
	tm = gmtime(&t);

	if(dataType == ReadingContext_Sample_Clock)
	{
		struct tm *tmTarget;
		struct timeb tbTarget;
		tbTarget.time = mktime(tm);
		tbTarget.time -= (atoi((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData));
		tmTarget = gmtime(&tbTarget.time);
		strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tmTarget);
	}
	else
	{
		strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm);
	}
	strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].TimeStamp, buf);

	//DEBUG_INFO("ShmSysConfigAndInfo->SysConfig.ModelName[0]=%c\n", ShmSysConfigAndInfo->SysConfig.ModelName[0]);

	//********************************(1)Current.Import L1************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Current_Import]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Current_Import]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent );
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent );
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent );
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingCurrent );
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Phase, PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent );
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Phase, PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Measurand, MeasurandStr[Current_Import]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[0].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
	}

	//********************************(2)Energy.Active.Import.Register ************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Energy_Active_Import_Register]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Energy_Active_Import_Register]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex = ((gun_index==2) ? 1: 0);
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < CHAdeMO_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Value, "%.3f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption );
					}
				}

				strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex = ((gun_index==2) ? 1: 0);
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < CCS_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Value, "%.3f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption );
					}
				}

				strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex = ((gun_index==2) ? 1: 0);
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < GB_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Value, "%.3f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption );
					}
				}

				strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{

				tempIndex = gun_index;

				for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Value, "%.3f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption );
					}
				}

				strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]);
		}
		else
		{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
				{
					tempIndex = 2;
				}
				else
				{
					tempIndex = gun_index;
				}

				for (int index = 0; index < AC_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Value, "%.3f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption );
					}
				}

				strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Measurand, MeasurandStr[Energy_Active_Import_Register]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[1].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]);
	}

	//****************************************************(3)Energy.Active.Import.Interval*********************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Energy_Active_Import_Interval]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Energy_Active_Import_Interval]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					if(dataType == ReadingContext_Sample_Clock)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption - periousClockPowerConsumption[gun_index]));
						periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption;
					}
					else if(dataType == ReadingContext_Sample_Periodic)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));
						periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption;
					}
					else
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "0.000");
					}
				}
			} // END OF FOR CHAdeMO_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					if(dataType == ReadingContext_Sample_Clock)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption - periousClockPowerConsumption[gun_index]));
						periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption;
					}
					else if(dataType == ReadingContext_Sample_Periodic)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));
						periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption;
					}
					else
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "0.000");
					}
				}
			} // END OF CCS_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					if(dataType == ReadingContext_Sample_Clock)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption - periousClockPowerConsumption[gun_index]));
						periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption;
					}
					else if(dataType == ReadingContext_Sample_Periodic)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));
						periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption;
					}
					else
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "0.000");
					}
				}
			} // END OF GB_QUANTITY

			 strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					if(dataType == ReadingContext_Sample_Clock)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption - periousClockPowerConsumption[gun_index]));
						periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption;
					}
					else if(dataType == ReadingContext_Sample_Periodic)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption - periousPeriodicPowerConsumption[gun_index]));
						periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption;
					}
					else
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "0.000");
					}
				}
			}

			 strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					if(dataType == ReadingContext_Sample_Clock)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption - periousClockPowerConsumption[gun_index]));
						periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption;
					}
					else if(dataType == ReadingContext_Sample_Periodic)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));
						periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption;
					}
					else
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "0.000");
					}
				}
			 }

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Measurand, MeasurandStr[Energy_Active_Import_Interval]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[2].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]);
	}

	//********************************(4)Power.Active.Import************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Power_Active_Import]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Power_Active_Import]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		//J : CHAdeMO   U: CCS1 combo   E: CCS2 combo   G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower);
				}
			} // END OF FOR

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower);
				}
			}

			 strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
				     //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower = 100.0;
				    sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower);
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
				     //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower = 100.0;
				    sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingPower);
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Phase, PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
				    sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingPower);
				}
			}

			 strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Phase, PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Measurand, MeasurandStr[Power_Active_Import]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[3].Unit,UnitOfMeasureStr[UnitOfMeasure_kW]);
	}

	//***********************************************(5)VOLTAGE L1******************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Voltage]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Voltage]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		//J : CHAdeMO   U: CCS1 combo   E: CCS2 combo   G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
				 	sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage );
				}
			}

			 strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
				 	sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage );
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
				 	sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage );
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Phase, PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
				 	sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingVoltage );
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Phase, PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltage );
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Phase, PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Measurand, MeasurandStr[Voltage]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[4].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
	}

	//***********************************************(6)SOC******************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[SoC]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[SoC]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		if((gunType[gun_index] == GUN_TYPE_CHAdeMO)||(gunType[gun_index] == GUN_TYPE_CCS)||(gunType[gun_index] == GUN_TYPE_GBT)||(gunType[gun_index] == GUN_TYPE_DO))
		{
			//idx_sample=5;
			//sampledValue = NULL;

			if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != GUN_TYPE_DO))
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
			{
				//tempIndex = ((gun_index==2) ? 1: 0);

				for (int index = 0; index < CHAdeMO_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );
					}
				}
			}
			else if(gunType[gun_index] == GUN_TYPE_CCS)
			{
				//tempIndex = ((gun_index==2) ? 1: 0);

				for (int index = 0; index < CCS_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );
					}
				}

			}
			else if(gunType[gun_index] == GUN_TYPE_GBT)
			{
				//tempIndex = ((gun_index==2) ? 1: 0);

				for (int index = 0; index < GB_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
					{
						 sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );
					}
				}

			}
			else if(gunType[gun_index] == GUN_TYPE_DO)
			{
				//tempIndex = ((gun_index==2) ? 1: 0);

				for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
					{
						 sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatterySoc );
					}
				}

			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[5].Context, ReadingContextStr[dataType]);
			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[5].Format, ValueFormatStr[Raw]);
			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[5].Measurand, MeasurandStr[SoC]);
			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[5].Phase, PhaseStr[L3_N]);
			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[5].Location, LocationStr[Location_EV]);
			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[5].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent]);
		}
	}

	//********************************(7)Current.Import L2************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Current_Import]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Current_Import]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		// Only for AC 3 phase
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[6].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL2);
				}
			}
			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[6].Phase, PhaseStr[L2_N]);
		}
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[6].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[6].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[6].Measurand, MeasurandStr[Current_Import]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[6].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[6].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
	}

	//********************************(8)Current.Import L3************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Current_Import]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Current_Import]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		// Only for AC 3 phase
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[7].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL3);
				}
			}
			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[7].Phase, PhaseStr[L3_N]);
		}
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[7].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[7].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[7].Measurand, MeasurandStr[Current_Import]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[7].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[7].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
	}

	//***********************************************(9)VOLTAGE L2******************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Voltage]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Voltage]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[8].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL2);
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[8].Phase, PhaseStr[L2_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[8].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[8].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[8].Measurand, MeasurandStr[Voltage]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[8].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[8].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
	}

	//***********************************************(10)VOLTAGE L3******************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Voltage]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Voltage]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[9].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL3);
				}
			}

			strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[9].Phase, PhaseStr[L3_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[9].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[9].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[9].Measurand, MeasurandStr[Voltage]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[9].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[9].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
	}

	//***********************************************(11)Current.Offered******************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Current_Offered]) != NULL)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Current_Offered]) != NULL)) ||
	   (dataType == ReadingContext_Trigger))
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[10].Value, "%d", (uint16_t) (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].AvailableChargingCurrent/10));
				}
			} // END OF FOR CHAdeMO_QUANTITY
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[10].Value, "%d", (uint16_t) (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].AvailableChargingCurrent/10));
				}
			} // END OF CCS_QUANTITY
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[10].Value, "%d", (uint16_t) (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].AvailableChargingCurrent/10));
				}
			} // END OF GB_QUANTITY
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[10].Value, "%d", (uint16_t) (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.AvailableChargingCurrent/10));
				}
			}
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					uint16_t currentOffer;
					if(ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent == 0)
					{
						currentOffer = ShmSysConfigAndInfo->SysConfig.RatingCurrent;
					}
					else
					{
						currentOffer = ((ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent>ShmSysConfigAndInfo->SysConfig.RatingCurrent)?ShmSysConfigAndInfo->SysConfig.RatingCurrent:ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent);
					}
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[10].Value, "%d", currentOffer);
				}
			 }
		}

		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[10].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[10].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[10].Measurand, MeasurandStr[Current_Offered]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[10].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[10].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
	}

	//***********************************************(12)Power.Offered******************************************************/
	if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Power_Offered]) != NULL) && (gunType[gun_index] != GUN_TYPE_AC)) ||
	   ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Power_Offered]) != NULL) && (gunType[gun_index] != GUN_TYPE_AC)) ||
	   ((dataType == ReadingContext_Trigger) && (gunType[gun_index] != GUN_TYPE_AC)))
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[11].Value, "%d", (uint32_t) (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].AvailableChargingPower*100));
				}
			} // END OF FOR CHAdeMO_QUANTITY
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[11].Value, "%d", (uint32_t) (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].AvailableChargingPower*100));
				}
			} // END OF CCS_QUANTITY
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[11].Value, "%d", (uint32_t) (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].AvailableChargingPower*100));
				}
			} // END OF GB_QUANTITY
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[11].Value, "%d", (uint32_t) (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.AvailableChargingPower*100));
				}
			}
		}

		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[11].Context, ReadingContextStr[dataType]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[11].Format, ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[11].Measurand, MeasurandStr[Power_Offered]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[11].Location, LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[0].SampledValue[11].Unit,UnitOfMeasureStr[UnitOfMeasure_W]);
	}

	// Message create ====================================================================================================
	if(TRUE)
	{
		json_object *MeterValueReq = json_object_new_object();
		json_object *MeterValues = json_object_new_array();
		json_object *sampledValues = json_object_new_array();

		json_object_object_add(MeterValueReq, "connectorId", json_object_new_int(ShmOCPP16DataPH->MeterValues[gun_index].ConnectorId));

		if(ShmOCPP16DataPH->MeterValues[gun_index].TransactionId != -1)
			json_object_object_add(MeterValueReq, "transactionId", json_object_new_int(ShmOCPP16DataPH->MeterValues[gun_index].TransactionId));

		for(uint8_t idxMeter=0;idxMeter<ARRAY_SIZE(ShmOCPP16DataPH->MeterValues[gun_index].MeterValue);idxMeter++)
		{
			json_object *MeterValue = json_object_new_object();

			for(int idxSample=0;idxSample<ARRAY_SIZE(ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue);idxSample++)
			{
				if(strlen((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Value) > 0)
				{
					json_object *sampledValue = json_object_new_object();

					json_object_object_add(sampledValue, "value", json_object_new_string((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Value));

					if(strlen((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Context) > 0)
						json_object_object_add(sampledValue, "context", json_object_new_string((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Context));

					if(strlen((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Format) > 0)
						json_object_object_add(sampledValue, "format", json_object_new_string((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Format));

					if(strlen((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Measurand) > 0)
						json_object_object_add(sampledValue, "measurand", json_object_new_string((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Measurand));

					if(strlen((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Phase) > 0)
						json_object_object_add(sampledValue, "phase", json_object_new_string((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Phase));

					if(strlen((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Location) > 0)
						json_object_object_add(sampledValue, "location", json_object_new_string((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Location));

					if(strlen((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Unit) > 0)
						json_object_object_add(sampledValue, "unit", json_object_new_string((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Unit));

					json_object_array_add(sampledValues, sampledValue);
				}
			}
			json_object_object_add(MeterValue, "timestamp", json_object_new_string((char*)ShmOCPP16DataPH->MeterValues[gun_index].MeterValue[idxMeter].TimeStamp));
			json_object_object_add(MeterValue, "sampledValue", sampledValues);
			json_object_array_add(MeterValues, MeterValue);
		}
		json_object_object_add(MeterValueReq, "meterValue", MeterValues);

		sprintf(queuedata,"%d,[%d,\"%s\",\"MeterValues\",%s]"
				 	 	 ,gun_index + 1
				 	 	 ,MESSAGE_TYPE_CALL
		 	 			 ,guid
		 	 			 ,json_object_to_json_string_ext(MeterValueReq, JSON_C_TO_STRING_PLAIN));

		json_object_put(MeterValueReq);
	}

	// Put request guid to hash map
	sprintf(tempdata, "MeterValues,%d", (gun_index));
	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, mapItem[0].key_string, mapItem[0].key_value/*mapItem*/, (void**)(&mapItem)/*(void**)(&mapItem)*/) ==  MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
	{
	 	result = PASS;
	 	//DEBUG_INFO("MeterValues mapitem pass\n");
	}

	if((dataType != ReadingContext_Trigger) &&
	   (dataType != ReadingContext_Sample_Clock) &&
	   ((ShmOCPP16DataPH->MeterValues[gun_index].TransactionId > 0) || (strstr((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData, "TRUE"))))
		queue_operation(QUEUE_OPERATION_ADD, guid, queuedata );
	else
	{
		if(FirstHeartBeat)
			LWS_Send(queuedata +2);
	}

	return result;
}

int sendLogStatusNotificationRequest(char *status)
{
	mtrace();
	int result = PASS;
	char message[4096]={0};
	char guid[37]={0};
	char tempdata[128]={0};
	json_object *LogStatusNotification = json_object_new_object();

	DEBUG_INFO("sendLogStatusNotificationRequest...\n");
	ShmOCPP16DataPH->LogStatusNotification.requestId = ShmOCPP16DataPH->GetLog.requestId;
	sprintf((char *)ShmOCPP16DataPH->LogStatusNotification.status,"%s",(const char *)status);

	json_object_object_add(LogStatusNotification, "status", json_object_new_string((char*)ShmOCPP16DataPH->LogStatusNotification.status));
	json_object_object_add(LogStatusNotification, "requestId", json_object_new_int(ShmOCPP16DataPH->LogStatusNotification.requestId));

	random_uuid(guid);
	sprintf(message,"[%d,\"%s\",\"LogStatusNotification\",%s]",MESSAGE_TYPE_CALL, guid, json_object_to_json_string_ext(LogStatusNotification, JSON_C_TO_STRING_PLAIN));
	json_object_put(LogStatusNotification);
	LWS_Send(message);

	sprintf(tempdata, "LogStatusNotification,%d", 0);

	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == PASS)
	{
		result = PASS;
	}

	ShmOCPP16DataPH->SpMsg.bits.LogStatusNotificationReq = 0;
	ShmOCPP16DataPH->SpMsg.bits.LogStatusNotificationConf = 0;

	return result;
}

int sendSecurityEventNotificationRequest()
{
	mtrace();
	int result = PASS;
	char message[4096]={0};
	char guid[37]={0};
	char tempdata[128]={0};
	json_object *SecurityEventNotification = json_object_new_object();
	DEBUG_INFO("sendSecurityEventNotificationRequest...\n");

	json_object_object_add(SecurityEventNotification, "type", json_object_new_string((char*)ShmOCPP16DataPH->SecurityEventNotification.type));
	json_object_object_add(SecurityEventNotification, "timestamp", json_object_new_string((char*)ShmOCPP16DataPH->SecurityEventNotification.timestamp));
	json_object_object_add(SecurityEventNotification, "techInfo", json_object_new_string((char*)ShmOCPP16DataPH->SecurityEventNotification.techInfo));

	random_uuid(guid);
	sprintf(message,"[%d,\"%s\",\"%s\",%s]",MESSAGE_TYPE_CALL, guid, "SecurityEventNotification", json_object_to_json_string_ext(SecurityEventNotification, JSON_C_TO_STRING_PLAIN));
	json_object_put(SecurityEventNotification);
	LWS_Send(message);

	sprintf(tempdata, "SecurityEventNotification,0");
	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == PASS)
	{
		result = PASS;
	}

	ShmOCPP16DataPH->SpMsg.bits.SecurityEventNotificationReq = 0;
	ShmOCPP16DataPH->SpMsg.bits.SecurityEventNotificationConf = 0;

	return result;
}

int sendSignCertificateRequest()
{
	mtrace();
	int result = PASS;
	char message[4096]={0};
	char guid[37]={0};
	char tempdata[128]={0};
	json_object *SignCertificate = json_object_new_object();
	DEBUG_INFO("sendSignCertificateRequest...\n");

	// Read csr file content
	memset(ShmOCPP16DataPH->SignCertificate.csr, 0x00, ARRAY_SIZE(ShmOCPP16DataPH->SignCertificate.csr));
	FILE *fp=fopen("/Storage/OCPP_PH/certCP.csr","r");
	char *line = NULL;
	size_t len = 0;
	while(getline(&line, &len, fp) != -1)
	{
		if((strstr(line, "BEGIN CERTIFICATE REQUEST") == NULL) && (strstr(line, "END CERTIFICATE REQUEST") == NULL))
		{
			memcpy(&ShmOCPP16DataPH->SignCertificate.csr[strlen((char*)ShmOCPP16DataPH->SignCertificate.csr)], line, (strlen(line)-1));
		}
	}
	fclose(fp);

	json_object_object_add(SignCertificate, "csr", json_object_new_string((char*)ShmOCPP16DataPH->SignCertificate.csr));

	random_uuid(guid);
	sprintf(message,"[%d,\"%s\",\"%s\",%s]",MESSAGE_TYPE_CALL, guid, "SignCertificate", json_object_to_json_string_ext(SignCertificate, JSON_C_TO_STRING_PLAIN));
	json_object_put(SignCertificate);
	LWS_Send(message);

	sprintf(tempdata, "SignCertificate,0");
	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == PASS)
	{
		result = PASS;
	}
	ShmOCPP16DataPH->SpMsg.bits.SignCertificateReq = 0;
	ShmOCPP16DataPH->SpMsg.bits.SignCertificateConf = 0;

	return result;
}

int sendSignedFirmwareStatusNotificationRequest(char *status)
{
	mtrace();
	int result = PASS;
	char message[110]={0};
	char guid[37]={0};
	char tempdata[65]={0};
	json_object *FirmwareStatusNotification = json_object_new_object();
	DEBUG_INFO("sendSignedFirmwareStatusNotificationRequest...\n");

	sprintf((char *)ShmOCPP16DataPH->SignedFirmwareStatusNotification.status , "%s", (const char *)status);
	ShmOCPP16DataPH->SignedFirmwareStatusNotification.requestId = ShmOCPP16DataPH->SignedUpdateFirmware.requestId;

	json_object_object_add(FirmwareStatusNotification, "status", json_object_new_string((char*)ShmOCPP16DataPH->SignedFirmwareStatusNotification.status));
	json_object_object_add(FirmwareStatusNotification, "requestId", json_object_new_int(ShmOCPP16DataPH->SignedFirmwareStatusNotification.requestId));

	random_uuid(guid);
	sprintf(message,"[%d,\"%s\",\"FirmwareStatusNotification\",%s]",MESSAGE_TYPE_CALL, guid, json_object_to_json_string_ext(FirmwareStatusNotification, JSON_C_TO_STRING_PLAIN));
	json_object_put(FirmwareStatusNotification);
	LWS_Send(message);

	sprintf(tempdata, "FirmwareStatusNotification,%d", 0);

	if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == PASS)
	{
		result = PASS;
	}

	ShmOCPP16DataPH->SpMsg.bits.SignedFirmwareStatusNotificationReq = 0;
	ShmOCPP16DataPH->SpMsg.bits.SignedFirmwareStatusNotificationConf = 0;

	return result;
}

//==========================================
// send confirm routine
//==========================================
int sendCancelReservationConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[100]={0};

	DEBUG_INFO("sendCancelReservationConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendChangeAvailabilityConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[100]={0};
	DEBUG_INFO("sendChangeAvailabilityConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendChangeConfigurationConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[100]={0};

	DEBUG_INFO("sendChangeConfigurationConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendClearCacheConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
    char message[500]={0};

    DEBUG_INFO("sendClearCacheConfirmation...\n");
    sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
	LWS_Send(message);

	return result;
}

int sendClearChargingProfileConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;

	char message[500]={0};

	DEBUG_INFO("sendClearChargingProfileConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
	LWS_Send(message);

	return result;
}

int sendDataTransferConfirmation(char *uuid,char *payload)
{
	mtrace();
	char statusStr[20]={0};
	char dataStr[10]={0};
	char sstr[20]={0};
	int c = 0;
	char *loc;
	int result = FAIL;

	DEBUG_INFO("sendDataTransferConfirmation...\n");
	/**********************status**************************/
    loc = strstr(payload, "status");
	memset(sstr ,0, ARRAY_SIZE(sstr) );
	c = 0;
	while (loc[3+strlen("status")+c] != '\"')
	{
		sstr[c] = loc[3+strlen("status")+c];
		c++;
	}
	sstr[c] = '\0';
	strcpy(statusStr, sstr);


	/**********************data**************************/
	loc = strstr(payload, "data");
	memset(sstr ,0, ARRAY_SIZE(sstr) );
	c = 0;
	while (loc[3+strlen("data")+c] != '\"')
	{
		sstr[c] = loc[3+strlen("data")+c];
		c++;
	}
	sstr[c] = '\0';
	strcpy(dataStr, sstr);

	return result;
}

int sendGetCompositeScheduleConfirmation(char *uuid, char *payload, int connectorIdInt, int nPeriod)
{
	mtrace();
	int result = FAIL;
	char message[1000]={0};
	int CompositeScheduleIndex = 0;

	DEBUG_INFO("sendGetCompositeScheduleConfirmation...\n");

  	CompositeScheduleIndex = (connectorIdInt > 0) ?(connectorIdInt -1) : 0;
	if(nPeriod == 0)
	{
		if(strcmp((const char *)ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule,"")==0)
		{
			sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d}]"
												,MESSAGE_TYPE_CALLRESULT
												,uuid
												,payload
												,connectorIdInt);
		}
		else
		{
			sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\",\"chargingSchedule\":{\"duration\":%d,\"startSchedule\":\"%s\",\"chargingRateUnit\":\"%s\",\"chargingSchedulePeriod\":[{\"startPeriod\":0,\"limit\":%d}]}}]"
										,MESSAGE_TYPE_CALLRESULT
										,uuid
										,payload
										,connectorIdInt
										,ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule
										,ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.Duration
										,ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule
										,ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingRateUnit
										,ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingRateUnit[0]=='W'?modelnameInfo.ratedPower:(ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent==0?ShmSysConfigAndInfo->SysConfig.RatingCurrent:ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent));
		}
	}
	else
	{
		sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\",\"chargingSchedule\":{\"duration\":%d,\"startSchedule\":\"%s\",\"chargingRateUnit\":\"%s\",\"chargingSchedulePeriod\":["
							,MESSAGE_TYPE_CALLRESULT
							,uuid
							,payload
							,connectorIdInt
							,ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule
							,ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.Duration
							,ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule
							,ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingRateUnit);

		for(int idx_sample=0;idx_sample< nPeriod;idx_sample++)
		{
			if (idx_sample == 0)
			{
				sprintf(message + strlen(message), "{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}"
						, ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod
						, ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].Limit
						, ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].NumberPhases );
			}
			else
			{
				sprintf(message + strlen(message), ",{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}"
						, ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod
						, ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].Limit
						, ShmOCPP16DataPH->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].NumberPhases );
			}
		}
		sprintf(message + strlen(message), "]}}]");
	}

	LWS_Send(message);
	result = TRUE;
	return result;
}

int sendGetConfigurationConfirmation(char *uuid)
{
	mtrace();
	int result = FAIL;
	int MaxKeySupported = 0;
	int sentConfigurationNumber= 0;
	int sentunConfigurationNumber= 0;
	char message[1024*10]={0};

	DEBUG_INFO("sendGetConfigurationConfirmation...\n");

	MaxKeySupported = atoi((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData);

	//configuration key
	json_object *GetConfiguration = json_object_new_object();
	json_object *configurationKey = json_object_new_array();
	for(int idx_sample=0;idx_sample< MaxKeySupported/*43*/;idx_sample++)
	{
		if(strcmp((const char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[idx_sample].Key, "")!= 0)
		{
			json_object *keyValue = json_object_new_object();
			json_object_object_add(keyValue, "key", json_object_new_string((char*)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[idx_sample].Key));
			json_object_object_add(keyValue, "readonly", atoi((const char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly) == 1?json_object_new_boolean(1):json_object_new_boolean(0));
			json_object_object_add(keyValue, "value", json_object_new_string((char*)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[idx_sample].Value));

			json_object_array_add(configurationKey, keyValue);

			sentConfigurationNumber = sentConfigurationNumber + 1;
		}
	}

	json_object *unknownKey = json_object_new_array();
	if(UnknownKeynum != 0)
	{
		for(int idx_sample=0;idx_sample< UnknownKeynum ;idx_sample++)
		{
			DEBUG_INFO("unknown key:%s\n", ShmOCPP16DataPH->GetConfiguration.ResponseUnknownKey[idx_sample].Item);
			json_object_array_add(unknownKey, json_object_new_string((char*)ShmOCPP16DataPH->GetConfiguration.ResponseUnknownKey[idx_sample].Item));

			sentunConfigurationNumber = sentunConfigurationNumber + 1;
		}
	}

	if((sentConfigurationNumber>0) && (sentunConfigurationNumber>0))
	{
		json_object_object_add(GetConfiguration, "configurationKey", configurationKey);
		json_object_object_add(GetConfiguration, "unknownKey", unknownKey);

	}
	else if(sentConfigurationNumber>0)
	{
		json_object_object_add(GetConfiguration, "configurationKey", configurationKey);
		json_object_put(unknownKey);
	}
	else
	{
		json_object_object_add(GetConfiguration, "unknownKey", unknownKey);
		json_object_put(configurationKey);
	}

	sprintf(message,"[%d,\"%s\",%s]"
					,MESSAGE_TYPE_CALLRESULT
					,uuid
					,json_object_to_json_string_ext(GetConfiguration, JSON_C_TO_STRING_PLAIN));

	json_object_put(GetConfiguration);

	LWS_Send(message);
	return result;
}

int sendGetDiagnosticsConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[400]={0};

	DEBUG_INFO("sendGetDiagnosticsConfirmation...\n");

	if(strcmp(payload,"")==0)
	{
		sprintf(message,"[%d,\"%s\",{}]",MESSAGE_TYPE_CALLRESULT, uuid);
	}
	else
	{
		sprintf(message,"[%d,\"%s\",{\"fileName\":\"%s\"}]", MESSAGE_TYPE_CALLRESULT, uuid, payload);
	}
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendGetLocalListVersionConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[80]={0};

	DEBUG_INFO("sendGetLocalListVersionConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"listVersion\":%d}]",MESSAGE_TYPE_CALLRESULT, uuid, ShmOCPP16DataPH->GetLocalListVersion.ResponseListVersion);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendRemoteStartConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[80]={0};

	DEBUG_INFO("sendRemoteStartConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendRemoteStopTransactionConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[80]={0};

	DEBUG_INFO("sendRemoteStopTransactionConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendReserveNowTransactionConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[80]={0};
//	[3,"287d837d-809e-41ea-8385-fdab7f72a01c",{"status":"Accepted"}]

	DEBUG_INFO("sendReserveNowTransactionConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendResetConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	//[ 3, "6f88d461-4d17-462c-a69b-1f7a8c5b12df", { "status": 0 } ]
	char message[80]={0};

	ShmOCPP16DataPH->MsMsg.bits.ResetConf = 0;

	sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendSendLocalListConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[500]={0};
//	[ 3, "1571284266109", { "status": "Accepted" } ]
	sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendSetChargingProfileConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
//[3,"5748585f-8524-4fa6-9b4f-4a7eca750b90",{"status":"NotSupported"}]
	char message[80]={0};

	DEBUG_INFO("sendSetChargingProfileConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendTriggerMessageConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[80]={0};

	DEBUG_INFO("sendTriggerMessageConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendUnlockConnectorConfirmation(char *uuid,char *payload)
{
	mtrace();
	int result = FAIL;
	char message[80]={0};

//[ 3, "ba1cbd49-2a76-493a-8f76-fa23e7606532", { "status": "Unlocked" } ]
	DEBUG_INFO("sendUnlockConnectorConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendUpdateFirmwareConfirmation(char *uuid)
{
	mtrace();
	int result = FAIL;

	char message[60]={0};

	//[ 3, "ba1cbd49-2a76-493a-8f76-fa23e7606532", { "status": "Unlocked" } ]
	DEBUG_INFO("sendUpdateFirmwareConfirmation...\n");
	sprintf(message,"[%d,\"%s\",{}]",MESSAGE_TYPE_CALLRESULT, uuid);
	LWS_Send(message);
	result = TRUE;

	return result;
}

int sendCertificateSignedConfirmation(char *uuid)
{
	mtrace();
	int result = PASS;
	char message[4096]={0};
	json_object *CertificateSigned = json_object_new_object();

	DEBUG_INFO("sendCertificateSignedConfirmation...\n");

	json_object_object_add(CertificateSigned, "status", json_object_new_string((char*)ShmOCPP16DataPH->CertificateSigned.Response_status));

	sprintf(message,"[%d,\"%s\",%s]"
								,MESSAGE_TYPE_CALLRESULT
								,uuid
								,json_object_to_json_string_ext(CertificateSigned, JSON_C_TO_STRING_PLAIN));

	json_object_put(CertificateSigned);
	LWS_Send(message);

	return result;
}

int sendDeleteCertificateConfirmation(char *uuid)
{
	mtrace();
	int result = PASS;
	char message[4096]={0};
	json_object *DeleteCertificate = json_object_new_object();

	DEBUG_INFO("sendDeleteCertificateConfirmation...\n");

	json_object_object_add(DeleteCertificate, "status", json_object_new_string((char*)ShmOCPP16DataPH->DeleteCertificate.Response_status));

	sprintf(message,"[%d,\"%s\",%s]"
								,MESSAGE_TYPE_CALLRESULT
								,uuid
								,json_object_to_json_string_ext(DeleteCertificate, JSON_C_TO_STRING_PLAIN));

	json_object_put(DeleteCertificate);
	LWS_Send(message);

	return result;
}

int sendExtendedTriggerMessageConfirmation(char *uuid)
{
	mtrace();
	int result = PASS;
	char message[4096]={0};
	json_object *ExtendedTriggerMessage = json_object_new_object();

	DEBUG_INFO("sendExtendedTriggerMessageConfirmation...\n");

	json_object_object_add(ExtendedTriggerMessage, "status", json_object_new_string((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.Response_status));

	sprintf(message,"[%d,\"%s\",%s]"
								,MESSAGE_TYPE_CALLRESULT
								,uuid
								,json_object_to_json_string_ext(ExtendedTriggerMessage, JSON_C_TO_STRING_PLAIN));

	json_object_put(ExtendedTriggerMessage);
	LWS_Send(message);

	return result;
}

int sendGetInstalledCertificateIdsConfirmation(char *uuid)
{
	mtrace();
	int result = PASS;
	char message[4096]={0};
	json_object *GetInstalledCertificateIds = json_object_new_object();
	json_object *certificateHashDataDatas = json_object_new_array();

	DEBUG_INFO("sendGetInstalledCertificateIdsConfirmation...\n");

	json_object_object_add(GetInstalledCertificateIds, "status", json_object_new_string((char*)ShmOCPP16DataPH->GetInstalledCertificateIds.Response_status));

	if(strlen((char*)ShmOCPP16DataPH->GetInstalledCertificateIds.Response_certificateHashData[0].hashAlgorithm) > 0)
	{
		for(int idx=0;idx<ARRAY_SIZE(ShmOCPP16DataPH->GetInstalledCertificateIds.Response_certificateHashData);idx++)
		{
			json_object *certificateHashData = json_object_new_object();

			json_object_object_add(certificateHashData, "hashAlgorithm", json_object_new_string((char*)ShmOCPP16DataPH->GetInstalledCertificateIds.Response_certificateHashData[idx].hashAlgorithm));
			json_object_object_add(certificateHashData, "issuerNameHash", json_object_new_string((char*)ShmOCPP16DataPH->GetInstalledCertificateIds.Response_certificateHashData[idx].issuerNameHash));
			json_object_object_add(certificateHashData, "issuerKeyHash", json_object_new_string((char*)ShmOCPP16DataPH->GetInstalledCertificateIds.Response_certificateHashData[idx].issuerKeyHash));
			json_object_object_add(certificateHashData, "serialNumber", json_object_new_string((char*)ShmOCPP16DataPH->GetInstalledCertificateIds.Response_certificateHashData[idx].serialNumber));

			json_object_array_add(certificateHashDataDatas, certificateHashData);
		}
		json_object_object_add(GetInstalledCertificateIds , "certificateHashData", certificateHashDataDatas);
	}
	else
	{
		json_object_put(certificateHashDataDatas);
	}

	sprintf(message,"[%d,\"%s\",%s]"
								,MESSAGE_TYPE_CALLRESULT
								,uuid
								,json_object_to_json_string_ext(GetInstalledCertificateIds, JSON_C_TO_STRING_PLAIN));

	json_object_put(GetInstalledCertificateIds);
	LWS_Send(message);

	return result;
}

int sendGetLogConfirmation(char *uuid)
{
	mtrace();
	int result = PASS;
	char message[4096]={0};
	json_object *GetLog = json_object_new_object();

	DEBUG_INFO("sendGetLogConfirmation...\n");

	json_object_object_add(GetLog, "status", json_object_new_string((char*)ShmOCPP16DataPH->GetLog.Response_status));

	if(strlen((char*)ShmOCPP16DataPH->GetLog.Response_filename) > 0)
		json_object_object_add(GetLog, "filename", json_object_new_string((char*)ShmOCPP16DataPH->GetLog.Response_filename));

	sprintf(message,"[%d,\"%s\",%s]"
								,MESSAGE_TYPE_CALLRESULT
								,uuid
								,json_object_to_json_string_ext(GetLog, JSON_C_TO_STRING_PLAIN));

	json_object_put(GetLog);
	LWS_Send(message);

	return result;
}

int sendInstallCertificateConfirmation(char *uuid)
{
	mtrace();
	int result = PASS;
	char message[4096]={0};
	json_object *InstallCertificate = json_object_new_object();

	DEBUG_INFO("sendInstallCertificateConfirmation...\n");

	json_object_object_add(InstallCertificate, "status", json_object_new_string((char*)ShmOCPP16DataPH->InstallCertificate.Response_status));

	sprintf(message,"[%d,\"%s\",%s]"
								,MESSAGE_TYPE_CALLRESULT
								,uuid
								,json_object_to_json_string_ext(InstallCertificate, JSON_C_TO_STRING_PLAIN));

	json_object_put(InstallCertificate);
	LWS_Send(message);

	return result;
}

int sendSignedUpdateFirmwareConfirmation(char *uuid)
{
	mtrace();
	int result = PASS;
	char message[4096]={0};
	json_object *SignedUpdateFirmware = json_object_new_object();

	DEBUG_INFO("sendSignedUpdateFirmwareConfirmation...\n");

	json_object_object_add(SignedUpdateFirmware, "status", json_object_new_string((char*)ShmOCPP16DataPH->SignedUpdateFirmware.Response_status));

	sprintf(message,"[%d,\"%s\",%s]"
								,MESSAGE_TYPE_CALLRESULT
								,uuid
								,json_object_to_json_string_ext(SignedUpdateFirmware, JSON_C_TO_STRING_PLAIN));

	json_object_put(SignedUpdateFirmware);
	LWS_Send(message);

	return result;
}

int sendUnknownConfirmation(char *uuid)
{
	mtrace();
	int result = PASS;
	char message[256]={0};

	DEBUG_INFO("sendUnknownConfirmation...\n");
	sprintf(message,"[%d,\"%s\",\"NotImplemented\",\"Requested Action is not known by receiver\",{}]", MESSAGE_TYPE_CALLERROR, uuid);
	LWS_Send(message);

	return result;
}

//==========================================
// Handle server request routine  Start
//==========================================
int handleCancelReservationRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
    int gunNO = 0;
	int reservationIdInt = -1;
	char comfirmstr[20];
    DEBUG_INFO("handleCancelReservationRequest...\n");

	json_object *CancelReservation;
	CancelReservation = json_tokener_parse(payload);
	if(!is_error(CancelReservation))
	{
		// Required data
		if(json_object_object_get(CancelReservation, "reservationId") != NULL)
			reservationIdInt = json_object_get_int(json_object_object_get(CancelReservation, "reservationId"));
	}
	json_object_put(CancelReservation);
	DEBUG_INFO("reservationIdInt = %d\n", reservationIdInt);

	memset(comfirmstr, 0, ARRAY_SIZE(comfirmstr));
	sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Rejected]);

	if(reservationIdInt != -1)
	{
		//0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
		//check Transaction active
		//J: CHAdeMO   U: CCS1 combo   E: CCS2 combo  G: GBT DC
		for (int index = 0; index < CHAdeMO_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId == reservationIdInt)
			{
				sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
				sprintf((char *)ShmOCPP16DataPH->CancelReservation[ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index].ResponseStatus, "%s", comfirmstr );

				if(gunType[2] == GUN_TYPE_CHAdeMO)
				{
					gunNO = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index + 1;
				}
				else
				{
					gunNO = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index;
				}

				ShmOCPP16DataPH->CsMsg.bits[gunNO].CancelReservationReq = 1;
				goto end;
			}
		}

		for (int index = 0; index < CCS_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId == reservationIdInt)
			{
				sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
				sprintf((char *)ShmOCPP16DataPH->CancelReservation[ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
				if(gunType[2] == GUN_TYPE_CCS)
				{
					gunNO = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index + 1;
				}
				else
				{
					gunNO = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index;
				}

				ShmOCPP16DataPH->CsMsg.bits[gunNO].CancelReservationReq = 1;
				goto end;
			}
		}


		for (int index = 0; index < GB_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId == reservationIdInt)
			{
				sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
				sprintf((char *)ShmOCPP16DataPH->CancelReservation[ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
				if(gunType[2] == GUN_TYPE_GBT)
				{
					gunNO = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index + 1;
				}
				else
				{
					gunNO = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index;
				}

				ShmOCPP16DataPH->CsMsg.bits[gunNO].CancelReservationReq = 1;
				goto end;
			}
		}

		for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId == reservationIdInt)
			{
				sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
				sprintf((char *)ShmOCPP16DataPH->CancelReservation[ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index].ResponseStatus, "%s", comfirmstr );

				gunNO = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index;

				ShmOCPP16DataPH->CsMsg.bits[gunNO].CancelReservationReq = 1;
				goto end;
			}
		}


		for (int index = 0; index < AC_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId == reservationIdInt)
			{
				sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
				sprintf((char *)ShmOCPP16DataPH->CancelReservation[ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index].ResponseStatus, "%s", comfirmstr );

				if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
				{
					gunNO = 1; //ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index ;
				}
				else
				{
					gunNO = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index;
				}

				ShmOCPP16DataPH->CsMsg.bits[gunNO].CancelReservationReq = 1;
				goto end;
			}
		}
	}

	//The reservationId does NOT match the reservationId
	sendCancelReservationConfirmation(uuid, comfirmstr);
end:
	// Fill in ocpp packet uuid
	strcpy((char *)ShmOCPP16DataPH->CancelReservation[gunNO].guid, uuid);

	return result;
}

int handleChangeAvailabilityRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
    int gunIndex = -1;
	char typeStr[16]={0};
	char comfirmstr[20];
	int specificId = FALSE;

	DEBUG_INFO("handleChangeAvailabilityRequest...\n");

	json_object *ChangeAvailability;
	ChangeAvailability = json_tokener_parse(payload);

	if(!is_error(ChangeAvailability))
	{
		// Required data
		if((json_object_object_get(ChangeAvailability, "connectorId") != NULL) && (json_object_get_type(json_object_object_get(ChangeAvailability, "connectorId")) == json_type_int))
			gunIndex = json_object_get_int(json_object_object_get(ChangeAvailability, "connectorId"));

		if(json_object_object_get(ChangeAvailability, "type") != NULL)
			sprintf((char*)typeStr, "%s", json_object_get_string(json_object_object_get(ChangeAvailability, "type")));
	}
	json_object_put(ChangeAvailability);


	if((gunIndex > 0) && (gunIndex <= gunTotalNumber))
	{
		ShmOCPP16DataPH->ChangeAvailability[gunIndex - 1].ConnectorId= gunIndex;
		sprintf((char *)ShmOCPP16DataPH->ChangeAvailability[gunIndex - 1].Type, "%s", typeStr);
	}
	else if(gunIndex == 0)
	{
		for(int i=0; i < gunTotalNumber; i++)
		{
			ShmOCPP16DataPH->ChangeAvailability[i].ConnectorId= gunIndex;
			sprintf((char *)ShmOCPP16DataPH->ChangeAvailability[i].Type, "%s", typeStr);
		}
	}

	memset(comfirmstr, 0, ARRAY_SIZE(comfirmstr));
	sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );

	if((gunIndex == 0) || ((gunIndex > 0) && (gunIndex <= gunTotalNumber)))
	{
		specificId = TRUE;
	}

	if(specificId == FALSE)
		goto end;

	if(strcmp((const char *)typeStr, AvailabilityTypeStr[Inoperative]) == 0)
	{

		//----------------------gunIndex is 0  ------------------------------------------------//
		if(gunIndex  == 0)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC
			{
				for(int i=0; i < gunTotalNumber; i++)
				{
					for (int index = 0; index < CHAdeMO_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_CHAdeMO)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == i))
						{
							if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // S_PRECHARGE
							{
								sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
								goto end;
							}
							else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) ||
									(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) ||
									(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) ||
									(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING) ||
									(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE))  // S_CHARGING
							{
								sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
								goto end;
							}
						}
					}//END FOR CHAdeMO_QUANTITY

					for (int index = 0; index < CCS_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_CCS)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == i))
						{
							if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION)// S_PRECHARGE
							{
									sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
									goto end;
							}
								else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) ||
										(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) ||
										(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) ||
										(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING) ||
										(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING
							{
									sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
									goto end;
							}
						}
					}//END FOR CCS_QUANTITY

					for (int index = 0; index < GB_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_GBT)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == i))
						{
							if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // S_PRECHARGE
							{
									sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
									goto end;
							}
							else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) ||
									(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) ||
									(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) ||
									(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING) ||
									(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING
							{
									sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
									goto end;
							}
						}
					}// END FOR GB_QUANTITY

					for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_DO)&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == i))
						{
							if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_RESERVATION) // S_PRECHARGE
							{
									sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
									goto end;
							}
							else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_AUTHORIZING) ||
									(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_PREPARING) ||
									(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) ||
									(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING) ||
									(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING
							{
									sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
									goto end;
							}
						}
					}// END FOR GENERAL_GUN_QUANTITY

					for (int index = 0; index < AC_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_AC)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == i))
						{
							if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // S_PRECHARGE
							{
									sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
									goto end;
							}
							else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) ||
									(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) ||
									(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) ||
									(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING) ||
									(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING
							{
									sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
									goto end;
							}
						}
					}//END FOR AC_QUANTITY
				}// END FOR gunTotalNumber
			}
			else if (ShmSysConfigAndInfo->SysConfig.ModelName[0]=='A') //'A' means AC
			{
				for(int i=0; i < gunTotalNumber; i++)
				{
					if(ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_RESERVATION) // S_PRECHARGE
					{
						sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
						goto end;
					}
					else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_AUTHORIZING) ||
						(ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_PREPARING) ||
						(ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_CHARGING) ||
						(ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_TERMINATING) ||
						(ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING
					{
						sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
						goto end;
					}
				}
			}

			sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
			goto end;
		}


		//----------------------gunIndex is not 0  ------------------------------------------------//

	    //check Transaction active
		for (int index = 0; index < CHAdeMO_QUANTITY; index++)
		{
			if ((gunIndex > 0)&&(gunType[gunIndex-1] == GUN_TYPE_CHAdeMO))
			{
				if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION) ) // S_PRECHARGE
				{
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
					goto end;
				}
				else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) ||
						(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) ||
						(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) ||
						(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING) ||
						(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE))  // S_CHARGING
				{
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
					goto end;
				}
				else
				{
					DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[%d].SystemStatus = %d\n",index, ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus);
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
					goto end;
				}
			}
		}//END FOR CHAdeMO_QUANTITY

		for (int index = 0; index < CCS_QUANTITY; index++)
		{
			if ((gunIndex > 0)&&(gunType[gunIndex - 1] == GUN_TYPE_CCS))
			{
				if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION) )// S_PRECHARGE
				{
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
					goto end;
				}
				else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) ||
						(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) ||
						(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) ||
						(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING) ||
						(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING
				{
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
					goto end;
				}
				else
				{
					DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.CcsChargingData[%d].SystemStatus=%d\n",index, ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus);
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
					goto end;
				}
			}
		}//END FOR CCS_QUANTITY

		for (int index = 0; index < GB_QUANTITY; index++)
		{
			if ((gunIndex > 0)&&(gunType[gunIndex-1] == GUN_TYPE_GBT))
			{
				if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // S_PRECHARGE
				{
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
					goto end;
				}
				else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) ||
						(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) ||
						(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) ||
						(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING) ||
						(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING
				{
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
					goto end;
				}
				else
				{
					DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.GbChargingData[%d].SystemStatus=%d\n",index,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus);
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
					goto end;
				}


			}
		}// END FOR GB_QUANTITY

		for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
		{
			if ((gunIndex > 0)&&(gunType[gunIndex-1] == GUN_TYPE_DO))
			{
				if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_RESERVATION)) // S_PRECHARGE
				{
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
					goto end;
				}
				else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_AUTHORIZING) ||
						(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_PREPARING) ||
						(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) ||
						(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING) ||
						(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING
				{
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
					goto end;
				}
				else
				{
					DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.GbChargingData[%d].SystemStatus=%d\n",index,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus);
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
					goto end;
				}
			}
		}// END FOR GENERAL_GUN_QUANTITY

		for (int index = 0; index < AC_QUANTITY; index++)
		{
			if ((gunIndex > 0)&&(gunType[gunIndex-1] ==GUN_TYPE_AC))
			{
				if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // S_PRECHARGE
				{
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
					goto end;
				}
				else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) ||
						(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) ||
						(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) ||
						(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING) ||
						(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING
				{
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
					goto end;
				}
				else
				{
					DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.AcChargingData[%d].SystemStatus=%d\n",index, ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus);
					sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
					goto end;
				}
			}
		}//END FOR AC_QUANTITY

	}//END FOR AvailabilityTypeStr[Inoperative]
	

	if(strcmp((const char *)typeStr, AvailabilityTypeStr[Operative]) == 0)
	{
		//----------------------gunIndex is 0  ------------------------------------------------//
		if(gunIndex  == 0)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC
			{
				for(int i=0; i < gunTotalNumber; i++)
				{
					for (int index = 0; index < CHAdeMO_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_CHAdeMO )&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == i)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT))  //S_FAULT   //(((gunIndex  == 0)|| ((gunIndex > 0)&&(gunType[gunIndex-1] == GUN_TYPE_CHAdeMO)) ) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_FAULT))  //S_FAULT
						{
							sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
							goto end;
						}
					}//END FOR CHAdeMO_QUANTITY

					for (int index = 0; index < CCS_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_CCS)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == i)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT//(((gunIndex  == 0)|| ((gunIndex > 0)&&((gunType[gunIndex - 1] == 'U')||(gunType[gunIndex - 1] == 'E'))) )&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
						{
							sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
							goto end;
						}
					}//END FOR CCS_QUANTITY

					for (int index = 0; index < GB_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_GBT)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == i)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT  //(((gunIndex  == 0)|| ((gunIndex > 0)&&(gunType[gunIndex-1] == 'G')))&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
						{
							//ShmOCPP16DataPH->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
							sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
							goto end;
						}
					}// END FOR GB_QUANTITY

					for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_DO)&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == i)&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_FAULT)) //S_FAULT  //(((gunIndex  == 0)|| ((gunIndex > 0)&&(gunType[gunIndex-1] == 'O')))&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
						{
							//ShmOCPP16DataPH->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
							sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
							goto end;
						}
					}// END FOR GENERAL_GUN_QUANTITY

					for (int index = 0; index < AC_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_AC) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT))  //S_FAULT // (((gunIndex  == 0)|| ((gunIndex > 0)&&((gunType[gunIndex-1] > '0')&&(gunType[gunIndex-1] <= '9')))) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT))  //S_FAULT
						{
							sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
							goto end;
						}
					}//END FOR CHAdeMO_QUANTITY

				}// END FOR gunTotalNumber
			}
			else if (ShmSysConfigAndInfo->SysConfig.ModelName[0]=='A') //'A' means AC
			{
				for(int i=0; i < gunTotalNumber; i++)
				{
					for (int index = 0; index < AC_QUANTITY; index++)
					{
						if ((gunType[i] == GUN_TYPE_AC) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT))  //S_FAULT // (((gunIndex  == 0)|| ((gunIndex > 0)&&((gunType[gunIndex-1] > '0')&&(gunType[gunIndex-1] <= '9')))) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT))  //S_FAULT
						{
							sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
							goto end;
						}
					}//END FOR CHAdeMO_QUANTITY

				} // END FOR gunTotalNumber
			}

			sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
			goto end;
		}

		//----------------------gunIndex is not 0  ------------------------------------------------//
	    //check Transaction active
		for (int index = 0; index < CHAdeMO_QUANTITY; index++)
		{
			if (((gunIndex > 0)&&(gunType[gunIndex-1] == GUN_TYPE_CHAdeMO) ) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_FAULT))  //S_FAULT
			{
				sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
				goto end;
			}
		}//END FOR CHAdeMO_QUANTITY

		for (int index = 0; index < CCS_QUANTITY; index++)
		{
			if ((((gunIndex > 0)&&(gunType[gunIndex - 1] == GUN_TYPE_CCS)) )&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_FAULT))  //S_FAULT
			{
				sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
				goto end;
			}
		}//END FOR CCS_QUANTITY

		for (int index = 0; index < GB_QUANTITY; index++)
		{
			if (((gunIndex > 0)&&(gunType[gunIndex-1] == GUN_TYPE_GBT))&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
			{
				sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
				goto end;
			}
		}// END FOR GB_QUANTITY

		for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
		{
			if (((gunIndex > 0)&&(gunType[gunIndex-1] == GUN_TYPE_DO))&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_FAULT)) //S_FAULT
			{
				sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
				goto end;
			}
		}// END FOR GENERAL_GUN_QUANTITY

		for (int index = 0; index < AC_QUANTITY; index++)
		{
			if (((gunIndex > 0)&&(gunType[gunIndex-1] == GUN_TYPE_AC)) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT))  //S_FAULT
			{
				sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
				goto end;
			}
		}//END FOR AC_QUANTITY
	}//END FOR AvailabilityTypeStr[Operative]

end:
	if((gunIndex != 0) && (gunIndex <= gunTotalNumber))
	{
		sprintf((char *)ShmOCPP16DataPH->ChangeAvailability[gunIndex - 1].ResponseStatus, "%s", comfirmstr );
	}
	else
	{
		sprintf((char *)ShmOCPP16DataPH->ChangeAvailability[0].ResponseStatus, "%s", comfirmstr );
	}

	if((gunIndex != 0) && (gunIndex <= gunTotalNumber))
	{
		if(strstr(comfirmstr, AvailabilityStatusStr[Rejected]) == NULL)
			ShmOCPP16DataPH->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
	}
	else if(gunIndex == 0)
	{
		if(strstr(comfirmstr, AvailabilityStatusStr[Rejected]) == NULL)
		{
			for(int i=0; i < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/; i++)
				ShmOCPP16DataPH->CsMsg.bits[i].ChangeAvailabilityReq = 1;
		}
	}

	sendChangeAvailabilityConfirmation(uuid, comfirmstr);
	system("/bin/fsync -d /dev/mtdblock13;/bin/sync &");
	return result;
}

int handleChangeConfigurationRequest(char *uuid, char *payload)
{
	mtrace();
	int valueInvalid = NO;
	int result = FAIL;
	char keystr[40]={0};
	char valuestr[501]={0}; //value should be limited in 500 bytes
	char comfirmstr[20]={0};

	DEBUG_INFO("handleChangeConfigurationRequest...\n");
	json_object *ChangeConfiguration;
	ChangeConfiguration = json_tokener_parse(payload);
	if(!is_error(ChangeConfiguration))
	{
		// Required data
		if(json_object_object_get(ChangeConfiguration, "key") != NULL)
			sprintf((char*)keystr, "%s", json_object_get_string(json_object_object_get(ChangeConfiguration, "key")));

		if((json_object_object_get(ChangeConfiguration, "value") != NULL) && (strlen(json_object_get_string(json_object_object_get(ChangeConfiguration, "value"))) < ARRAY_SIZE(valuestr)))
		{
			sprintf((char*)valuestr, "%s", json_object_get_string(json_object_object_get(ChangeConfiguration, "value")));
		}
		else
		{
			valueInvalid = YES;
			DEBUG_ERROR("The ChangeConfiguration value is NULL or OVER SIZE.\n");
		}
	}
	json_object_put(ChangeConfiguration);


    if((uuid==NULL) || (payload ==NULL) || (valueInvalid == YES))
    {
		DEBUG_ERROR("Payload is null or not accepted.\n");
		sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
    }
    else
    {
    	int status = setKeyValue(keystr, valuestr);

    	switch(status)
    	{
    		case ConfigurationStatus_Accepted:
    			sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Accepted]);
    			ShmOCPP16DataPH->MsMsg.bits.ChangeConfigurationReq = 1;
    			StoreConfigurationTable();
    			break;

    		case RebootRequired:
    			sprintf(comfirmstr, "%s", ConfigurationStatusStr[RebootRequired]);
    			StoreConfigurationTable();
    			break;

    		case NotSupported:
    			sprintf(comfirmstr, "%s", ConfigurationStatusStr[NotSupported] );
    			break;

    		case ConfigurationStatus_Rejected:
    		default:
    			sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
    			break;
    	}
    }

    sendChangeConfigurationConfirmation(uuid, comfirmstr);
	ShmOCPP16DataPH->MsMsg.bits.ChangeConfigurationConf = 1;

	if(((strcmp(keystr,"AuthorizationKey")==0) || (strcmp(keystr,"SecurityProfile")==0) || (strcmp(keystr,"OcppServer")==0) || (strcmp(keystr,"MaintainServer")==0)) && (strcmp(comfirmstr,"Accepted")==0))
	{
		StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig);
		SetOcppConnStatus(FALSE);
	}

	if(((strcmp(keystr,"FreeVend")==0) || (strcmp(keystr,"isEnableLocalPowerSharing")==0) || (strcmp(keystr,"PowerSharingServerIP")==0) || (strcmp(keystr,"RfidEndianType")==0) ||
		(strcmp(keystr,"Enable15118")==0) || (strcmp(keystr,"WifiSsid")==0) || (strcmp(keystr,"WifiPassword")==0) || (strcmp(keystr,"StopChargingByButton")==0)) && (strcmp(comfirmstr,"Accepted")==0))
	{
		StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig);
	}

	return result;
}

int handleClearCacheRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	char comfirmstr[20];
    char rmFileCmd[100]={0};
    struct stat stats;
    DEBUG_INFO("handleClearCacheRequest...\n");
    stat("/Storage/OCPP_PH", &stats);

    // Check for directory existence
    if (S_ISDIR(stats.st_mode) == 1)
    {}
    else
    {
    	DEBUG_INFO("\n OCPP directory not exist, create dir \n");
    	sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP_PH");
    	system(rmFileCmd);
    }

    if(OCPP_cleanLocalCache())
    {
    	sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Accepted] );
    }
    else
    {
    	sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Rejected] );
    }

    sendClearCacheConfirmation(uuid, comfirmstr);
    system("/bin/fsync -d /dev/mtdblock13;/bin/sync &");
    return result;
}

int handleClearChargingProfileRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	int resultRename;
	int connectorIdInt, chargingProfileIdInt, stackLevelInt;
	char chargingProfilePurposeStr[26]={0};
	int tempconnectorIdInt, tempchargingProfileIdInt, tempstackLevelInt;
	char tempchargingProfilePurposeStr[26]={0};
	char str[100]={0};
	char fname[200]={0};
	char comfirmstr[20]={0};
	char word[1600]={0};
	int clearflag = FALSE;
	int chargingProfileIdIsNULL = FALSE;
	int connectorIsNULL = FALSE;
	int chargingProfilePurposeIsNULL = FALSE;
	int stackLevelIsNULL = FALSE;
	//int GotoEnd = FALSE;
	FILE *fptr1, *fptr2;
	char temp[] = "/Storage/OCPP_PH/ClearChargingProfiletemp.json";  // Create temp file
    int n_chargingProfile=0;
    int isEmptyFile = FALSE;
    char sLineWord[1600]={0};
    char chargingProfiles[10][100]={0};
    int ChargeProfileCount = 0;
    int ch;
    connectorIdInt = chargingProfileIdInt = stackLevelInt = 0;
    DEBUG_INFO("handleClearChargingProfileRequest...\n");
    json_object *ClearChargingProfile;
	ClearChargingProfile = json_tokener_parse(payload);
	if(!is_error(ClearChargingProfile))
	{
		// Optional data
		if(json_object_object_get(ClearChargingProfile, "id") != NULL)
			chargingProfileIdInt = json_object_get_int(json_object_object_get(ClearChargingProfile, "id"));
		else
			chargingProfileIdIsNULL = TRUE;

		if(json_object_object_get(ClearChargingProfile, "connectorId") != NULL)
			connectorIdInt = json_object_get_int(json_object_object_get(ClearChargingProfile, "connectorId"));
		else
			connectorIsNULL = TRUE;

		if(json_object_object_get(ClearChargingProfile, "chargingProfilePurpose") != NULL)
			sprintf((char*)chargingProfilePurposeStr, "%s", json_object_get_string(json_object_object_get(ClearChargingProfile, "chargingProfilePurpose")));
		else
			chargingProfilePurposeIsNULL = TRUE;

		if(json_object_object_get(ClearChargingProfile, "stackLevel") != NULL)
			stackLevelInt = json_object_get_int(json_object_object_get(ClearChargingProfile, "stackLevel"));
		else
			stackLevelIsNULL = TRUE;
	}
	json_object_put(ClearChargingProfile);


	if(connectorIdInt > 0)
	{
		if(chargingProfilePurposeIsNULL == TRUE)
		{
			int m = 0;
			memset(fname, 0, ARRAY_SIZE(fname));
			sprintf(fname, "/Storage/OCPP_PH/TxDefaultProfile_%d.json", connectorIdInt);
			if((access(fname,F_OK))!=-1)
			{
				strcpy(chargingProfiles[m], fname);
				m = m + 1;
			}

			memset(fname, 0, ARRAY_SIZE(fname));
			sprintf(fname, "/Storage/OCPP_PH/TxProfile_%d.json", connectorIdInt);
			if((access(fname,F_OK))!=-1)
			{
				strcpy(chargingProfiles[m], fname);
				m = m + 1;
			}

			ChargeProfileCount = m;
		}
		else if((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(chargingProfilePurposeStr,"TxDefaultProfile")==0))
		{
			//strcpy(fname, TxDefaultProfile_1_JSON);
			sprintf(fname, "/Storage/OCPP_PH/TxDefaultProfile_%d.json", connectorIdInt);
			if((access(fname,F_OK))!=-1)
			{
				strcpy(chargingProfiles[0], fname);
				ChargeProfileCount = 1;
			}

		}
		else if((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(chargingProfilePurposeStr,"TxProfile")==0))
		{
			sprintf(fname, "/Storage/OCPP_PH/TxProfile_%d.json", connectorIdInt);
			if((access(fname,F_OK))!=-1)
			{
				strcpy(chargingProfiles[0], fname);
				ChargeProfileCount = 1;
			}
			//strcpy(fname, TxProfile_1_JSON);
		}
	}
	else // Check all Charging Profiles
	{
		int i = 0;
		char fnametemp[200]={0};
		ChargeProfileCount = 0;
		//Check ChargePointMaxProfile.json exit
		if((access("/Storage/OCPP_PH/ChargePointMaxProfile.json",F_OK))!=-1)
		{
			strcpy(chargingProfiles[i], "/Storage/OCPP_PH/ChargePointMaxProfile.json");
			i = i + 1;
		}

		//Check TxDefaultProfile_0.json exit
		if((access("/Storage/OCPP_PH/TxDefaultProfile_0.json",F_OK))!=-1)
		{
			strcpy(chargingProfiles[i], "/Storage/OCPP_PH/TxDefaultProfile_0.json");
			i = i + 1;
		}

        //Check TxDefaultProfile_%d.json
		for(int j=1; j <= gunTotalNumber; j++)
		{
			memset(fnametemp, 0, ARRAY_SIZE(fnametemp));
			sprintf(fnametemp, "/Storage/OCPP_PH/TxDefaultProfile_%d.json", j);
			if((access(fnametemp,F_OK))!=-1)
			{
				strcpy(chargingProfiles[i], fnametemp);
				i = i + 1;
			}
		}

		//Check TxProfile_%d.json
		for(int j=1; j <= gunTotalNumber; j++)
		{
			memset(fnametemp, 0, ARRAY_SIZE(fnametemp));
			sprintf(fnametemp, "/Storage/OCPP_PH/TxProfile_%d.json", j);
			if((access(fnametemp,F_OK))!=-1)
			{
				strcpy(chargingProfiles[i], fnametemp);
				i = i + 1;
			}
		}

		ChargeProfileCount = i;
	}// End connectorIsNULL is TRUE

	if(ChargeProfileCount == 0)
	{
		sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
		goto end;
	}

	if(connectorIsNULL == FALSE && (connectorIdInt != 0) && ( (connectorIdInt-1) > gunTotalNumber) )
	{
		sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
		goto end;
	}

	if((connectorIsNULL == FALSE) && (connectorIdInt == 0) )
	{
		memset(str, 0, ARRAY_SIZE(str));
		// clear temp file
		sprintf(str,"rm -f %s",temp);
		system(str);

		for(int k=0; k < ChargeProfileCount; k++)
		{
			memset(str, 0, ARRAY_SIZE(str));
			//clear file in C
			sprintf(str,"rm -f %s",chargingProfiles[k]);
			system(str);
		}

		sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
		goto end;
	}
	else if(connectorIsNULL == TRUE)
	{
		for(int k=0; k < ChargeProfileCount; k++)
		{
			fptr1 = fopen(chargingProfiles[k], "r");
			fptr2 = fopen("/Storage/OCPP_PH/ClearChargingProfiletemp.json", "w+");

			//Check Charging Profile Count
			while(fscanf(fptr1, "%s", word) != EOF)
			{
				//DEBUG_INFO("word=%s\n",word);
				if(strstr(word, "chargingProfileId")!= NULL)
				{
					//DEBUG_INFO("test chargingProfileId \n");
					n_chargingProfile = n_chargingProfile + 1;
					//DEBUG_INFO("chargingProfileId Found\n");
				}
			}
			rewind(fptr1);

			//search Charging Profile Element
			//int i= 0;
			while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL )
			{
				json_object *tmpProfilee;
				tmpProfilee = json_tokener_parse(sLineWord);
				if(!is_error(tmpProfilee))
				{
					if(json_object_object_get(tmpProfilee, "connectorId") != NULL)
					{
						tempconnectorIdInt = json_object_get_int(json_object_object_get(tmpProfilee, "connectorId"));
						DEBUG_INFO("file's gun number: %d\n", tempconnectorIdInt);
					}

					if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfileId") != NULL)
					{
						tempchargingProfileIdInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfileId"));
						DEBUG_INFO("file's chargingProfileId: %d\n", tempchargingProfileIdInt);
					}

					if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "stackLevel") != NULL)
					{
						tempstackLevelInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "stackLevel"));
						DEBUG_INFO("file's stackLevel: %d\n", tempstackLevelInt);
					}

					if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfilePurpose") != NULL)
					{
						sprintf((char*)tempchargingProfilePurposeStr, "%s", json_object_get_string(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfilePurpose")));
						DEBUG_INFO("file's chargingProfilePurpose: %s\n", tempchargingProfilePurposeStr);
					}
				}
				json_object_put(tmpProfilee);


				if((chargingProfileIdIsNULL == FALSE)&&(tempchargingProfileIdInt == chargingProfileIdInt))
				{
					//------- not write to  fptr2-------//
					sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
					//clearflag = TRUE;
				}
				else if((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0))
				{
					//------- not write to  fptr2-------//
					sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
				}
				else if((stackLevelIsNULL == FALSE) &&(tempstackLevelInt == stackLevelInt))
				{
					//------- not write to  fptr2-------//
					sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
				}
				else if(chargingProfileIdIsNULL && chargingProfilePurposeIsNULL && stackLevelIsNULL)
				{
					sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
				}
				else
				{
					fprintf(fptr2, sLineWord);//writing data into file
				}

				memset(sLineWord, 0, ARRAY_SIZE(sLineWord));

		   } //End of while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL )

		   if(clearflag == TRUE)
		   {
			   fclose(fptr1);
			   fclose(fptr2);

			   sprintf(str,"rm -f %s",chargingProfiles[k]);
			   system(str);

			   // clear temp file
			   sprintf(str,"rm -f %s",temp);
			   system(str);

		   }
		   else
		   {
			   fclose(fptr1);
			   fclose(fptr2);

			   memset(str, 0, ARRAY_SIZE(str));
			   sprintf(str,"rm -f %s",chargingProfiles[k]);
			   system(str);

			   resultRename = rename(temp, chargingProfiles[k]);

			   if(resultRename == 0)
			   {
			       DEBUG_INFO("File ChargingProfile renamed successfully\n");
			   }
			   else
			   {
			       DEBUG_INFO("Error: unable to rename the ChargingProfile file\n");
			   }

			   if(comfirmstr[0]== 0)
			   {
			       sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
			   }

			    //Check chargingProfile is empty file
			    /*------ Read the file ----------------*/
			    fptr1=fopen(chargingProfiles[k],"r");
			    ch=fgetc(fptr1);
			    rewind(fptr1);
			    memset(sLineWord, 0, ARRAY_SIZE(sLineWord));
			    if(ch!=EOF)
			    {
			        while (fgets( sLineWord, sizeof sLineWord, fptr1) != NULL)
			        {
			        	str[strlen(sLineWord) - 1] = '\0'; // eat the newline fgets() stores
			        	if(sLineWord[0]=='\0')
			        	{
			        		isEmptyFile = TRUE;
			        		break;
			        	}
			        	else
			        	{
			        		isEmptyFile = FALSE;
			        		break;
			        	}
			        }
			    }
			    else
			    	isEmptyFile = TRUE;

			    fclose(fptr1);

			    if(isEmptyFile == TRUE)
			    {
			    	memset(str, 0, ARRAY_SIZE(str));
			        sprintf(str,"rm -f %s",chargingProfiles[k]);
			        system(str);
			    }
			}
	  }// End of while(int k=0; k < ChargePointCount; k++)
	}
	else if((connectorIsNULL == FALSE) && (connectorIdInt != 0) )
	{
		DEBUG_INFO("ChargeProfileCount = %d\n", ChargeProfileCount);
		for(int k=0; k < ChargeProfileCount; k++)
		{
		   fptr1 = fopen(chargingProfiles[k], "r");
		   fptr2 = fopen(temp, "w+");
		   //Check Charging Profile Count
		   while(fscanf(fptr1, "%s", word) != EOF)
		   {
			   //DEBUG_INFO("word=%s\n",word);
			   if(strstr(word, "chargingProfileId")!= NULL)
			   {
				   n_chargingProfile = n_chargingProfile + 1;
			   }
		   }
		   rewind(fptr1);
		   //search Charging Profile Element
		   //int i= 0;
		   while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL )
		   {
			   	json_object *tmpProfilee;
				tmpProfilee = json_tokener_parse(sLineWord);
				if(!is_error(tmpProfilee))
				{
					if(json_object_object_get(tmpProfilee, "connectorId") != NULL)
					{
						tempconnectorIdInt = json_object_get_int(json_object_object_get(tmpProfilee, "connectorId"));
						DEBUG_INFO("file's gun number: %d\n", tempconnectorIdInt);
					}

					if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfileId") != NULL)
					{
						tempchargingProfileIdInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfileId"));
						DEBUG_INFO("file's chargingProfileId: %d\n", tempchargingProfileIdInt);
					}

					if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "stackLevel") != NULL)
					{
						tempstackLevelInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "stackLevel"));
						DEBUG_INFO("file's stackLevel: %d\n", tempstackLevelInt);
					}

					if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfilePurpose") != NULL)
					{
						sprintf((char*)tempchargingProfilePurposeStr, "%s", json_object_get_string(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfilePurpose")));
						DEBUG_INFO("file's chargingProfilePurpose: %s\n", tempchargingProfilePurposeStr);
					}
				}
				json_object_put(tmpProfilee);

			   if((chargingProfileIdIsNULL == FALSE)&&(tempchargingProfileIdInt == chargingProfileIdInt))
			   {
				   //------- not write to  fptr2-------//
				   sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
				   //clearflag = TRUE;
			   }
			   else if((stackLevelIsNULL == FALSE) &&(tempstackLevelInt == stackLevelInt))
			   {
				   //------- not write to  fptr2-------//
				   sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
			   }
			   else if(stackLevelIsNULL == TRUE)
			   {
				   //Clear Whole File
				   sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
				   clearflag = TRUE;
				   break;
			   }
			   else
			   {
				   fprintf(fptr2, sLineWord);//writing data into file
			   }

			   memset(sLineWord, 0, ARRAY_SIZE(sLineWord));
		   }

		   if(clearflag == TRUE)
		   {
			   fclose(fptr1);
			   fclose(fptr2);

			   sprintf(str,"rm -f %s",chargingProfiles[k]);
			   system(str);

			   // clear temp file
			   sprintf(str,"rm -f %s",temp);
			   system(str);
		   }
		   else
		   {
			   fclose(fptr1);
			   fclose(fptr2);

			   sprintf(str,"rm -f %s",chargingProfiles[k]);
			   system(str);

			   resultRename = rename(temp, chargingProfiles[k]);

			   if(resultRename == 0)
			   {
				   DEBUG_INFO("File ChargingProfile renamed successfully");
			   }
			   else
			   {
				   DEBUG_INFO("Error: unable to rename the ChargingProfile file");
			   }

			   if(comfirmstr[0]== 0)
			   {
				   sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
			   }

			   //Check chargingProfile is empty file
			   /*------ Read the file ----------------*/
			   fptr1=fopen(chargingProfiles[k],"r");
			   ch=fgetc(fptr1);
			   rewind(fptr1);
			   memset(sLineWord, 0, ARRAY_SIZE(sLineWord));
			   if(ch!=EOF)
			   {
				   while (fgets( sLineWord, sizeof sLineWord, fptr1) != NULL)
				   {
					   str[strlen(sLineWord) - 1] = '\0'; // eat the newline fgets() stores

					   if(sLineWord[0]=='\0')
					   {
						   isEmptyFile = TRUE;
						   break;
					   }
					   else
					   {
						   isEmptyFile = FALSE;
						   break;
					   }
				   }
			   }
			   else
				   isEmptyFile = TRUE;

			   fclose(fptr1);

			   if(isEmptyFile == TRUE)
			   {
				   memset(str, 0, ARRAY_SIZE(str));
				   sprintf(str,"rm -f %s",chargingProfiles[k]);
				   system(str);
			   }
			   /*------- End of reading ---------------*/
		   }
	  } //  while(int k=0; k < ChargeProfileCount; k++)
	}// (connectorIsNULL == FALSE) && (connectorIdInt != 0)

end:
	if(strcmp(comfirmstr, ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted]) == 0)
	{
		if(connectorIdInt == 0)
		{
			for(uint8_t idx=0;idx<gunTotalNumber;idx++)
			{
				checkCompositeSchedule((idx+1), 86400, &ShmOCPP16DataPH->SmartChargingProfile[idx], TRUE);
			}
		}
		else
			checkCompositeSchedule(connectorIdInt, 86400, &ShmOCPP16DataPH->SmartChargingProfile[connectorIdInt-1], TRUE);
	}

	sendClearChargingProfileConfirmation(uuid, comfirmstr);
	system("/bin/fsync -d /dev/mtdblock13;/bin/sync &");

	return result;
}

void createFirmwareVersionByDataTransfer(void)
{
	json_object *FirmwareDataTransfer = json_object_new_object();

	// AC & DC model
	json_object_object_add(FirmwareDataTransfer, "CsuBootLoadFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev));
	json_object_object_add(FirmwareDataTransfer, "CsuKernelFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev));
	json_object_object_add(FirmwareDataTransfer, "CsuRootFsFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev));
	json_object_object_add(FirmwareDataTransfer, "CsuPrimFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev));

	// DC model
	if((ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D'))
	{
		if((gunType[1] != GUN_TYPE_UNKNOWN) ||
		   (gunType[2] != GUN_TYPE_UNKNOWN) ||
		   (gunType[3] != GUN_TYPE_UNKNOWN))
		{
			json_object_object_add(FirmwareDataTransfer, "Connector2FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.Connector2FwRev));
		}

		if((ShmSysConfigAndInfo->SysConfig.ModelName[1]!='B') && (ShmSysConfigAndInfo->SysConfig.ModelName[1]!='K') && (ShmSysConfigAndInfo->SysConfig.ModelName[1]!='O'))
		{
			// DS DM DW
			json_object_object_add(FirmwareDataTransfer, "FanModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.FanModuleFwRev));
			json_object_object_add(FirmwareDataTransfer, "RelayModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev));
			json_object_object_add(FirmwareDataTransfer, "LedModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.LedModuleFwRev));
			json_object_object_add(FirmwareDataTransfer, "Connector1FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.Connector1FwRev));
			json_object_object_add(FirmwareDataTransfer, "PsuPrimFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev));
			json_object_object_add(FirmwareDataTransfer, "PsuSecFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.PsuSecFwRev));
		}
		else
		{
			json_object_object_add(FirmwareDataTransfer, "FanModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.FanModuleFwRev));
			json_object_object_add(FirmwareDataTransfer, "RelayModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev));
			json_object_object_add(FirmwareDataTransfer, "PsuPrimFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev));
			json_object_object_add(FirmwareDataTransfer, "PsuSecFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.PsuSecFwRev));


			json_object_object_add(FirmwareDataTransfer, "DD0_CsuBootLoadFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].CsuBootLoadFwRev));
			json_object_object_add(FirmwareDataTransfer, "DD0_CsuKernelFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].CsuKernelFwRev));
			json_object_object_add(FirmwareDataTransfer, "DD0_CsuRootFsFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].CsuRootFsFwRev));
			json_object_object_add(FirmwareDataTransfer, "DD0_CsuPrimFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].CsuPrimFwRev));
			json_object_object_add(FirmwareDataTransfer, "DD0_FanModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].FanModuleFwRev));
			json_object_object_add(FirmwareDataTransfer, "DD0_RelayModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].RelayModuleFwRev));
			json_object_object_add(FirmwareDataTransfer, "DD0_LedModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].LedModuleFwRev));
			json_object_object_add(FirmwareDataTransfer, "DD0_Connector1FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].Connector1FwRev));
			json_object_object_add(FirmwareDataTransfer, "DD0_Connector2FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].Connector2FwRev));

			if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuBootLoadFwRev) > 0)
				json_object_object_add(FirmwareDataTransfer, "DD1_CsuBootLoadFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuBootLoadFwRev));

			if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuKernelFwRev) > 0)
				json_object_object_add(FirmwareDataTransfer, "DD1_CsuKernelFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuKernelFwRev));

			if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuRootFsFwRev) > 0)
				json_object_object_add(FirmwareDataTransfer, "DD1_CsuRootFsFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuRootFsFwRev));

			if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuPrimFwRev) > 0)
				json_object_object_add(FirmwareDataTransfer, "DD1_CsuPrimFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuPrimFwRev));

			if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].FanModuleFwRev) > 0)
				json_object_object_add(FirmwareDataTransfer, "DD1_FanModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].FanModuleFwRev));

			if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].RelayModuleFwRev) > 0)
				json_object_object_add(FirmwareDataTransfer, "DD1_RelayModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].RelayModuleFwRev));

			if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].LedModuleFwRev) > 0)
				json_object_object_add(FirmwareDataTransfer, "DD1_LedModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].LedModuleFwRev));

			if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].Connector1FwRev) > 0)
				json_object_object_add(FirmwareDataTransfer, "DD1_Connector1FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].Connector1FwRev));

			if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].Connector2FwRev) > 0)
				json_object_object_add(FirmwareDataTransfer, "D11_Connector2FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].Connector2FwRev));
		}
	}

	// 4G model
	if((ShmSysConfigAndInfo->SysConfig.ModelName[10]=='T')||(ShmSysConfigAndInfo->SysConfig.ModelName[10]=='D'))
	{
		json_object_object_add(FirmwareDataTransfer, "TelcomModemFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSoftwareVer));
	}

	sprintf((char*)ShmOCPP16DataPH->DataTransfer[0].ResponseData, json_object_to_json_string_ext(FirmwareDataTransfer, JSON_C_TO_STRING_PLAIN));
	json_object_put(FirmwareDataTransfer);
}

int handleDataTransferRequest(char *uuid, char *payload)
{
	mtrace();
	json_object *response = json_object_new_object();
	int result = FAIL;
	char tempvendorId[255]={0};
	char tempmessageId[50]={0};
	char tempdata[1024]={0};
	char message[2048]={0};

	DEBUG_INFO("handleDataTransferRequest...\n");
	if((uuid != NULL) && (payload != NULL))
	{
		json_object *DataTransfer;
		DataTransfer = json_tokener_parse(payload);

		if(!is_error(DataTransfer))
		{
			// Required data
			if(json_object_object_get(DataTransfer, "vendorId") != NULL)
				sprintf((char*)tempvendorId, "%s", json_object_get_string(json_object_object_get(DataTransfer, "vendorId")));

			// Optional data
			if(json_object_object_get(DataTransfer, "messageId") != NULL)
				sprintf((char*)tempmessageId, "%s", json_object_get_string(json_object_object_get(DataTransfer, "messageId")));

			if(json_object_object_get(DataTransfer, "data") != NULL)
				sprintf((char*)tempdata, "%s", json_object_get_string(json_object_object_get(DataTransfer, "data")));

			result = PASS;
		}
		json_object_put(DataTransfer);

		if(strstr(tempmessageId, "ID_FirmwareVersion") != NULL)
		{
			// Send all moudle firmware version on EVSE
			createFirmwareVersionByDataTransfer();
			json_object_object_add(response, "status", json_object_new_string("Accepted"));
			json_object_object_add(response, "data", json_object_new_string((char*)ShmOCPP16DataPH->DataTransfer[0].ResponseData));
			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "ID_Tmate") != NULL)
		{
			system("/usr/bin/run_tmate_restart.sh &");

			json_object_object_add(response, "status", json_object_new_string("Accepted"));
			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "ID_ChargingPreference") != NULL)
		{
			json_object *data;
			data = json_tokener_parse(tempdata);
			if(!is_error(data))
			{
				if((json_object_object_get(data, "ConnectorId") != NULL) && (json_object_get_int(json_object_object_get(data, "ConnectorId")) > 0) && (json_object_get_int(json_object_object_get(data, "ConnectorId")) <= gunTotalNumber))
				{
					DEBUG_INFO("ChargeingPreference connector id: %d\n", json_object_get_int(json_object_object_get(data, "ConnectorId")));
					memset(&ShmOCPP16DataPH->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))], 0x00, sizeof(struct StructSessionTarget));

					if(json_object_object_get(data, "SOC") != NULL)
					{
						ShmOCPP16DataPH->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))-1].targetSoc = json_object_get_int(json_object_object_get(data, "SOC"));
						DEBUG_INFO("ChargeingPreference target soc: %d\n", json_object_get_int(json_object_object_get(data, "SOC")));
					}

					if(json_object_object_get(data, "Energy") != NULL)
					{
						ShmOCPP16DataPH->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))-1].targetEnergy = json_object_get_int(json_object_object_get(data, "Energy"));
						DEBUG_INFO("ChargeingPreference target energy: %d KWH\n", json_object_get_int(json_object_object_get(data, "Energy")));
					}

					if(json_object_object_get(data, "Duration") != NULL)
					{
						ShmOCPP16DataPH->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))-1].targetDuration = json_object_get_int(json_object_object_get(data, "Duration"));
						DEBUG_INFO("ChargeingPreference target duration: %d minutes\n", json_object_get_int(json_object_object_get(data, "Duration")));
					}

					json_object_object_add(response, "status", json_object_new_string("Accepted"));
				}
				else
				{
					json_object_object_add(response, "status", json_object_new_string("Rejected"));
					json_object_object_add(response, "data", json_object_new_string("Connector id must > 0."));
				}
			}
			else
			{
				json_object_object_add(response, "status", json_object_new_string("Rejected"));
				json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
			}
			json_object_put(data);

			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "SetLEDBar") != NULL)
		{
			json_object *data;
			data = json_tokener_parse(tempdata);
			if(!is_error(data))
			{
				ShmSysConfigAndInfo->SysConfig.LedInfo.Intensity = json_object_get_int(json_object_object_get(data, "Intensity"));

				ShmSysConfigAndInfo->SysConfig.LedInfo.Red[0] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Idle"), "R"));
				ShmSysConfigAndInfo->SysConfig.LedInfo.Green[0]= json_object_get_int(json_object_object_get(json_object_object_get(data, "Idle"), "G"));
				ShmSysConfigAndInfo->SysConfig.LedInfo.Blue[0] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Idle"), "B"));
				ShmSysConfigAndInfo->SysConfig.LedInfo.Red[1] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Charging"), "R"));
				ShmSysConfigAndInfo->SysConfig.LedInfo.Green[1]= json_object_get_int(json_object_object_get(json_object_object_get(data, "Charging"), "G"));
				ShmSysConfigAndInfo->SysConfig.LedInfo.Blue[1] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Charging"), "B"));
				ShmSysConfigAndInfo->SysConfig.LedInfo.Red[2] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Fault"), "R"));
				ShmSysConfigAndInfo->SysConfig.LedInfo.Green[2]= json_object_get_int(json_object_object_get(json_object_object_get(data, "Fault"), "G"));
				ShmSysConfigAndInfo->SysConfig.LedInfo.Blue[2] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Fault"), "B"));

				json_object_object_add(response, "status", json_object_new_string("Accepted"));
			}
			else
			{
				json_object_object_add(response, "status", json_object_new_string("Rejected"));
				json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
			}
			json_object_put(data);

			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "SetUserPrice") != NULL)
		{
			json_object *data;
			data = json_tokener_parse(tempdata);
			if(!is_error(data))
			{
				memset(&ShmOCPP16DataPH->Cost.SetUserPrice, 0x00, sizeof(struct StrcutSetUserPrice));
				json_object_object_add(response, "status", json_object_new_string("Accepted"));

				if(json_object_object_get(data, "idToken") != NULL)
				{
					sprintf((char*)ShmOCPP16DataPH->Cost.SetUserPrice.idToken, "%s", json_object_get_string(json_object_object_get(data, "idToken")));
					DEBUG_INFO("idToken: %s\n", json_object_get_string(json_object_object_get(data, "idToken")));
				}
				else
				{
					json_object_object_add(response, "status", json_object_new_string("Rejected"));
					json_object_object_add(response, "data", json_object_new_string("idToken not found."));
				}

				if(json_object_object_get(data, "price") != NULL) //v1.0
				{
					sprintf((char*)ShmOCPP16DataPH->Cost.SetUserPrice.price, "%s", json_object_get_string(json_object_object_get(data, "price")));
					DEBUG_INFO("price: %s\n", json_object_get_string(json_object_object_get(data, "price")));
				}
				else if(json_object_object_get(data, "priceText") != NULL) //v2.0
				{
					sprintf((char*)ShmOCPP16DataPH->Cost.SetUserPrice.price, "%s", json_object_get_string(json_object_object_get(data, "priceText")));
					DEBUG_INFO("priceText: %s\n", json_object_get_string(json_object_object_get(data, "priceText")));
				}
				else
				{
					json_object_object_add(response, "status", json_object_new_string("Rejected"));
					json_object_object_add(response, "data", json_object_new_string("price or priceText not found."));
				}


			}
			else
			{
				json_object_object_add(response, "status", json_object_new_string("Rejected"));
				json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
			}
			json_object_put(data);

			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "RunningCost") != NULL)
		{
			json_object *data;
			data = json_tokener_parse(tempdata);
			if(!is_error(data))
			{
				json_object_object_add(response, "status", json_object_new_string("Accepted"));
				if(json_object_object_get(data, "txId") != NULL)
				{
					// California pricing V1.0
					DEBUG_INFO("California pricing V1.0\n");
					DEBUG_INFO("txId: %d\n", json_object_get_int(json_object_object_get(data, "txId")));
					sprintf((char*)dmsVersion, "1.0");

					for(int idx = 0;idx<gunTotalNumber;idx++)
					{
						if(ShmOCPP16DataPH->StartTransaction[idx].ResponseTransactionId == json_object_get_int(json_object_object_get(data, "txId")))
						{
							memset(&ShmOCPP16DataPH->Cost.RunningCost[idx], 0x00, sizeof(struct StrcutRunningCost));

							ShmOCPP16DataPH->Cost.RunningCost[idx].txId = json_object_get_int(json_object_object_get(data, "txId"));

							if(json_object_object_get(data, "description") != NULL)
							{
								// California pricing V1.0
								DEBUG_INFO("California pricing V1.0\n");
								DEBUG_INFO("description: %s\n", json_object_get_string(json_object_object_get(data, "description")));
								sprintf((char*)ShmOCPP16DataPH->Cost.RunningCost[idx].description, "%s", json_object_get_string(json_object_object_get(data, "description")));
							}

						}

					}
				}
				else if(json_object_object_get(data, "transactionId") != NULL)
				{
					// California pricing V2.0
					DEBUG_INFO("California pricing V2.0\n");
					DEBUG_INFO("transactionId: %d\n", json_object_get_int(json_object_object_get(data, "transactionId")));
					sprintf((char*)dmsVersion, "2.0");

					for(int idx=0;idx<gunTotalNumber;idx++)
					{
						if(ShmOCPP16DataPH->StartTransaction[idx].ResponseTransactionId == json_object_get_int(json_object_object_get(data, "transactionId")))
						{
							if(json_object_object_get(data, "timestamp") != NULL)
							{
								DEBUG_INFO("timestamp: %s\n", json_object_get_string(json_object_object_get(data, "timestamp")));
								sprintf((char*)ShmOCPP16DataPH->Cost.RunningCost[idx].timestamp, "%s", json_object_get_string(json_object_object_get(data, "timestamp")));
							}
							else
							{
								json_object_object_add(response, "status", json_object_new_string("Rejected"));
								json_object_object_add(response, "data", json_object_new_string("timestamp not found."));
							}

							if(json_object_object_get(data, "meterValue") != NULL)
							{
								DEBUG_INFO("meterValue: %d\n", json_object_get_int(json_object_object_get(data, "meterValue")));
								ShmOCPP16DataPH->Cost.RunningCost[idx].meterValue = json_object_get_int(json_object_object_get(data, "meterValue"));
							}
							else
							{
								json_object_object_add(response, "status", json_object_new_string("Rejected"));
								json_object_object_add(response, "data", json_object_new_string("meterValue not found."));
							}

							if(json_object_object_get(data, "cost") != NULL)
							{
								DEBUG_INFO("cost: %f\n", json_object_get_double(json_object_object_get(data, "cost")));
								ShmOCPP16DataPH->Cost.RunningCost[idx].cost = json_object_get_double(json_object_object_get(data, "cost"));
							}
							else
							{
								json_object_object_add(response, "status", json_object_new_string("Rejected"));
								json_object_object_add(response, "data", json_object_new_string("cost not found."));
							}

							if(json_object_object_get(data, "state") != NULL)
							{
								DEBUG_INFO("state: %s\n", json_object_get_string(json_object_object_get(data, "state")));
								sprintf((char*)ShmOCPP16DataPH->Cost.RunningCost[idx].state, "%s", json_object_get_string(json_object_object_get(data, "state")));
							}
							else
							{
								json_object_object_add(response, "status", json_object_new_string("Rejected"));
								json_object_object_add(response, "data", json_object_new_string("state not found."));
							}

							if(json_object_object_get(data, "chargingPrice") != NULL)
							{
								if(json_object_object_get(json_object_object_get(data, "chargingPrice"), "kWhPrice") != NULL)
								{
									DEBUG_INFO("chargingPrice-kWhPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "kWhPrice")));
									ShmOCPP16DataPH->Cost.RunningCost[idx].chargingPrice.kWhPrice = json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "kWhPrice"));
								}

								if(json_object_object_get(json_object_object_get(data, "chargingPrice"), "hourPrice") != NULL)
								{
									DEBUG_INFO("chargingPrice-hourPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "hourPrice")));
									ShmOCPP16DataPH->Cost.RunningCost[idx].chargingPrice.hourPrice = json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "hourPrice"));
								}

								if(json_object_object_get(json_object_object_get(data, "chargingPrice"), "flatFee") != NULL)
								{
									DEBUG_INFO("chargingPrice-flatFee: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "flatFee")));
									ShmOCPP16DataPH->Cost.RunningCost[idx].chargingPrice.flatFee = json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "flatFee"));
								}
							}
							else
							{
								json_object_object_add(response, "status", json_object_new_string("Rejected"));
								json_object_object_add(response, "data", json_object_new_string("chargingPrice not found."));
							}

							if(json_object_object_get(data, "idlePrice") != NULL)
							{
								if(json_object_object_get(json_object_object_get(data, "idlePrice"), "graceMinutes") != NULL)
								{
									DEBUG_INFO("idlePrice-graceMinutes: %d\n", json_object_get_int(json_object_object_get(json_object_object_get(data, "idlePrice"), "graceMinutes")));
									ShmOCPP16DataPH->Cost.RunningCost[idx].idlePrice.graceMinutes = json_object_get_int(json_object_object_get(json_object_object_get(data, "idlePrice"), "graceMinutes"));
								}

								if(json_object_object_get(json_object_object_get(data, "idlePrice"), "hourPrice") != NULL)
								{
									DEBUG_INFO("idlePrice-hourPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "idlePrice"), "hourPrice")));
									ShmOCPP16DataPH->Cost.RunningCost[idx].idlePrice.hourPrice = json_object_get_double(json_object_object_get(json_object_object_get(data, "idlePrice"), "hourPrice"));
								}
							}

							if(json_object_object_get(data, "nextPeriod") != NULL)
							{
								if(json_object_object_get(json_object_object_get(data, "nextPeriod"), "atTime") != NULL)
								{
									DEBUG_INFO("nextPeriod-atTime: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(data, "nextPeriod"), "atTime")));
									sprintf((char*)ShmOCPP16DataPH->Cost.RunningCost[idx].nextPeriod.atTime, "%s", json_object_get_string(json_object_object_get(json_object_object_get(data, "nextPeriod"), "atTime")));
								}
								else
								{
									json_object_object_add(response, "status", json_object_new_string("Rejected"));
									json_object_object_add(response, "data", json_object_new_string("atTime not found."));
								}

								if(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice") != NULL)
								{
									if(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "kWhPrice") != NULL)
									{
										DEBUG_INFO("nextPeriod-chargingPrice-kWhPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "kWhPrice")));
										ShmOCPP16DataPH->Cost.RunningCost[idx].nextPeriod.chargingPrice.kWhPrice = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "kWhPrice"));
									}

									if(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "hourPrice") != NULL)
									{
										DEBUG_INFO("nextPeriod-chargingPrice-hourPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "hourPrice")));
										ShmOCPP16DataPH->Cost.RunningCost[idx].nextPeriod.chargingPrice.hourPrice = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "hourPrice"));
									}

									if(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "flatFee") != NULL)
									{
										DEBUG_INFO("nextPeriod-chargingPrice-flatFee: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "flatFee")));
										ShmOCPP16DataPH->Cost.RunningCost[idx].nextPeriod.chargingPrice.flatFee = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "flatFee"));
									}
								}
								else
								{
									json_object_object_add(response, "status", json_object_new_string("Rejected"));
									json_object_object_add(response, "data", json_object_new_string("chargingPrice not found."));
								}

								if(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice") != NULL)
								{
									if(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "graceMinutes") != NULL)
									{
										DEBUG_INFO("nextPeriod-idlePrice-graceMinutes: %d\n", json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "graceMinutes")));
										ShmOCPP16DataPH->Cost.RunningCost[idx].nextPeriod.idlePrice.graceMinutes = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "graceMinutes"));
									}

									if(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "hourPrice") != NULL)
									{
										DEBUG_INFO("nextPeriod-idlePrice-hourPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "hourPrice")));
										ShmOCPP16DataPH->Cost.RunningCost[idx].nextPeriod.idlePrice.hourPrice = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "hourPrice"));
									}
								}
							}

							if(json_object_object_get(data, "triggerMeterValue") != NULL)
							{
								if(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atTime") != NULL)
								{
									DEBUG_INFO("triggerMeterValue-atTime: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atTime")));
									sprintf((char*)ShmOCPP16DataPH->Cost.RunningCost[idx].triggerMeterValue.atTime, "%s", json_object_get_string(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atTime")));
								}

								if(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atEnergykWh") != NULL)
								{
									DEBUG_INFO("triggerMeterValue-atEnergykWh: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atEnergykWh")));
									ShmOCPP16DataPH->Cost.RunningCost[idx].triggerMeterValue.atEnergykWh = json_object_get_double(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atEnergykWh"));
								}

								if(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atPowerkW") != NULL)
								{
									DEBUG_INFO("triggerMeterValue-atPowerkW: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atPowerkW")));
									ShmOCPP16DataPH->Cost.RunningCost[idx].triggerMeterValue.atPowerkW = json_object_get_double(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atPowerkW"));
								}

								if(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atCPStatus") != NULL)
								{
									DEBUG_INFO("triggerMeterValue-atCPStatus: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atCPStatus")));
									sprintf((char*)ShmOCPP16DataPH->Cost.RunningCost[idx].triggerMeterValue.atCPStatus, "%s", json_object_get_string(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atCPStatus")));
								}
							}
						}
					}
				}
				else
				{
					json_object_object_add(response, "status", json_object_new_string("Rejected"));
					json_object_object_add(response, "data", json_object_new_string("txId or transactionId not found."));
				}
			}
			else
			{
				json_object_object_add(response, "status", json_object_new_string("Rejected"));
				json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
			}
			json_object_put(data);

			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "FinalCost") != NULL)
		{
			json_object *data;
			data = json_tokener_parse(tempdata);
			if(!is_error(data))
			{
				json_object_object_add(response, "status", json_object_new_string("Accepted"));
				if(json_object_object_get(data, "txId") != NULL)
				{
					DEBUG_INFO("v1.0 txId: %d\n", json_object_get_int(json_object_object_get(data, "txId")));

					for(int idx = 0;idx<gunTotalNumber;idx++)
					{
						if(ShmOCPP16DataPH->StartTransaction[idx].ResponseTransactionId == json_object_get_int(json_object_object_get(data, "txId")))
						{
							memset(&ShmOCPP16DataPH->Cost.FinalCost[idx], 0x00, sizeof(struct StrcutFinalCost));

							ShmOCPP16DataPH->Cost.FinalCost[idx].txId = json_object_get_int(json_object_object_get(data, "txId"));

							if(json_object_object_get(data, "description") != NULL)
							{
								DEBUG_INFO("description: %s\n", json_object_get_string(json_object_object_get(data, "description")));
								sprintf((char*)ShmOCPP16DataPH->Cost.FinalCost[idx].description, "%s", json_object_get_string(json_object_object_get(data, "description")));
							}
							else
							{
								json_object_object_add(response, "status", json_object_new_string("Rejected"));
								json_object_object_add(response, "data", json_object_new_string("description not found."));
							}
						}
					}
				}
				else if(json_object_object_get(data, "transactionId") != NULL)
				{
					DEBUG_INFO("v2.0 transactionId: %d\n", json_object_get_int(json_object_object_get(data, "transactionId")));

					for(int idx = 0;idx<gunTotalNumber;idx++)
					{
						if(ShmOCPP16DataPH->StartTransaction[idx].ResponseTransactionId == json_object_get_int(json_object_object_get(data, "transactionId")))
						{
							memset(&ShmOCPP16DataPH->Cost.FinalCost[idx], 0x00, sizeof(struct StrcutFinalCost));

							ShmOCPP16DataPH->Cost.FinalCost[idx].txId = json_object_get_int(json_object_object_get(data, "transactionId"));

							if(json_object_object_get(data, "cost") != NULL)
							{
								DEBUG_INFO("cost: %s\n", json_object_get_string(json_object_object_get(data, "cost")));
								ShmOCPP16DataPH->Cost.FinalCost[idx].cost = json_object_get_double(json_object_object_get(data, "cost"));
							}
							else
							{
								json_object_object_add(response, "status", json_object_new_string("Rejected"));
								json_object_object_add(response, "data", json_object_new_string("cost not found."));
							}

							if(json_object_object_get(data, "priceText") != NULL)
							{
								DEBUG_INFO("priceText: %s\n", json_object_get_string(json_object_object_get(data, "priceText")));
								sprintf((char*)ShmOCPP16DataPH->Cost.FinalCost[idx].priceText, "%s", json_object_get_string(json_object_object_get(data, "priceText")));
							}
							else
							{
								json_object_object_add(response, "status", json_object_new_string("Rejected"));
								json_object_object_add(response, "data", json_object_new_string("priceText not found."));
							}

							if(json_object_object_get(data, "qrCodeText") != NULL)
							{
								DEBUG_INFO(": %s\n", json_object_get_string(json_object_object_get(data, "qrCodeText")));
								sprintf((char*)ShmOCPP16DataPH->Cost.FinalCost[idx].qrCodeText, "%s", json_object_get_string(json_object_object_get(data, "qrCodeText")));
							}
						}
					}
				}
				else
				{
					json_object_object_add(response, "status", json_object_new_string("Rejected"));
					json_object_object_add(response, "data", json_object_new_string("txId or transactionId not found."));
				}
			}
			else
			{
				json_object_object_add(response, "status", json_object_new_string("Rejected"));
				json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
			}
			json_object_put(data);

			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "ID_ConfigQR") != NULL)
		{
			json_object *data;
			data = json_tokener_parse(tempdata);
			if(!is_error(data))
			{
				json_object_object_add(response, "status", json_object_new_string("Accepted"));

				if(json_object_object_get(data, "Content_Type") != NULL)
				{
					if((0 <= json_object_get_int(json_object_object_get(data, "Content_Type"))) && (json_object_get_int(json_object_object_get(data, "Content_Type")) <= 1))
					{
						ShmSysConfigAndInfo->SysConfig.QRCodeMadeMode = json_object_get_int(json_object_object_get(data, "Content_Type"));

						if(json_object_object_get(data, "Customization_Conent") != NULL)
						{
							sprintf((char*)ShmSysConfigAndInfo->SysConfig.QRCodeContent, "%s", json_object_get_string(json_object_object_get(data, "Customization_Conent")));
						}
					}
					else
						json_object_object_add(response, "status", json_object_new_string("Rejected"));
				}

				StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig);
			}
			else
			{
				json_object_object_add(response, "status", json_object_new_string("Rejected"));
				json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
			}
			json_object_put(data);

			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "ID_LineStatusPage") != NULL)
		{
			json_object *data;
			data = json_tokener_parse(tempdata);
			if(!is_error(data))
			{
				json_object_object_add(response, "status", json_object_new_string("Accepted"));

				if(json_object_object_get(data, "ConnectorId") != NULL)
				{
                    ShmSysConfigAndInfo->SysInfo.LcdOveride.connectorId = json_object_get_int(json_object_object_get(data, "ConnectorId"));
				}

				if(json_object_object_get(data, "SerialNo") != NULL)
				{
					sprintf((char *)ShmOCPP16DataPH->TcciCustomData.SerialNo[(ShmSysConfigAndInfo->SysInfo.LcdOveride.connectorId-1)], "%s", json_object_get_string(json_object_object_get(data,"SerialNo")));
				}

				if(json_object_object_get(data, "Page_Index") != NULL)
				{
					ShmSysConfigAndInfo->SysInfo.LcdOveride.page_index = json_object_get_int(json_object_object_get(data, "Page_Index"));
				}

				if(json_object_object_get(data, "Duration") != NULL)
				{
					ShmSysConfigAndInfo->SysInfo.LcdOveride.duration = json_object_get_int(json_object_object_get(data, "Duration"));
				}

				ShmSysConfigAndInfo->SysInfo.LcdOveride.isOverideReq = 1;
			}
			else
			{
				json_object_object_add(response, "status", json_object_new_string("Rejected"));
				json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
			}
			json_object_put(data);

			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "ID_CpConfiguration") != NULL)
		{
			json_object *data;
			data = json_tokener_parse(tempdata);
			if(!is_error(data))
			{
				json_object_object_add(response, "status", json_object_new_string("Accepted"));

				if(json_object_object_get(data, "MaxChargingCurrent") != NULL)
				{
					if(json_object_get_int(json_object_object_get(data, "MaxChargingCurrent")) >= 0)
						ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent = json_object_get_int(json_object_object_get(data, "MaxChargingCurrent"));
					else
					{
						json_object_object_add(response, "status", json_object_new_string("Rejected"));
						json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
					}
				}

				if(json_object_object_get(data, "MaxChargingDuration") != NULL)
				{
					if(json_object_get_int(json_object_object_get(data, "MaxChargingDuration")) >= 0)
						ShmSysConfigAndInfo->SysConfig.MaxChargingDuration = json_object_get_int(json_object_object_get(data, "MaxChargingDuration"));
					else
					{
						json_object_object_add(response, "status", json_object_new_string("Rejected"));
						json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
					}
				}

				if(json_object_object_get(data, "MaxChargingEnergy") != NULL)
				{
					if(json_object_get_int(json_object_object_get(data, "MaxChargingEnergy")) >= 0)
						ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy = json_object_get_int(json_object_object_get(data, "MaxChargingEnergy"));
					else
					{
						json_object_object_add(response, "status", json_object_new_string("Rejected"));
						json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
					}
				}

				if(json_object_object_get(data, "MaxChargingPower") != NULL)
				{
					if(json_object_get_int(json_object_object_get(data, "MaxChargingPower")) >= 0)
						ShmSysConfigAndInfo->SysConfig.MaxChargingPower = json_object_get_int(json_object_object_get(data, "MaxChargingPower"));
					else
					{
						json_object_object_add(response, "status", json_object_new_string("Rejected"));
						json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
					}
				}

				if(json_object_object_get(data, "OfflineMaxChargeEnergy") != NULL)
				{
					if(json_object_get_int(json_object_object_get(data, "OfflineMaxChargeEnergy")) >= 0)
						ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = json_object_get_int(json_object_object_get(data, "OfflineMaxChargeEnergy"));
					else
					{
						json_object_object_add(response, "status", json_object_new_string("Rejected"));
						json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
					}
				}

				if(json_object_object_get(data, "OfflinePolicy") != NULL)
				{
					if((json_object_get_int(json_object_object_get(data, "OfflinePolicy")) == 0) ||
						(json_object_get_int(json_object_object_get(data, "OfflinePolicy")) == 2) ||
						(json_object_get_int(json_object_object_get(data, "OfflinePolicy")) == 3))
						ShmSysConfigAndInfo->SysConfig.OfflinePolicy = json_object_get_int(json_object_object_get(data, "OfflinePolicy"));
					else
					{
						json_object_object_add(response, "status", json_object_new_string("Rejected"));
						json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
					}
				}

				if(json_object_object_get(data, "isAuthentication") != NULL)
				{
					switch(json_object_get_int(json_object_object_get(data, "isAuthentication")))
					{
						case 0:
						case 1:
							ShmSysConfigAndInfo->SysConfig.AuthorisationMode = json_object_get_int(json_object_object_get(data, "isAuthentication"))^1;
							break;
						default:
							json_object_object_add(response, "status", json_object_new_string("Rejected"));
							json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
							break;
					}
				}

				if(strstr(json_object_get_string(json_object_object_get(response, "status")), "Accepted") != NULL)
					StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig);
			}
			else
			{
				json_object_object_add(response, "status", json_object_new_string("Rejected"));
				json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
			}
			json_object_put(data);

			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "ID_Station_Location") != NULL)
		{
			json_object *data;
			data = json_tokener_parse(tempdata);
			if(!is_error(data))
			{
				json_object_object_add(response, "status", json_object_new_string("Accepted"));

				if(json_object_object_get(data, "stationName") != NULL)
				{
					sprintf((char *)ShmOCPP16DataPH->TcciCustomData.ChargerInfo.station_name, "%s", json_object_get_string(json_object_object_get(data,"stationName")));
				}
				else
				{
					json_object_object_add(response, "status", json_object_new_string("Rejected"));
					json_object_object_add(response, "data", json_object_new_string("station_name data can not get."));
				}

				if(strcmp(json_object_get_string(json_object_object_get(response,"status")),"Accepted")==0)
				{
					ShmOCPP16DataPH->TcciCustomData.ChargerInfoReq = 1;
					DEBUG_INFO("<<< ID_Station_Location:{station_name:%s}\n",
							ShmOCPP16DataPH->TcciCustomData.ChargerInfo.station_name);
				}
			}
			else
			{
				json_object_object_add(response, "status", json_object_new_string("Rejected"));
				json_object_object_add(response, "data", json_object_new_string("charger_info content got something wrong."));
			}

			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else if(strstr(tempmessageId, "ID_Weather_Info") != NULL)
		{
			json_object *data;
			data = json_tokener_parse(tempdata);
			if(!is_error(data))
			{
				json_object_object_add(response, "status", json_object_new_string("Accepted"));

				if(json_object_object_get(data, "weatherId") != NULL)
				{
					ShmOCPP16DataPH->TcciCustomData.WeatherInfo.weatherId = json_object_get_int(json_object_object_get(data, "weatherId"));
				}
				else
				{
					json_object_object_add(response, "status", json_object_new_string("Rejected"));
					json_object_object_add(response, "data", json_object_new_string("weather data can not get."));
				}

				if(json_object_object_get(data, "Temperature") != NULL)
				{
					ShmOCPP16DataPH->TcciCustomData.WeatherInfo.temperature = json_object_get_double(json_object_object_get(data,"Temperature"));
				}
				else
				{
					json_object_object_add(response, "status", json_object_new_string("Rejected"));
					json_object_object_add(response, "data", json_object_new_string("temperature data can not get."));
				}

				if(strcmp(json_object_get_string(json_object_object_get(response,"status")),"Accepted")==0)
				{
					ShmOCPP16DataPH->TcciCustomData.WeatherInfoReq = 1;
					DEBUG_INFO("<<< ID_Weather_Info:{weather:%d, temperature:%.1f}\n",
								ShmOCPP16DataPH->TcciCustomData.WeatherInfo.weatherId,
								ShmOCPP16DataPH->TcciCustomData.WeatherInfo.temperature);
				}
			}
			else if(strstr(tempmessageId, "ID_TriggerCreditReader") != NULL)
			{
				json_object *data;
				data = json_tokener_parse(tempdata);
				if(!is_error(data))
				{
					json_object_object_add(response, "status", json_object_new_string("Accepted"));

					if(json_object_get_int(json_object_object_get(data, "ConnectorId")) > 0)
					{
						ShmOCPP16DataPH->TcciCustomData.TriggerReaderReq[json_object_get_int(json_object_object_get(data, "ConnectorId")) -1] = TRUE;
						DEBUG_INFO("<<< ID_TriggerCreditReader:{ConnectorId: %d}\n", json_object_get_int(json_object_object_get(data, "ConnectorId")));
					}
					else
					{
						json_object_object_add(response, "status", json_object_new_string("Rejected"));
						json_object_object_add(response, "data", json_object_new_string("ConnectorId does not valid."));
					}
				}
				else
				{
					json_object_object_add(response, "status", json_object_new_string("Rejected"));
					json_object_object_add(response, "data", json_object_new_string("charger_info content got something wrong."));
				}

				sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
				json_object_put(response);
			}
			else if(strstr(tempmessageId, "ID_GetTxUserInfo") != NULL)
			{
				json_object *data;
				data = json_tokener_parse(tempdata);
				if(!is_error(data))
				{
					if((json_object_object_get(data, "ConnectorId") != NULL) && (json_object_object_get(data, "txId") != NULL))
					{
						int gun_index = json_object_get_int(json_object_object_get(data, "ConnectorId"))-1;
						json_object_object_add(response, "status", json_object_new_string("Accepted"));
						if(gun_index < gunTotalNumber)
						{
							if(ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId == json_object_get_int(json_object_object_get(data, "txId")))
							{
								json_object *responsedata = json_object_new_object();
								json_object_object_add(responsedata, "txId", json_object_new_int(ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId));
								json_object_object_add(responsedata, "ConnectorId", json_object_new_int(gun_index+1));
								json_object_object_add(responsedata, "SerialNo", json_object_new_string((char*)ShmOCPP16DataPH->TcciCustomData.SerialNo[gun_index]));
								json_object_object_add(responsedata, "StartTime", json_object_new_string((char*)ShmOCPP16DataPH->StartTransaction[gun_index].Timestamp));
								json_object_object_add(responsedata, "VEMData", json_object_new_string((char*)ShmOCPP16DataPH->TcciCustomData.VEMData[gun_index]));
								json_object_object_add(response, "data", json_object_new_string(json_object_to_json_string_ext(responsedata, JSON_C_TO_STRING_PLAIN)));
							}
							else
							{
								json_object_object_add(response, "status", json_object_new_string("Rejected"));
								json_object_object_add(response, "data", json_object_new_string("txId doesn't match the current transactionId."));
							}
						}
						else
						{
							json_object_object_add(response, "status", json_object_new_string("Rejected"));
							json_object_object_add(response, "data", json_object_new_string("ConnectorId is invalid."));
						}
					}
					else
					{
						json_object_object_add(response, "status", json_object_new_string("Rejected"));
						json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
					}
				}
				else
				{
					json_object_object_add(response, "status", json_object_new_string("Rejected"));
					json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
				}

				sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
				json_object_put(response);
			}
			else
			{
				json_object_object_add(response, "status", json_object_new_string("Rejected"));
				json_object_object_add(response, "data", json_object_new_string("weather_info content got something wrong."));
			}

			sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
			json_object_put(response);
		}
		else
		{
			// Can not find valid message id
			sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"data\":\"vendorId-%s messageId-%s data-%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "UnknownMessageId", tempvendorId, tempmessageId, tempdata);
		}
	}
	else
	{
		// Payload is null
		sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"data\":\"{}\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "UnknownMessageId");
	}

	LWS_Send(message);
	return result;
}

int handleGetCompositeScheduleRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	int connectorIdInt, durationInt;
	char chargingRateUnitStr[4]={0};
	char comfirmstr[20];
    int confirmPeriods = 0;

	DEBUG_INFO("handleGetCompositeScheduleRequest...\n");
	json_object *GetCompositeSchedule;
	GetCompositeSchedule = json_tokener_parse(payload);
	if(!is_error(GetCompositeSchedule))
	{
		// Required data
		if(json_object_object_get(GetCompositeSchedule, "connectorId") != NULL)
			connectorIdInt = json_object_get_int(json_object_object_get(GetCompositeSchedule, "connectorId"));
		else
			connectorIdInt = -1;

		if(json_object_object_get(GetCompositeSchedule, "duration"))
			durationInt = json_object_get_int(json_object_object_get(GetCompositeSchedule, "duration"));
		else
			durationInt = 86400;

		// Optional data
		if(json_object_object_get(GetCompositeSchedule, "chargingRateUnit") != NULL)
			sprintf((char*)chargingRateUnitStr, "%s", json_object_get_string(json_object_object_get(GetCompositeSchedule, "chargingRateUnit")));
	}
	json_object_put(GetCompositeSchedule);

	memset(ShmOCPP16DataPH->GetCompositeSchedule, 0, sizeof(struct StructChargingSchedulePeriod)*gunTotalNumber);
	if((connectorIdInt == 0) ||
	   ((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber)))
  	{
		int gun_index = (connectorIdInt==0?0:connectorIdInt-1);
		struct StructChargingProfile tmpProfile[1];

		if(strstr(chargingRateUnitStr, "W") != NULL)
			checkCompositeSchedule(connectorIdInt, durationInt, &tmpProfile[0], FALSE);
		else
			checkCompositeSchedule(connectorIdInt, durationInt, &tmpProfile[0], TRUE);

  		for(int idx=0;idx<ARRAY_SIZE(ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod);idx++)
  		{
			DEBUG_INFO("Smart Period-%02d start: %d\n", idx, tmpProfile[0].ChargingSchedule.ChargingSchedulePeriod[idx].StartPeriod);
			DEBUG_INFO("Smart Period-%02d limit: %f\n", idx, tmpProfile[0].ChargingSchedule.ChargingSchedulePeriod[idx].Limit);
		}
  		ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseConnectorId = connectorIdInt;
  		memcpy(&ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseChargingSchedule, &tmpProfile[0].ChargingSchedule, sizeof(struct StructChargingSchedule));
  		memcpy(&ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseScheduleStart ,&tmpProfile[0].ChargingSchedule.StartSchedule, ARRAY_SIZE(tmpProfile[0].ChargingSchedule.StartSchedule));

  		for(int idx=0;idx<ARRAY_SIZE(ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod);idx++)
  		{
   			DEBUG_INFO("Composite Period-%02d start: %d\n", idx, ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod[idx].StartPeriod);
  			DEBUG_INFO("Composite Period-%02d limit: %f\n", idx, ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod[idx].Limit);

  			if((ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod[idx].StartPeriod==0) &&
  			   (ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod[idx].Limit==0) &&
			   (idx<(ARRAY_SIZE(ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod)-1)?(ShmOCPP16DataPH->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod[idx+1].StartPeriod==0):TRUE))
  			{
  				confirmPeriods = idx;
  				break;
  			}
  		}

  		if((confirmPeriods == 0) && (tmpProfile[0].ChargingProfileId > 0))
  		{
  			confirmPeriods += 1;
  		}

  		sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  	}
  	else
  	{
  		sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Rejected] );
  	}

	sendGetCompositeScheduleConfirmation(uuid, comfirmstr, connectorIdInt, confirmPeriods);

	return result;
}

int handleGetConfigurationRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	int MaxKeySupported = 0;
	int n_keys = 0;
	char requestKey[GetConfigurationMaxKeysNUM][50]={0};

	DEBUG_INFO("handleGetConfigurationRequest...\n");
	json_object *GetConfiguration;
	GetConfiguration = json_tokener_parse(payload);

	if(!is_error(GetConfiguration))
	{
		// Optional data
		if(json_object_object_get(GetConfiguration, "key") != NULL)
		{
			for(int idx=0;idx<json_object_array_length(json_object_object_get(GetConfiguration, "key"));idx++)
			{
				sprintf((char*)requestKey[idx], "%s", json_object_get_string(json_object_array_get_idx(json_object_object_get(GetConfiguration, "key"), idx)));
				n_keys = idx + 1;
			}
		}
	}
	json_object_put(GetConfiguration);

	UnknownKeynum = 0;
	memset( (void *)unknownkey, 0, sizeof(unknownkey));

	MaxKeySupported = GetConfigurationMaxKeysNUM;
	memset(ShmOCPP16DataPH->GetConfiguration.Key, 0 ,sizeof(struct StructConfigurationKeyItems)*MaxKeySupported);
	memset(ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey, 0, sizeof(struct StructConfigurationKey)*MaxKeySupported);

	if(n_keys != 0)
	{
		for(int i=0;i<n_keys;i++)
		{
			getKeyValue(requestKey[i]);
		}
	}
	else
	{
		DEBUG_INFO("There is no key in Message, get all configuration\n");
		getKeyValue("");
	}

	processUnkownKey();
	sendGetConfigurationConfirmation(uuid);

	return result;
}

static char fnamePlusPath[100]={0};
static char fnamePWithNoPath[60]={0};
void checkUploadLog(void)
{
	FILE *fp;
	/* Open the command for reading. */
	fp = popen("find /mnt/ -type f -name \"*.zip\" |xargs ls -t", "r");
	if (fp == NULL) {
	   DEBUG_WARN("Failed to run command\n" );
	   exit(1);
	}

	int ftppathlen = 0;
	memset(fnamePlusPath, 0, ARRAY_SIZE(fnamePlusPath));
	int i = 0;
	/* Read the output a line at a time - output it. */
	while (fgets(fnamePlusPath, sizeof(fnamePlusPath), fp) != NULL) {
		if(i==0)
		{
			ftppathlen = strlen(fnamePlusPath);
			DEBUG_INFO("%s\n", fnamePlusPath);
			fnamePlusPath[ftppathlen]='\0';
			break;
		}
		i= i+1;
	}

	/* close */
	pclose(fp);

	for(int k=0; k< ARRAY_SIZE(fnamePlusPath); k++)
	{
		if((fnamePlusPath[k]=='\n') || (fnamePlusPath[k]=='\r'))
		{
			fnamePlusPath[k]='\0';
		}
	}


	i=1;
	//char fname[60]={0};
	while(i < ftppathlen)
	{
		int len=ftppathlen-i;
		if(fnamePlusPath[len]== 47) // '/' ascll code: 47
		{
			DEBUG_INFO("compare '/' all right\n");
			break;
		}
		i=i+1;
	}

	memset(fnamePWithNoPath, 0, ARRAY_SIZE(fnamePWithNoPath));
	strncpy(fnamePWithNoPath, fnamePlusPath+(ftppathlen-i+1), i+1);
	fnamePWithNoPath[i+1] = '\0';

	for(int j=0; j< ARRAY_SIZE(fnamePWithNoPath); j++)
	{
		if((fnamePWithNoPath[j]=='\n') || (fnamePWithNoPath[j]=='r'))
		{
			fnamePWithNoPath[j]='\0';
		}
	}

	FILE* fp1 = fopen(fnamePlusPath, "r");
	if (fp1)
	{
		DEBUG_INFO("testfuc : fnamePlusPath=%s exist.\n", fnamePlusPath);
		// file exists
		fclose(fp1);
	}
	else
	{
		// file doesn't exist
		DEBUG_WARN("testfuc : fnamePlusPath=%s not exist!\n", fnamePlusPath);
	}
}

int handleGetDiagnosticsRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	time_t CurrentTime;
	struct tm *tm;

	pthread_t th_Status;
	CurrentTime = time(NULL);
	tm = localtime(&CurrentTime);
	memset(ShmOCPP16DataPH->GetDiagnostics.ResponseFileName, 0x00, ARRAY_SIZE(ShmOCPP16DataPH->GetDiagnostics.ResponseFileName));
	sprintf((char*)ShmOCPP16DataPH->GetDiagnostics.ResponseFileName, "%s-%s-%04d%02d%02d%02d%02d%02d.zip", ShmSysConfigAndInfo->SysConfig.ModelName, ShmSysConfigAndInfo->SysConfig.SerialNumber, (tm->tm_year+1900), (tm->tm_mon+1),tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec);
	sendGetDiagnosticsConfirmation(uuid, (char*)ShmOCPP16DataPH->GetDiagnostics.ResponseFileName);

	if(!interLock.isGetDiagnosticGoing)
	{
		interLock.isGetDiagnosticGoing = 1;
		pthread_create(&th_Status, NULL, GetDiagnosticsProcess, stringtrimspace(payload));
		sleep(1);
	}
	else
		DEBUG_WARN("Other GetDiagnostic request on going.\n");

	return result;
}

void* GetDiagnosticsProcess(void* data)
{
	pthread_detach(pthread_self());
	mtrace();
	int retriesInt=0, retryIntervalInt=0;
	char locationstr[1024]={0}, startTimestr[30]={0}, stopTimestr[30]={0} ;
	char protocol[10]={0}, user[64]={0},password[128]={0},host[128]={0}, path[512]={0}, ftppath[512]={0},host1[128]={0},path1[512]={0};
	int port=0;
	int isSuccess = FALSE;
	char ftpbuf[200]={0};
	char cmdBuf[2048];
	struct tm *tmNow;
	time_t CurrentTime;
	struct tm tmStart;
	struct tm tmStop;
	CurrentTime = time(NULL);
	tmNow=localtime(&CurrentTime);
	uint16_t targetYear, targetMonth;

	json_object *GetDiagnostics;

	DEBUG_INFO("GetDiagnosticsProcess...\n");

	GetDiagnostics = json_tokener_parse(data);
	if(!is_error(GetDiagnostics))
	{
		// Required data
		if(json_object_object_get(GetDiagnostics, "location") != NULL)
			sprintf(locationstr, "%s", json_object_get_string(json_object_object_get(GetDiagnostics, "location")));

		// Optional data
		if(json_object_object_get(GetDiagnostics, "retries") != NULL)
			retriesInt = json_object_get_int(json_object_object_get(GetDiagnostics, "retries"));
		else
			retriesInt = 3; // If this field is not present, it is left to Charge Point to decide how many times it wants to retry.

		if(json_object_object_get(GetDiagnostics, "retryInterval") != NULL)
			retryIntervalInt = json_object_get_int(json_object_object_get(GetDiagnostics, "retryInterval"));
		else
			retryIntervalInt = 30;

		if(json_object_object_get(GetDiagnostics, "startTime") != NULL)
			sprintf(startTimestr, "%s", json_object_get_string(json_object_object_get(GetDiagnostics, "startTime")));

		if(json_object_object_get(GetDiagnostics, "stopTime") != NULL)
			sprintf(stopTimestr, "%s", json_object_get_string(json_object_object_get(GetDiagnostics, "stopTime")));
	}
	json_object_put(GetDiagnostics);

	// Notify CSU to get log of dispensers.
	if((ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') &&
	   ((ShmSysConfigAndInfo->SysConfig.ModelName[1]=='B') ||
		(ShmSysConfigAndInfo->SysConfig.ModelName[1]=='K') ||
		(ShmSysConfigAndInfo->SysConfig.ModelName[1]=='O') ||
		(ShmSysConfigAndInfo->SysConfig.ModelName[1]=='L'))
	   )
	{
		sprintf((char *)ShmOCPP16DataPH->GetDiagnostics.StartTime,"%s",startTimestr);
		sprintf((char *)ShmOCPP16DataPH->GetDiagnostics.StopTime,"%s",stopTimestr);

		ShmOCPP16DataPH->MsMsg.bits.GetDiagnosticsReq = TRUE;

		struct timespec timerGetDiagnostics;
		refreshStartTimer(&timerGetDiagnostics);
		while(ShmOCPP16DataPH->MsMsg.bits.GetDiagnosticsReq != FALSE)
		{
			if(getDiffSecNow(timerGetDiagnostics)>=180)
			{
				ShmOCPP16DataPH->MsMsg.bits.GetDiagnosticsReq = FALSE;
				DEBUG_INFO("Waiting log of dispenser timeout.");
			}
		}
	}

	// Pack log to compress file
	if((sscanf((char*)startTimestr, "%4d-%2d-%2dT%2d:%2d:%2d", &tmStart.tm_year, &tmStart.tm_mon, &tmStart.tm_mday, &tmStart.tm_hour, &tmStart.tm_min, &tmStart.tm_sec) == 6) &&
	   (sscanf((char*)stopTimestr, "%4d-%2d-%2dT%2d:%2d:%2d", &tmStop.tm_year, &tmStop.tm_mon, &tmStop.tm_mday, &tmStop.tm_hour, &tmStop.tm_min, &tmStop.tm_sec) == 6))
	{
		// Pack system log
		memset(cmdBuf, 0x00, ARRAY_SIZE(cmdBuf));
		sprintf(cmdBuf, "exec zip -9 --password %04d%02d%s /mnt/system.zip", tmNow->tm_year+1900, tmNow->tm_mon+1, ShmSysConfigAndInfo->SysConfig.SerialNumber);
		targetYear = tmStart.tm_year;
		targetMonth = tmStart.tm_mon;

		do
		{
			sprintf(cmdBuf, "%s /Storage/SystemLog/*%04d*%02d*", cmdBuf, targetYear, targetMonth);
			sprintf(cmdBuf, "%s /Storage/OCPP/*%04d*%02d*SystemLog*", cmdBuf, targetYear, targetMonth);

			if(targetMonth+1>=13)
			{
				targetYear += 1;
				targetMonth = 1;
			}
			else
			{
				targetMonth += 1;
			}
		}while((targetYear < (tmNow->tm_year+1900)) ||
			   ((targetYear <= (tmNow->tm_year+1900)) && (targetMonth <= (tmNow->tm_mon+1))));

		sprintf(cmdBuf, "%s /Storage/CCS*.zip", cmdBuf);
		sprintf(cmdBuf, "%s /Storage/OCPP/*.db", cmdBuf);
		sprintf(cmdBuf, "%s /Storage/OCPP/TransactionRelatedQueue", cmdBuf);
		sprintf(cmdBuf, "%s /Storage/OCPP/QueueTransactionId", cmdBuf);
		sprintf(cmdBuf, "%s /Storage/OCPP/OCPPConfiguration", cmdBuf);
		sprintf(cmdBuf, "%s /Storage/SystemLog/*Dispenser*Log.zip", cmdBuf);
		system(cmdBuf);

		// Pack charging & event log
		memset(cmdBuf, 0x00, ARRAY_SIZE(cmdBuf));
		sprintf(cmdBuf, "exec zip -9 /mnt/charging_event.zip");
		targetYear = tmStart.tm_year;
		targetMonth = tmStart.tm_mon;

		do
		{
			sprintf(cmdBuf, "%s /Storage/EventLog/*%04d*%02d*", cmdBuf, targetYear, targetMonth);
			sprintf(cmdBuf, "%s /Storage/OCPP/*%04d*%02d*Ocpp*MessageLog*", cmdBuf, targetYear, targetMonth);
			if(targetMonth+1>=13)
			{
				targetYear += 1;
				targetMonth = 1;
			}
			else
			{
				targetMonth += 1;
			}
		}while((targetYear < (tmNow->tm_year+1900)) ||
			   ((targetYear <= (tmNow->tm_year+1900)) && (targetMonth <= (tmNow->tm_mon+1))));

		sprintf(cmdBuf, "%s /Storage/ChargeLog/*.db", cmdBuf);
		sprintf(cmdBuf, "%s /Storage/EventLog/*.db", cmdBuf);
		system(cmdBuf);

		// Combine log file
		system("exec zip -9 /mnt/log.zip /mnt/system.zip /mnt/charging_event.zip");
		system("exec rm -f /mnt/system.zip /mnt/charging_event.zip");
	}
	else
	{
		system("exec /root/logPackTools 'log' 6");
	}

	sprintf(cmdBuf, "mv /mnt/log.zip /mnt/%s", ShmOCPP16DataPH->GetDiagnostics.ResponseFileName);
	system(cmdBuf);
	checkUploadLog();

	//****************location*******************/
	if(strcmp(locationstr,"")==0)
	{
		DEBUG_INFO("location is <Empty>!\n");
		sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
		ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
		goto end;
	}

	memset(protocol, 0, ARRAY_SIZE(protocol));
	memset(user, 0, ARRAY_SIZE(user) );
	memset(password, 0, ARRAY_SIZE(password));
	memset(host, 0, ARRAY_SIZE(host));

	memset(path, 0, ARRAY_SIZE(path));
	memset(ftppath, 0, ARRAY_SIZE(ftppath));
	memset(host1, 0, ARRAY_SIZE(host1));
	memset(path1, 0, ARRAY_SIZE(path1));
	/*location: ftp://user:password@host:port/path*/

	//DEBUG_INFO("fnamePlusPath =%s\n",fnamePlusPath);
	if((access(fnamePlusPath,F_OK))!=-1)
	{
		DEBUG_INFO("fnamePlusPath exist.\n");
	}
	else
	{
		DEBUG_INFO("fnamePlusPath not exist!\n");
		sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
		ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
		goto end;
	}

	if(strchr(locationstr,'@')==NULL)
	{
		sscanf(locationstr,
			         "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
			         protocol, host, &port, path);
		strcpy(user,"anonymous");
		strcpy(password,"");
	}
	else
	{
		//DEBUG_INFO("pch=%s\n", pch);
		sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]",
				   protocol, user, password, host, &port, path);
	}

	if((strcmp(protocol,"ftp")!=0)&&(strcmp(protocol,"sftp")!=0)&&(strcmp(protocol,"http")!=0)&&(strcmp(protocol,"https")!=0))
	{
		DEBUG_INFO("protocol is not ftp/http ! \n");
		sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
		ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
		goto end;
	}

	if(strncmp(locationstr,"http", 4) == 0)
	{
		sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]", protocol, host, path);
		sprintf(ftppath,"/%s", path);

		do
		{
			sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Uploading]);
			ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
			sleep(3);

			isSuccess = httpUploadFile(host, ftppath, fnamePlusPath, locationstr);
			if(!isSuccess)
			{
				DEBUG_INFO("Diagnostics fail.\n");
				sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
				ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
				sleep(retryIntervalInt);

			}
			else
			{
				DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n");
				sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]);
				ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
			}
			retriesInt--;
		}while((isSuccess == 0)&&(retriesInt >= 0));
	}
	else
	{
		sscanf(host,"%[^/]%s",host1, path1);
		if(strlen(path) > 0)
			sprintf(ftppath,"/%s", path);
		else
			sprintf(ftppath,"/%s", path1);

		int ftppathlen=strlen(ftppath);
		int i=1;
		char filenametemp[50];
		while(i < ftppathlen)
		{
			int len=ftppathlen-i;
			if(ftppath[len]== 47) // '/' ascll code: 47
			{
				 DEBUG_INFO("find '/' all right\n");
			     break;
			}
			i=i+1;
		}

		memset(filenametemp, 0, ARRAY_SIZE(filenametemp));
		strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1);
		filenametemp[i+1] = 0;
		memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));

		if(port == 0)
		   port = 21;

		do
		{
			sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Uploading]);
			ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
			sleep(3);

			if(strncmp(locationstr,"sftp", 4) == 0)
				isSuccess = sftpUploadFile(host1, user, password, port, ftppath, fnamePlusPath, fnamePWithNoPath);
			else
				isSuccess = ftpUploadFile(host1, user, password, port, ftppath, fnamePlusPath, fnamePWithNoPath);

		    if(!isSuccess)
			{
				DEBUG_INFO("Diagnostics fail.\n");
				sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
				ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
				sleep(retryIntervalInt);
			}
			else
			{
				DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n");
				sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]);
				ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
			}
		    retriesInt--;
		}while((!isSuccess)&&(retriesInt >= 0));
	}

end:
	system("rm -f /mnt/*");
	system("rm -f /Storage/SystemLog/*Dispenser*Log.zip");
	sleep(5);
	sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Idle]);
	ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
	interLock.isGetDiagnosticGoing = 0;
	pthread_exit(NULL);
}

int handleGetLocalListVersionRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	DEBUG_INFO("handle GetLocalListVersionRequest\n");

	if(strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0)
	{
		DEBUG_INFO("LocalAuthListEnabled is FALSE \n");
		locallistVersion = -1;
	}
	else
	{
		DEBUG_INFO("handle GetLocalListVersionRequest OCPP_getListVerion \n");
		locallistVersion = 0;
		OCPP_getListVerion();
	}

	//from db.OCPP_getListVerion
	ShmOCPP16DataPH->GetLocalListVersion.ResponseListVersion = locallistVersion;
	//ShmOCPP16DataPH->MsMsg.bits.GetLocalListVersionReq = 1;
	sendGetLocalListVersionConfirmation(uuid,"");
	//ShmOCPP16DataPH->MsMsg.bits.GetLocalListVersionConf = 1;

	return result;
}

int handleRemoteStartRequest(char *uuid, char *payload)
{
	mtrace();
	int result = PASS;
	int connectorIdInt=-1;
	int tempIndex = 0;
	char comfirmstr[20]={0};
	char cmdBuf[512];
	json_object *RemoteStartTransaction;
	FILE *fp;

	DEBUG_INFO("handleRemoteStartRequest ...\n");
	if(server_pending == TRUE)
	{
		result = FAIL;
	}

	RemoteStartTransaction = json_tokener_parse(payload);
	if(!is_error(RemoteStartTransaction))
	{
		if(json_object_object_get(RemoteStartTransaction, "connectorId") != NULL)
		{
			connectorIdInt = json_object_get_int(json_object_object_get(RemoteStartTransaction, "connectorId"));
		}
		else
		{
			for(uint8_t gun_index=0;gun_index<gunTotalNumber;gun_index++)
			{
				if(!cpinitateMsg.bits[gun_index].isOnCharging && (strstr((char*)ShmOCPP16DataPH->StatusNotification[gun_index].Status, "Preparing") != NULL))
				{
					connectorIdInt = (gun_index+1);

					DEBUG_INFO("Remote start without connectorId but detect connector-%02d connected ready to start.\n", connectorIdInt);
					break;
				}
			}
		}

		if(connectorIdInt == 0)
		{
			DEBUG_WARN("Connector id shall not equal 0.\n");
			result = FAIL;
		}
		else if(connectorIdInt == -1)
		{
			DEBUG_INFO("Connector id does not specific.\n");
			for(uint8_t gun_index=0;gun_index<gunTotalNumber;gun_index++)
			{
				memset(&ShmOCPP16DataPH->RemoteStartTransaction[gun_index], 0x00, sizeof(struct StructRemoteStartTransaction));
				// Required data
				sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[gun_index].IdTag, "%s", json_object_get_string(json_object_object_get(RemoteStartTransaction, "idTag")));

				// Optional data
				if(json_object_object_get(RemoteStartTransaction, "chargingProfile") != NULL)
				{
					ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfileId"));
					ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "stackLevel"));
					sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingProfilePurpose, "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfilePurpose")));
					sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfileKind")));

					if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "transactionId") != NULL)
						ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "transactionId"));

					if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "recurrencyKind") != NULL)
						sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.RecurrencyKind , "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "recurrencyKind")));

					if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validFrom") != NULL)
						sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ValidFrom , "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validFrom")));

					if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validTo") != NULL)
						sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ValidTo , "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validTo")));

					if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule") != NULL)
					{
						sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingSchedule.ChargingRateUnit , "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingRateUnit")));

						if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "duration") != NULL)
							ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "duration"));

						if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "minChargingRate") != NULL)
							ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "minChargingRate"));

						if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "startSchedule") != NULL)
							sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "startSchedule")));

						if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod") != NULL)
						{
							for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
							{
								ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
								ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"));

								if(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases") != NULL)
									ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases"));
							}
						}
					}
				}
				else
				{
					ShmOCPP16DataPH->RemoteStartTransaction[gun_index].ChargingProfile.ChargingProfileId = -1;
				}
			}
		}
		else if(((0 < connectorIdInt) && (connectorIdInt <= gunTotalNumber)))
		{
			DEBUG_INFO("Connector id: %d\n", connectorIdInt);
			memset(&ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1], 0x00, sizeof(struct StructRemoteStartTransaction));
			// Required data
			sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag, "%s", json_object_get_string(json_object_object_get(RemoteStartTransaction, "idTag")));

			// Optional data
			if(json_object_object_get(RemoteStartTransaction, "chargingProfile") != NULL)
			{
				ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfileId"));
				ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "stackLevel"));
				sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfilePurpose")));
				sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfileKind")));

				if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "transactionId") != NULL)
					ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "transactionId"));

				if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "recurrencyKind") != NULL)
					sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.RecurrencyKind , "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "recurrencyKind")));

				if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validFrom") != NULL)
					sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidFrom , "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validFrom")));

				if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validTo") != NULL)
					sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidTo , "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validTo")));

				if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule") != NULL)
				{
					sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingRateUnit , "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingRateUnit")));

					if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "duration") != NULL)
						ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "duration"));

					if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "minChargingRate") != NULL)
						ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "minChargingRate"));

					if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "startSchedule") != NULL)
						sprintf((char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "startSchedule")));

					if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod") != NULL)
					{
						for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
						{
							ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
							ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"));

							if(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases") != NULL)
								ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases"));
						}
					}
				}
			}
			else
			{
				ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId = -1;
			}
		}
		else
		{
			DEBUG_WARN("Connector id is over maximun value.\n");
			result = FAIL;
		}
	}

	if(result == PASS)
	{
		if(connectorIdInt > 0)
		{
			//check Transaction active
			if(gunType[connectorIdInt -1] == GUN_TYPE_CHAdeMO)
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex =  ((connectorIdInt -1) == 2) ? 1: 0;
				}
				else
				{
					tempIndex = connectorIdInt -1;
				}

				for (int index = 0; index < CHAdeMO_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
					{

						if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != -1) &&
						   (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId >= 0) &&
						   (strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0))
						{
							//Reserved
							DEBUG_INFO("CHAdeMO connector already reserved and idTag match.\n");
						}
						else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != -1) &&
							    (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId >= 0) &&
								(strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0))
						{
							//Reserved
							DEBUG_INFO("CHAdeMO connector already reserved and idTag does not match.\n");
							strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
							goto end;
						}
						else
						{
							if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_IDLE) || ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq)
							{
								DEBUG_WARN("CHAdeMO connector not allow start cause busy.\n");
								strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
								goto end;
							}
						}//END FOR ELSE
					}
				}// END FOR CHAdeMO_QUANTITY
			}
			else if(gunType[connectorIdInt -1] == GUN_TYPE_CCS)
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex =  ((connectorIdInt -1) == 2) ? 1: 0;
				}
				else
				{
					tempIndex = connectorIdInt -1;
				}

				for (int index = 0; index < CCS_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
					{
						if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != -1) &&
						   (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId >= 0) &&
						   (strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0))
						{
							//Reserved
							DEBUG_INFO("CCS connector already reserved and idTag match.\n");
						}
						else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != -1) &&
								(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId >= 0) &&
								(strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0))
						{
							//Reserved
							DEBUG_INFO("CCS connector already reserved and idTag does not match.\n");
							strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
							goto end;
						}
						else
						{
							if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_IDLE) || ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq)
							{
								DEBUG_WARN("CCS connector not allow start cause busy.\n");
								strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
								goto end;
							}

						}// END FOR ELSE
					}
				}// END FOR CCS_QUANTITY
			}
			else if(gunType[connectorIdInt -1] == GUN_TYPE_GBT)
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
				{
					tempIndex =  ((connectorIdInt -1) == 2) ? 1: 0;
				}
				else
				{
					tempIndex = connectorIdInt -1;
				}

				for (int index = 0; index < GB_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex )
					{
						if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != -1) &&
						   (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId >= 0) &&
						   (strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0))
						{
							//Reserved
							DEBUG_INFO("GBT connector already reserved and idTag match.\n");
						}
						else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != -1) &&
								(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId >= 0) &&
								(strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0))
						{
							//Reserved
							DEBUG_INFO("GBT connector already reserved and idTag does not match.\n");
							strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
							goto end;
						}
						else
						{
							if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_IDLE) || ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq)
							{
								DEBUG_WARN("GBT connector not allow start cause busy.\n");
								strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
								goto end;
							}

						}// END FOR ELSE
					}
				} // END FOR GB_QUANTITY

			}
			else if(gunType[connectorIdInt -1] == GUN_TYPE_DO)
			{
				tempIndex = connectorIdInt -1;

				for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex )
					{
						if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId != -1) &&
						   (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId >= 0) &&
						   (strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0))
						{
							//Reserved
							DEBUG_INFO("Dispenser connector already reserved and idTag match.\n");
						}
						else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId != -1) &&
								(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId >= 0) &&
								(strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0))
						{
							//Reserved
							DEBUG_INFO("Dispenser connector already reserved and idTag does not match.\n");
							strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
							goto end;
						}
						else
						{
							if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_IDLE) || ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq)
							{
								DEBUG_WARN("Dispenser connector not allow start cause busy.\n");
								strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
								goto end;
							}

						}// END FOR ELSE
					}
				} // END FOR GB_QUANTITY

			}
			else
			{
				if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC
				{
					tempIndex = 2;
				}
				else
				{
					tempIndex = connectorIdInt -1;
				}

				for (int index = 0; index < AC_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex )
					{

						if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != -1) &&
						   (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId >= 0) &&
						   (strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0))
						{
							//Reserved
							DEBUG_INFO("AC connector already reserved and idTag match.\n");
						}
						else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != -1) &&
								(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId >= 0) &&
								(strcmp((const char *)ShmOCPP16DataPH->ReserveNow[index].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0))
						{
							//Reserved
							DEBUG_INFO("AC connector already reserved and idTag does not match.\n");
							strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
							goto end;
						}
						else
						{
							if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_IDLE) || ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq)
							{
								DEBUG_WARN("AC connector not allow start cause busy.\n");
								strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
								goto end;
							}

						}//END FOR ELSE
					}
				}// END FOR AC_QUANTITY
			}

			if(ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId > -1)
			{
				if(strcmp((char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
				{
					// Save profile to file
					sprintf(cmdBuf, "rm -f /Storage/OCPP_PH/TxProfile_%d.json", connectorIdInt);
					system(cmdBuf);

					sprintf(cmdBuf, "/Storage/OCPP_PH/TxProfile_%d.json", connectorIdInt);
					fp = fopen(cmdBuf, "w");
					fprintf(fp, "{\"connectorId\":%d,\"csChargingProfiles\":%s}\n", connectorIdInt, json_object_to_json_string_ext(json_object_object_get(RemoteStartTransaction, "chargingProfile"), JSON_C_TO_STRING_PLAIN));
					fclose(fp);
				}
				else
				{
					DEBUG_WARN("Profile purpose not TxProfile.\n");
					strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
					goto end;
				}
			}

			ShmOCPP16DataPH->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
			strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);

			memset((char *)ShmOCPP16DataPH->StartTransaction[connectorIdInt -1].IdTag,0, 20);
			strcpy((char *)ShmOCPP16DataPH->StartTransaction[connectorIdInt -1].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag);

			memset((char *)ShmOCPP16DataPH->StopTransaction[connectorIdInt -1].IdTag,0, 20);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[connectorIdInt -1].IdTag, (char*)ShmOCPP16DataPH->RemoteStartTransaction[connectorIdInt -1].IdTag);

		 }
		 else
		 {
			 uint8_t isHasIdleConnector = FALSE;
			 for(uint8_t gun_index=0;gun_index<gunTotalNumber;gun_index++)
			 {
				 if(!cpinitateMsg.bits[gun_index].isOnCharging)
				 {
					 isHasIdleConnector = TRUE;
					 break;
				 }
			 }

			 if((isHasIdleConnector == TRUE) && !ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq)
			 {
				 DEBUG_INFO("Start wait connector link to EV in %s seconds.\n", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData);

				 if(ShmOCPP16DataPH->RemoteStartTransaction[0].ChargingProfile.ChargingProfileId > -1)
				 {
					 if(strcmp((char*)ShmOCPP16DataPH->RemoteStartTransaction[0].ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
					 {
						 // Save profile to file
						 sprintf(cmdBuf, "rm -f /Storage/OCPP_PH/TxProfile_Tmp.json");
						 system(cmdBuf);

						 sprintf(cmdBuf, "/Storage/OCPP_PH/TxProfile_Tmp.json");
						 fp = fopen(cmdBuf, "w");
						 fprintf(fp, "{\"connectorId\":0,\"csChargingProfiles\":%s}\n", json_object_to_json_string_ext(json_object_object_get(RemoteStartTransaction, "chargingProfile"), JSON_C_TO_STRING_PLAIN));
						 fclose(fp);

						 refreshStartTimer(&clientTime.RemoteStartWait);
						 ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq = 1;
						 strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
					 }
					 else
					 {
						 DEBUG_WARN("Profile purpose not TxProfile.\n");
						 strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
					 }
				 }
				 else
				 {
					 refreshStartTimer(&clientTime.RemoteStartWait);
					 ShmOCPP16DataPH->MsMsg.bits.isRemoteStartWaitReq = 1;
					 strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
				 }
			 }
			 else
			 {
				 DEBUG_INFO("There is not any connector is idle.\n");
				 strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
			 }
		 }
	}
	else
	{
		strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
	}

end:
	json_object_put(RemoteStartTransaction);
	sendRemoteStartConfirmation(uuid, comfirmstr);

	return result;
}

int handleRemoteStopTransactionRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	int match = FALSE;
	int GunNO = 0;
	int tempIndex = 0;
	int transactionIdInt=0;
	int transactionIdIsNULL= TRUE;
	char comfirmstr[20];
	json_object *RemoteStopTransaction;

	//[2,"ff522854-0dea-436e-87ba-23a229269994","RemoteStopTransaction",{"transactionId":1373618380}]
	DEBUG_INFO("handleRemoteStopTransactionRequest...\n");

	if(server_pending == TRUE)
	{
		return 0;
	}

	RemoteStopTransaction = json_tokener_parse(payload);
	if(!is_error(RemoteStopTransaction))
	{
		if(json_object_object_get(RemoteStopTransaction, "transactionId") != NULL)
		{
			transactionIdInt = json_object_get_int(json_object_object_get(RemoteStopTransaction, "transactionId"));
			transactionIdIsNULL = FALSE;
		}
	}
	json_object_put(RemoteStopTransaction);


	if(transactionIdIsNULL == FALSE)
	{
		for(int gun_index=0;gun_index < gunTotalNumber;gun_index++)
	    {
			if(ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId == transactionIdInt)
	        {
				//check Transaction active
				if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
				{
					if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
					{
						tempIndex = ((gun_index==2) ? 1: 0);
					}
					else
					{
						tempIndex = gun_index;
					}

					for (int index = 0; index < CHAdeMO_QUANTITY; index++)
					{
						if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
						{
							if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // SYS_MODE_CHARGING, SYS_MODE_TERMINATING
							{
								match = TRUE;
								GunNO = gun_index;
							}
						}
					}// END FOR CHAdeMO_QUANTITY

				}
				else if(gunType[gun_index] == GUN_TYPE_CCS)
				{
					if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
					{
						tempIndex = ((gun_index==2) ? 1: 0);
					}
					else
					{
						tempIndex = gun_index;
					}

					for (int index = 0; index < CCS_QUANTITY; index++)
					{
						if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
						{
							if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING) ) // SYS_MODE_CHARGING, SYS_MODE_TERMINATING
							{
								match = TRUE;
								GunNO = gun_index;
							}
						}
					}// END FOR CCS_QUANTITY
				}
				else if(gunType[gun_index] == GUN_TYPE_GBT)
				{
					if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
					{
						tempIndex = ((gun_index==2) ? 1: 0);
					}
					else
					{
						tempIndex = gun_index;
					}

					for (int index = 0; index < GB_QUANTITY; index++)
					{
						if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
						{
							if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // SYS_MODE_CHARGING, SYS_MODE_TERMINATING
							{
								match = TRUE;
								GunNO = gun_index;
							}
						}
					}// END FOR GB_QUANTITY

				}
				else if(gunType[gun_index] == GUN_TYPE_DO)
				{
					tempIndex = gun_index;

					for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
					{
						if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
						{
							if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING)) // SYS_MODE_CHARGING, SYS_MODE_TERMINATING
							{
								match = TRUE;
								GunNO = gun_index;
							}
						}
					}// END FOR GB_QUANTITY

				}
				else
				{
					if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC
					{
						tempIndex = 2;
					}
					else
					{
						tempIndex = gun_index;
					}

					for (int index = 0; index < AC_QUANTITY; index++)
					{
						if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
						{
							if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // SYS_MODE_CHARGING, SYS_MODE_TERMINATING
							{
								match = TRUE;
								GunNO = gun_index;
							}
						}
					}// END FOR CHAdeMO_QUANTITY

				} // END FOR AC ELSE

	        }// CHECK IF ResponseTransactionId == transactionIdInt

	    }//END FOR

		if(	match == TRUE)
		{
			ShmOCPP16DataPH->CsMsg.bits[GunNO].RemoteStopTransactionReq = 1; // inform csu of StopTransaction
			strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
			sprintf((char *)ShmOCPP16DataPH->RemoteStopTransaction[GunNO].ResponseStatus, "%s" ,comfirmstr);
		}
		else
		{
			strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
		}
	}
	else
		strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);

	sendRemoteStopTransactionConfirmation(uuid, comfirmstr);
	return result;
}

int handleReserveNowTransactionRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	int connectorIdInt=0, reservationIdInt=0;
	int tempIndex = 0;
	char expiryDatestr[30]={0}, idTagstr[21]={0},parentIdTagstr[21]={0};
	char comfirmstr[20]={0};
	char sstr[180]={ 0 },sstrtemp[200]={ 0 };
	int c = 0;
	char *loc;
	//char *ptr;

	DEBUG_INFO("handleReserveNowTransactionRequest ...\n");

	strcpy(sstrtemp, stringtrimspace(payload));
	//***(1)connectorId ****/
	c=0;
	loc = strstr(sstrtemp, "connectorId");
	memset(sstr ,0, ARRAY_SIZE(sstr) );
	while ((loc != NULL) &&(loc[strlen("connectorId")+2+c] != ',') && (loc[strlen("connectorId")+2+c] != '}'))
	{
		sstr[c] = loc[strlen("connectorId")+2+c];
		//printf("i=%d sstr=%c\n",c, sstr[c]);
		c++;
	}
	sstr[c] = '\0';
	connectorIdInt = atoi(sstr);

	//***(2)expiryDate ****/
	loc = strstr(sstrtemp, "expiryDate");
	memset(sstr ,0, ARRAY_SIZE(sstr) );
	c = 0;
	while ((loc != NULL) &&(loc[3+strlen("expiryDate")+c] != '\"'))
	{
		sstr[c] = loc[3+strlen("expiryDate")+c];
		c++;
	}
	sstr[c] = '\0';
	strcpy(expiryDatestr, sstr);

	//***(3)idTag ****/
	loc = strstr(sstrtemp, "idTag");
	memset(sstr ,0, ARRAY_SIZE(sstr) );
	c = 0;
	while ((loc != NULL) &&(loc[3+strlen("idTag")+c] != '\"'))
	{
		sstr[c] = loc[3+strlen("idTag")+c];
		c++;
	}
	sstr[c] = '\0';
	strcpy(idTagstr, sstr);

	//***(4)parentIdTag ****/
	loc = strstr(sstrtemp, "parentIdTag");
	memset(sstr ,0, ARRAY_SIZE(sstr) );
	c = 0;

	if(loc == NULL)
	{
		strcpy(parentIdTagstr, "");
	}
	else
	{
		while ((loc != NULL) &&(loc[3+strlen("parentIdTag")+c] != '\"'))
		{
			sstr[c] = loc[3+strlen("parentIdTag")+c];
			c++;
		}
		sstr[c] = '\0';
		strcpy(parentIdTagstr, sstr);
	}

	//***(5)reservationId ****/
	c=0;
	loc = strstr(sstrtemp, "reservationId");
	memset(sstr ,0, ARRAY_SIZE(sstr) );
	while ((loc != NULL) &&((loc[strlen("reservationId")+2+c] != '}') && (loc[strlen("reservationId")+2+c] != ',')))
	{
			sstr[c] = loc[strlen("reservationId")+2+c];
			//printf("i=%d sstr=%c\n",c, sstr[c]);
			c++;
	}
	sstr[c] = '\0';
	reservationIdInt = atoi(sstr);

	strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);

	/*
	enum SYSTEM_STATUS
	{
	SYS_MODE_BOOTING		= 0,
	SYS_MODE_IDLE    	  	= 1,
	SYS_MODE_AUTHORIZING		= 2,
	SYS_MODE_MODE_REASSIGN_CHECK	= 3,
	SYS_MODE_REASSIGN		= 4,
	SYS_MODE_PREPARING		= 5,
	SYS_MODE_PREPARE_FOR_EV		= 6,
	SYS_MODE_PREPARE_FOR_EVSE	= 7,
	SYS_MODE_CHARGING		= 8,
	SYS_MODE_TERMINATING		= 9,
	SYS_MODE_COMPLETE		= 10,
	SYS_MODE_ALARM			= 11,
	SYS_MODE_FAULT			= 12,
	SYS_MODE_RESERVATION		= 13,
	SYS_MODE_BOOKING		= 14,
	SYS_MODE_MAINTAIN		= 15,
	SYS_MODE_DEBUG			= 16,
	SYS_MODE_CCS_PRECHARGE_STEP0	= 17,
	SYS_MODE_CCS_PRECHARGE_STEP1	= 18,
	SYS_MODE_UPDATE			= 19
	};
	*/
	if((connectorIdInt == 0) &&(strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE") == 0)) //For OCTT Test case
	{
		strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
		goto end;
	}

	if((connectorIdInt > 0) && ((connectorIdInt -1) <= gunTotalNumber))
	{
		//check Transaction active
		if(gunType[connectorIdInt -1] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = (((connectorIdInt -1)==2) ? 1: 0);
			}
			else
			{
				tempIndex = connectorIdInt -1;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId)
					{
						if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_FAULT)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_ALARM)) //S_FAULT
						{
							if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
							{
								if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn == 1) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].InProgress == 1))
								{
									strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
								}
								else
								{
									ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
									strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
								}
							}
							else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)||(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING  //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);

							}
							else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION) ) //S_PRECHARGE
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
							}
							else
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
							}
						}
						else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // SYS_MODE_FAULT, SYS_MODE_ALARM, SYS_MODE_TERMINATING   ---> SuspendedEV
						{
							strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
						}
					}
					else
					{
						//replace reservation
						ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
					}

				}
			} // END FOR CHAdeMO_QUANTITY

		}
		else if(gunType[connectorIdInt -1] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = (((connectorIdInt -1)==2) ? 1: 0);
			}
			else
			{
				tempIndex = connectorIdInt -1;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{

					if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId)
					{
						//SystemStatus:   0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
						if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_FAULT)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_ALARM)) //S_FAULT
						{
							if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
							{
								if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn == 1) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].InProgress == 1))
								{
									strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
								}
								else
								{
									ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
									strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
								}
							}
							else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) ||(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING  //else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9'))
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
							}
							else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) //S_PRECHARGE
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
							}
							else
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
							}
						}
						else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_ALARM) ||(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) //SYS_MODE_FAUL, SYS_MODE_TERMINATING  ---> SuspendedEV
						{
							strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
						}
					}
					else
					{
						//replace reservation
						ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
					}
				}
			} // END FOR CCS_QUANTITY

		}
		else if(gunType[connectorIdInt -1] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = (((connectorIdInt -1)==2) ? 1: 0);
			}
			else
			{
				tempIndex = connectorIdInt -1;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{

					if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId)
					{
						//SystemStatus:   0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
						if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_ALARM)) //SYS_MODE_FAULT, SYS_MODE_ALARM
						{

							if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
							{
								if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn == 1) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].InProgress == 1))
								{
									strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
								}
								else
								{
									ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
									strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
								}
							}
							else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9'))
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
							}
							else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION) ) //S_PRECHARGE
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
							}
							else
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
							}
						}
						else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_ALARM ,SYS_MODE_TERMINATING  ---> SuspendedEV
						{
							strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
						}
					}
					else
					{
						//replace reservation
						ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
					}

				}
			}// END FOR GB_QUANTITY
		}
		else if(gunType[connectorIdInt -1] == GUN_TYPE_DO)
		{
			tempIndex = connectorIdInt -1;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{

					if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId)
					{
						//SystemStatus:   0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
						if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_FAULT)&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_ALARM)) //SYS_MODE_FAULT, SYS_MODE_ALARM
						{

							if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_IDLE) //S_IDLE
							{
								if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn == 1) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.InProgress == 1))
								{
									strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
								}
								else
								{
									ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
									strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
								}
							}
							else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9'))
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
							}
							else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_RESERVATION) ) //S_PRECHARGE
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
							}
							else
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
							}
						}
						else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus ==SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus ==SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus ==SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_ALARM ,SYS_MODE_TERMINATING  ---> SuspendedEV
						{
							strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
						}
					}
					else
					{
						//replace reservation
						ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
					}

				}
			}// END FOR GB_QUANTITY
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = (connectorIdInt -1);
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{

					if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId)
					{

						if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_ALARM)) //SYS_MODE_FAULT, SYS_MODE_ALARM
						{
							if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
							{
								if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_B) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_C) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_D))
								{
									strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
								}
								else
								{
									ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
									strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
								}
							}
							else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING  //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);

							}
							else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION) ) //S_PRECHARGE
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
							}
							else
							{
								strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
							}
						}
						else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_ALARM, SYS_MODE_TERMINATING ---> SuspendedEV
						{
							strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
						}
					}
					else
					{
						//replace reservation
						ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
					}
				}
			} // END FOR AC_QUANTITY
		}

		sprintf((char *)ShmOCPP16DataPH->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr);
	}
	else if(connectorIdInt == 0)
	{
		//check Transaction active
		for (int index = 0; index < CHAdeMO_QUANTITY; index++)
		{
			if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId)
			{
				if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING  //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
				{
					strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
					 goto end;
				}
				else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
				{
					strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
					goto end;
				}
				else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_TERMINATING ---> SuspendedEV
				{
					strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
					goto end;
				}
				else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
				{
					strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
					goto end;
				}
			}

		  }// END FOR CHAdeMO_QUANTITY

		  for (int index = 0; index < CCS_QUANTITY; index++)
		  {
			  if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId)
			  {
				  if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)||(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING  //else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9'))
				  {
					  strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
					  goto end;
				  }
				  else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) //SYS_MODE_PREPARING
				  {
					  strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
					  goto end;
				  }
				  else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_TERMINATING ---> SuspendedEV
				  {
					  strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
					  goto end;
				  }
				  else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
				  {
					  strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
					  goto end;
				  }
			   }
			} // END FOR CCS_QUANTITY

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId)
				{
					if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9'))
					{
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
						goto end;
					}
					else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
					{
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
						goto end;
					}
					else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_TERMINATING) ) //SYS_MODE_FAULT, SYS_MODE_TERMINATING ---> SuspendedEV
					{
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
						goto end;
					}
					else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
					{
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
						goto end;
					}
				}

			} // END FOR GB_QUANTITY

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId)
				{
					if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING  //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
					{
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
						goto end;
					}
					else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
					{
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
						goto end;
					}
					else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_TERMINATING ---> SuspendedEV
					{
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
						goto end;
					}
					if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
					{
						if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_B) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_C) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_D))
						{
							strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
							goto end;
						}
					}
					else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
					{
						strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
						goto end;
					}
				}

			}// END FOR AC_QUANTITY

	  //The connectorId is 0
	  ShmOCPP16DataPH->CsMsg.bits[0].ReserveNowReq = 1;
	  strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
	  sprintf((char *)ShmOCPP16DataPH->ReserveNow[0].ResponseStatus, "%s" ,comfirmstr);
	  ShmOCPP16DataPH->ReserveNow[0].ConnectorId = connectorIdInt;
	  sprintf((char *)ShmOCPP16DataPH->ReserveNow[0].ExpiryDate, "%s" , expiryDatestr);
	  sprintf((char *)ShmOCPP16DataPH->ReserveNow[0].IdTag, "%s" , idTagstr);
	  sprintf((char *)ShmOCPP16DataPH->ReserveNow[0].ParentIdTag, "%s" , parentIdTagstr);
	  ShmOCPP16DataPH->ReserveNow[0].ReservationId = reservationIdInt;
	  strcpy((char *)ShmOCPP16DataPH->ReserveNow[0].guid, uuid);

	  result = TRUE;
	  return result;

	}
	else
	{
		strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
		sprintf((char *)ShmOCPP16DataPH->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr);
	}

	if(strcmp(comfirmstr,"Accepted") == 0)
	{
		ShmOCPP16DataPH->ReserveNow[connectorIdInt-1].ConnectorId = connectorIdInt;
		sprintf((char *)ShmOCPP16DataPH->ReserveNow[connectorIdInt-1].ExpiryDate, "%s" , expiryDatestr);
		sprintf((char *)ShmOCPP16DataPH->ReserveNow[connectorIdInt-1].IdTag, "%s" , idTagstr);
		sprintf((char *)ShmOCPP16DataPH->ReserveNow[connectorIdInt-1].ParentIdTag, "%s" , parentIdTagstr);
		ShmOCPP16DataPH->ReserveNow[connectorIdInt-1].ReservationId = reservationIdInt;
	    strcpy((char *)ShmOCPP16DataPH->ReserveNow[connectorIdInt-1].guid, uuid);

	    result = TRUE;
	    return result;

	}

end:
	sendReserveNowTransactionConfirmation(uuid,comfirmstr);
	//ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].ReserveNowConf = 1;

	return result;
}

int handleResetRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;

	char sstr[10]={0},sstrtemp[30]={ 0 };
	char typestr[10]={0};
	char comfirmstr[20]={0};
	int c = 0;
	char *loc;

	DEBUG_INFO("handleResetRequest...\n");

	strcpy(sstrtemp, stringtrimspace(payload));
	loc = strstr(sstrtemp, "type");
	memset(sstr ,0, ARRAY_SIZE(sstr) );
	c = 0;
	while (loc[3+strlen("type")+c] != '\"')
	{
		sstr[c] = loc[3+strlen("type")+c];
		c++;
	}
	sstr[c] = '\0';
	strcpy(typestr,sstr);

	sprintf((char *)ShmOCPP16Data->Reset.Type, "%s" ,typestr);
	if((strcmp(typestr, ResetTypeStr[Hard])==0) || (strcmp(typestr, ResetTypeStr[Soft])==0))
	{
		ShmOCPP16Data->MsMsg.bits.ResetReq = 1;
	    strcpy((char *)ShmOCPP16DataPH->Reset.guid, uuid);
	    strcpy(comfirmstr, ResetStatusStr[ResetStatus_Accepted]);
	    sprintf((char *)ShmOCPP16DataPH->Reset.ResponseStatus, "%s" ,comfirmstr);
	}
	else
	{
		strcpy(comfirmstr, ResetStatusStr[ResetStatus_Rejected]);
		sprintf((char *)ShmOCPP16DataPH->Reset.ResponseStatus, "%s" ,comfirmstr);
		result = PASS;
	}

	sendResetConfirmation(uuid, comfirmstr);
	return result;
}

int handleSendLocalListRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	char comfirmstr[20];
	int checkState_Faulted = FALSE;

	json_object *SendLocalList;

	DEBUG_INFO("handleSendLocalListRequest...\n");

	if(strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0) //For OCTT Test case
	{
		strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]);
		goto end;
	}

	//check Charge Point state
	for (int index = 0; index < CHAdeMO_QUANTITY; index++)
	{
		if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT   ---> Faulted
		{
			checkState_Faulted = TRUE; //OCPP Status: Faulted
		}
	}

	for (int index = 0; index < CCS_QUANTITY; index++)
	{
		if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT   ---> Faulted
		{
			checkState_Faulted = TRUE; //OCPP Status
		}
	}

	for (int index = 0; index < GB_QUANTITY; index++)
	{
		if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT   ---> Faulted
		{
			checkState_Faulted = TRUE; //OCPP Status: Faulted
		}
	}

	//check Charge Point state
	for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
	{
		if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_FAULT) //S_FAULT   ---> Faulted
		{
			checkState_Faulted = TRUE; //OCPP Status: Faulted
		}
	}

	//check Charge Point state
	for (int index = 0; index < AC_QUANTITY; index++)
	{
		if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT   ---> Faulted
		{
			checkState_Faulted = TRUE; //OCPP Status: Faulted
		}
	}

	if(checkState_Faulted == TRUE)
	{
		strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Failed]);
		goto end;
	}

	// Parsing payload
	SendLocalList = json_tokener_parse(payload);
	if(!is_error(SendLocalList))
	{
		// Required data
		ShmOCPP16DataPH->SendLocalList.ListVersion = json_object_get_int(json_object_object_get(SendLocalList, "listVersion"));
		sprintf((char*)ShmOCPP16DataPH->SendLocalList.UpdateType, "%s", json_object_get_string(json_object_object_get(SendLocalList, "updateType")));

		// Optional data
		if(json_object_object_get(SendLocalList, "localAuthorizationList") != NULL)
		{
			//Check UpdateType
			if(strcmp((char*)ShmOCPP16DataPH->SendLocalList.UpdateType, UpdateTypeStr[Full]) == 0)
			{
				//Local list full update
				DEBUG_INFO("Local list full update.\n");
				locallistVersion = 0;
				OCPP_getListVerion();

				/*if(ShmOCPP16DataPH->SendLocalList.ListVersion < locallistVersion)
				{
					strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Failed]);
					goto end;
				}*/

				OCPP_cleanLocalList();
			}
			else if(strcmp((char*)ShmOCPP16DataPH->SendLocalList.UpdateType, UpdateTypeStr[Differential]) == 0)
			{
				//Local list different update
				DEBUG_INFO("Local list different update.\n");
				locallistVersion = 0;
				OCPP_getListVerion();

				if(ShmOCPP16DataPH->SendLocalList.ListVersion < locallistVersion)
				{
					strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_VersionMismatch]);
					goto end;
				}
			}
			else
			{
				strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]);
				goto end;
			}

			if(json_object_array_length(json_object_object_get(SendLocalList, "localAuthorizationList")) > atoi((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData))
			{
				DEBUG_WARN("Local list length is over SendLocalListMaxLength.\n");
				strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Failed]);
				goto end;
			}

			memset(ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList, 0 , sizeof(struct StructLocalAuthorizationList)*1);
			for(int idx=0;idx<json_object_array_length(json_object_object_get(SendLocalList, "localAuthorizationList"));idx++)
			{
				sprintf((char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTag, "%s", json_object_get_string(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTag")));

				if(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo") != NULL)
				{
					sprintf((char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.Status, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo"), "status")));

					if(json_object_object_get(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo"), "expiryDate") != NULL)
						sprintf((char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ExpiryDate, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo"), "expiryDate")));

					if(json_object_object_get(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo"), "parentIdTag") != NULL)
						sprintf((char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ParentIdTag, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo"), "parentIdTag")));
				}

				// Add to db
				if(strcmp((char*)ShmOCPP16DataPH->SendLocalList.UpdateType, UpdateTypeStr[Full]) == 0)
				{
					//Local list full update
					DEBUG_INFO("Local list full update item: %d, listVer: %d, %s, %s, %s, %s.\n",
																				   idx,
																				   ShmOCPP16DataPH->SendLocalList.ListVersion,
																				   ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTag,
																				   ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ParentIdTag,
																				   ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ExpiryDate,
																				   ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.Status);
					// update list
					OCPP_addLocalList(ShmOCPP16DataPH->SendLocalList.ListVersion,
									  (char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTag,
									  (char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ParentIdTag,
									  (char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ExpiryDate,
									  (char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.Status);
				}
				else if(strcmp((char*)ShmOCPP16DataPH->SendLocalList.UpdateType, UpdateTypeStr[Differential]) == 0)
				{
					DEBUG_INFO("Local list diff update item: %d,listVer:  %d, %s, %s, %s, %s.\n",
																					idx,
																				   ShmOCPP16DataPH->SendLocalList.ListVersion,
																				   ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTag,
																				   ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ParentIdTag,
																				   ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ExpiryDate,
																				   ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.Status);
					OCPP_addLocalList(ShmOCPP16DataPH->SendLocalList.ListVersion,
									  (char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTag,
									  (char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ParentIdTag,
									  (char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ExpiryDate,
									  (char*)ShmOCPP16DataPH->SendLocalList.LocalAuthorizationList[0].IdTagInfo.Status);
				}
			}
		}
		else
		{
			//Check UpdateType
			if(strcmp((char*)ShmOCPP16DataPH->SendLocalList.UpdateType, UpdateTypeStr[Full]) == 0)
			{
				//Local list full update
				DEBUG_INFO("If no (empty) localAuthorizationList is given and the updateType is Full, all identifications are removed from the list. \n");
				OCPP_cleanLocalList();
				strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);
				goto end;
			}

			if(strcmp((char*)ShmOCPP16DataPH->SendLocalList.UpdateType, UpdateTypeStr[Differential]) == 0)
			{
				 //Local list different update
				DEBUG_INFO("Requesting a Differential update without (empty) localAuthorizationList will have no effect on the list\n");
				strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);
				goto end;

			}
		}

		result = PASS;
	}
	strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);

end:
	json_object_put(SendLocalList);
	sendSendLocalListConfirmation(uuid, comfirmstr);

	return result;
}

int handleSetChargingProfileRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	struct StructSetChargingProfile SetProfileReq = {0};
	int tempchargingProfileIdInt;
	int tempstackLevelInt;
	int chargingSchedulePeriodCount = 0;
	char comfirmstr[20]={0};
	char tempfile[] = "/Storage/OCPP_PH/SetChargingProfiletemp.json";
	char rmFileCmd[128]={0};

	int profileQuantity = 0;
	int replaceableProfileCnt = 0;
	json_object *SetChargingProfile;

	DEBUG_INFO("handleSetChargingProfileRequest\n");

	SetChargingProfile = json_tokener_parse(payload);
	if(!is_error(SetChargingProfile))
	{
		if(json_object_object_get(SetChargingProfile, "connectorId") != NULL)
		{
			SetProfileReq.ConnectorId = json_object_get_int(json_object_object_get(SetChargingProfile, "connectorId"));
		}

		if(json_object_object_get(SetChargingProfile, "csChargingProfiles") != NULL)
		{
			if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileId") != NULL)
			{
				SetProfileReq.ChargingProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileId"));
			}
			else
			{
				sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
				DEBUG_WARN("Cannot find chargingProfileId field.");
				goto end;
			}

			if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "stackLevel") != NULL)
			{
				SetProfileReq.ChargingProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "stackLevel"));
			}
			else
			{
				sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
				DEBUG_WARN("Cannot find stackLevel field.");
				goto end;
			}

			if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfilePurpose") != NULL)
			{
				strcpy((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfilePurpose")));
			}
			else
			{
				sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
				DEBUG_WARN("Cannot find chargingProfilePurpose field.");
				goto end;
			}

			if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileKind") != NULL)
			{
				strcpy((char*)SetProfileReq.ChargingProfile.ChargingProfileKind, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileKind")));
			}
			else
			{
				sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
				DEBUG_WARN("Cannot find chargingProfileKind field.");
				goto end;
			}

			if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "transactionId") != NULL)
			{
				SetProfileReq.ChargingProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "transactionId"));
			}

			if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "recurrencyKind") != NULL)
			{
				strcpy((char*)SetProfileReq.ChargingProfile.RecurrencyKind, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "recurrencyKind")));
			}

			if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validFrom") != NULL)
			{
				strcpy((char*)SetProfileReq.ChargingProfile.ValidFrom, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validFrom")));
			}

			if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validTo") != NULL)
			{
				strcpy((char*)SetProfileReq.ChargingProfile.ValidTo, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validTo")));
			}

			if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule") != NULL)
			{
				if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit") != NULL)
				{
					strcpy((char*)SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit, json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit")));
				}
				else
				{
					sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
					DEBUG_WARN("Cannot find chargingRateUnit field.");
					goto end;
				}

				if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL)
				{
					SetProfileReq.ChargingProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "duration"));
				}

				if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL)
				{
					SetProfileReq.ChargingProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "minChargingRate"));
				}

				if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL)
				{
					strcpy((char*)SetProfileReq.ChargingProfile.ChargingSchedule.StartSchedule, json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "startSchedule")));
				}

				if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod") != NULL)
				{
					chargingSchedulePeriodCount = json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));

					if(chargingSchedulePeriodCount <= 10)
					{
						for(int idxPeriod=0;idxPeriod<json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"));idxPeriod++)
						{
							if(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod") != NULL)
							{
								SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod"));
							}
							else
							{
								sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
								DEBUG_WARN("Cannot find startPeriod field.");
								goto end;
							}

							if(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit") != NULL)
							{
								SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit"));
							}
							else
							{
								sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
								DEBUG_WARN("Cannot find limit field.");
								goto end;
							}

							if(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases") != NULL)
							{
								SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases"));
							}
						}
					}
				}
				else
				{
					sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
					DEBUG_WARN("Cannot find chargingSchedulePeriod field.");
					goto end;
				}
			}
			else
			{
				sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
				DEBUG_WARN("Cannot find chargingSchedule field.");
				goto end;
			}
		}
	}

	// Profile periods quantity check
	if( chargingSchedulePeriodCount > atoi((const char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData))
	{
		sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
		goto end;
	}

	// Check invalid limit
	if((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) != 0) ||
	   ((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0) && (ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharing != 1)))
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'A')
		{
			for(uint8_t idxPeriod=0;idxPeriod<chargingSchedulePeriodCount;idxPeriod++)
			{
				if(((0 < SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit) && (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit < (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit[0]=='A'?6:6*220*(SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases==0?3:SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases)))) ||
				   (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit > (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit[0]=='W'?modelnameInfo.ratedPower:ShmSysConfigAndInfo->SysConfig.RatingCurrent)))
				{
					sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
					DEBUG_WARN("Profile period-%02d is invalid limit: %.2f %s with phase %d.\n", idxPeriod,
																								 SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit,
																								 SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit,
																								 (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases==0?3:SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases));

					goto end;
				}
			}
		}
		else
		{
			for(uint8_t idxPeriod=0;idxPeriod<chargingSchedulePeriodCount;idxPeriod++)
			{
				if((SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit*(SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit[0]=='W'?1:220*(SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases==0?3:SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases)) > modelnameInfo.ratedPower) ||
				   (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit*(SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit[0]=='W'?1:220*(SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases==0?3:SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases)) < (modelnameInfo.ratedPower*0.01)))
				{
					sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
					DEBUG_WARN("Profile period-%02d is invalid limit: %.2f %s with phase %d.\n", idxPeriod,
																								 SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit,
																								 SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit,
																								 (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases==0?3:SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases));

					goto end;
				}
			}
		}
	}


	// Profile purpose info check
	if(strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0)
	{
		FILE *fp;
		DEBUG_INFO("Profile purpose is ChargePointMaxProfile.\n");

		if(SetProfileReq.ConnectorId != 0)
		{
			sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
			goto end;
		}

		fp = fopen(ChargePointMaxProfile_JSON, "r");
		if (!fp)
		{
			DEBUG_INFO("%s does not create.\n", ChargePointMaxProfile_JSON);
			fp = fopen(ChargePointMaxProfile_JSON, "w+");
		}
		else
		{
			char *line = NULL;
			size_t len = 0;
			while(getline(&line, &len, fp) != -1)
			{
				json_object *obj = NULL;

				obj = json_tokener_parse(line);
				if(is_error(obj))
				{
					DEBUG_ERROR("Parse txProfile from file error.\n");
				}
				else
				{
					if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != SetProfileReq.ChargingProfile.ChargingProfileId) &&
					   (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) != SetProfileReq.ChargingProfile.StackLevel))
					{
						profileQuantity += 1;
					}
					else
						replaceableProfileCnt += 1;
				}
			}
		}
		fclose(fp);
	}
	else if(strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0)
	{
		FILE *fp;
		char filename[128]={0};
		int tmpProfileQuantity;
		DEBUG_INFO("Profile purpose is TxDefaultProfile.\n");

		if((SetProfileReq.ConnectorId != 0) && (SetProfileReq.ConnectorId > gunTotalNumber))
		{
			sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
			goto end;
		}

		if(SetProfileReq.ConnectorId == 0)
		{
			for(int idxCon=1;idxCon<=gunTotalNumber;idxCon++)
			{
				tmpProfileQuantity = 0;
				memset(filename, 0, ARRAY_SIZE(filename));
				sprintf(filename, "/Storage/OCPP_PH/TxDefaultProfile_%d.json", idxCon);

				fp = fopen(filename, "r");
				if (!fp)
				{
					DEBUG_INFO("%s does not create.\n", filename);
					fp = fopen(filename, "w+");
				}
				else
				{
					char *line = NULL;
					size_t len = 0;
					while(getline(&line, &len, fp) != -1)
					{
						json_object *obj = NULL;

						obj = json_tokener_parse(line);
						if(is_error(obj))
						{
							DEBUG_ERROR("Parse txProfile from file error.\n");
						}
						else
						{
							if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != SetProfileReq.ChargingProfile.ChargingProfileId) &&
							   (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) != SetProfileReq.ChargingProfile.StackLevel))
							{
								tmpProfileQuantity += 1;
							}
							else
								replaceableProfileCnt += 1;
						}
					}
				}
				fclose(fp);

				profileQuantity = (profileQuantity < tmpProfileQuantity) ? tmpProfileQuantity : profileQuantity;
			}
		}
		else
		{
			memset(filename, 0, ARRAY_SIZE(filename));
			sprintf(filename, "/Storage/OCPP_PH/TxDefaultProfile_%d.json", SetProfileReq.ConnectorId);

			fp = fopen(filename, "r");
			if (!fp)
			{
				DEBUG_INFO("%s does not create.\n", filename);
				fp = fopen(filename, "w+");
			}
			else
			{
				char *line = NULL;
				size_t len = 0;
				while(getline(&line, &len, fp) != -1)
				{
					json_object *obj = NULL;

					obj = json_tokener_parse(line);
					if(is_error(obj))
					{
						DEBUG_ERROR("Parse txProfile from file error.\n");
					}
					else
					{
						if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != SetProfileReq.ChargingProfile.ChargingProfileId) &&
						   (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) != SetProfileReq.ChargingProfile.StackLevel))
						{
							profileQuantity += 1;
						}
						else
							replaceableProfileCnt += 1;
					}
				}
			}
			fclose(fp);
		}
	}
	else if(strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
	{
		int isMatchTransactiodId= FALSE;
		FILE *fp;
		char filename[128]={0};
		DEBUG_INFO("Profile purposeStr is TxProfile.\n");

		//---TxProfile SHALL only be set at Charge Point ConnectorId > 0. ---//
		if(SetProfileReq.ConnectorId == 0)
		{
			sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
			goto end;
		}

		int tempIndex = 0;
		//check Transaction active
		if(gunType[SetProfileReq.ConnectorId -1] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = (((SetProfileReq.ConnectorId -1)==2) ? 1: 0);
			}
			else
			{
				tempIndex = SetProfileReq.ConnectorId -1;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					if((SYS_MODE_PREPARING <= ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus) && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus <= SYS_MODE_TERMINATING)) // S_CHARGING
					{
						if(SetProfileReq.ConnectorId == ShmOCPP16DataPH->StartTransaction[SetProfileReq.ConnectorId -1].ResponseTransactionId)
						{
							isMatchTransactiodId = TRUE;
							break;
						}
					}
				}
			}
		}
		else if(gunType[SetProfileReq.ConnectorId -1] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = (((SetProfileReq.ConnectorId -1)==2) ? 1: 0);
			}
			else
			{
				tempIndex = SetProfileReq.ConnectorId -1;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					if(((SYS_MODE_PREPARING <= ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus) && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_TERMINATING)) ||
					    ((SYS_MODE_CCS_PRECHARGE_STEP0 <= ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus) && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1))) // S_CHARGING
					{
						if(SetProfileReq.ChargingProfile.TransactionId == ShmOCPP16DataPH->StartTransaction[SetProfileReq.ConnectorId -1].ResponseTransactionId)
						{
							isMatchTransactiodId = TRUE;
							break;
						}
					}
				}
			}
		}
		else if(gunType[SetProfileReq.ConnectorId -1] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = (((SetProfileReq.ConnectorId -1)==2) ? 1: 0);
			}
			else
			{
				tempIndex = SetProfileReq.ConnectorId -1;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					if((SYS_MODE_PREPARING <= ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus) && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus <= SYS_MODE_TERMINATING)) // S_CHARGING
					{
						if(SetProfileReq.ChargingProfile.TransactionId == ShmOCPP16DataPH->StartTransaction[SetProfileReq.ConnectorId -1].ResponseTransactionId)
						{
							isMatchTransactiodId = TRUE;
							break;
						}
					}
				}
			}
		}
		else if(gunType[SetProfileReq.ConnectorId -1] == GUN_TYPE_DO)
		{
			tempIndex = SetProfileReq.ConnectorId -1;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					if(((SYS_MODE_PREPARING <= ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus) && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus <= SYS_MODE_TERMINATING)) ||
					   ((SYS_MODE_CCS_PRECHARGE_STEP0 <= ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus) && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1))) // S_CHARGING
					{
						if(SetProfileReq.ChargingProfile.TransactionId == ShmOCPP16DataPH->StartTransaction[SetProfileReq.ConnectorId -1].ResponseTransactionId)
						{
							isMatchTransactiodId = TRUE;
							break;
						}
					}
				}
			}
		}
		else
		{

			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = (SetProfileReq.ConnectorId -1);
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // S_CHARGING
					{
						if(SetProfileReq.ChargingProfile.TransactionId == ShmOCPP16DataPH->StartTransaction[SetProfileReq.ConnectorId -1].ResponseTransactionId)
						{
							isMatchTransactiodId = TRUE;
							break;
						}
					}
				}
			}
		}

		//check Transaction active
		if(isMatchTransactiodId == FALSE)
		{
			sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
			goto end;
		}

		if((SetProfileReq.ConnectorId != 0) && (SetProfileReq.ConnectorId > gunTotalNumber))
		{
			sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
			goto end;
		}

		sprintf(filename, "/Storage/OCPP_PH/TxProfile_%d.json", SetProfileReq.ConnectorId);

		fp = fopen(filename, "r");
		if (!fp)
		{
			DEBUG_INFO("%s does not create.\n", filename);
			fp = fopen(filename, "w+");
		}
		else
		{
			char *line = NULL;
			size_t len = 0;
			while(getline(&line, &len, fp) != -1)
			{
				json_object *obj = NULL;

				obj = json_tokener_parse(line);
				if(is_error(obj))
				{
					DEBUG_ERROR("Parse txProfile from file error.\n");
				}
				else
				{
					if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != SetProfileReq.ChargingProfile.ChargingProfileId) &&
					   (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) != SetProfileReq.ChargingProfile.StackLevel))
					{
						profileQuantity += 1;
					}
					else
						replaceableProfileCnt += 1;
				}
			}
		}
		fclose(fp);
	}

	// Check ChargeProfileMaxStackLevel
	DEBUG_INFO("%s profile quantity: %d\n", SetProfileReq.ChargingProfile.ChargingProfilePurpose, profileQuantity);
	if(profileQuantity >= atoi((const char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData))
	{
		sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
		goto end;
	}

	//------------------------------Satrt: Check Configuration Key "MaxChargingProfilesInstalled" Logic---------------------------------------//
	{
		FILE *fp;
		char dataLine[4096]={0};
	    char fnametemp[128]={0};
	    int tmpProfileQuantity;
		//Check ChargePointMaxProfile.json exit
	    profileQuantity = 0;

		if((access("/Storage/OCPP_PH/ChargePointMaxProfile.json",F_OK))!=-1)
		{
			fp = fopen("/Storage/OCPP_PH/ChargePointMaxProfile.json", "r");
			//Check Charging Profile Count
			tmpProfileQuantity = 0;
			while(fscanf(fp, "%s", dataLine) != EOF)
			{
				if(strstr(dataLine, "chargingProfileId")!= NULL)
				{
					profileQuantity += 1;
					tmpProfileQuantity += 1;
				}
				memset(dataLine, 0, ARRAY_SIZE(dataLine));
			}
			fclose(fp);
			DEBUG_INFO("ChargePointMaxProfile.json has %d charging Profile\n", tmpProfileQuantity);
		}

	    //Check TxDefaultProfile_%d.json
	    for(int idxCon=1; idxCon <= gunTotalNumber; idxCon++)
		{
			memset(fnametemp, 0, ARRAY_SIZE(fnametemp));
			sprintf(fnametemp, "/Storage/OCPP_PH/TxDefaultProfile_%d.json", idxCon);
			if((access(fnametemp,F_OK))!=-1)
			{
				fp = fopen(fnametemp, "r");
				//Check Charging Profile Count
				tmpProfileQuantity = 0;
				while(fscanf(fp, "%s", dataLine) != EOF)
				{
					//DEBUG_INFO("word=%s\n",word);
					if(strstr(dataLine, "chargingProfileId")!= NULL)
					{
						profileQuantity += 1;
						tmpProfileQuantity += 1;
					}
					memset(dataLine, 0, ARRAY_SIZE(dataLine));
				}
				fclose(fp);
				DEBUG_INFO("%s has %d charging Profile\n",fnametemp, tmpProfileQuantity);
			}
		}

		//Check TxProfile_%d.json
		for(int idxCon=1; idxCon <= gunTotalNumber; idxCon++)
		{
			memset(fnametemp, 0, ARRAY_SIZE(fnametemp));
			sprintf(fnametemp, "/Storage/OCPP_PH/TxProfile_%d.json", idxCon);
			if((access(fnametemp,F_OK))!=-1)
			{
				fp = fopen(fnametemp, "r");
				//Check Charging Profile Count
				tmpProfileQuantity = 0;
				while(fscanf(fp, "%s", dataLine) != EOF)
				{
					if(strstr(dataLine, "chargingProfileId")!= NULL)
					{
						profileQuantity += 1;
						tmpProfileQuantity += 1;
					}
					memset(dataLine, 0, ARRAY_SIZE(dataLine));
				}
				fclose(fp);
				DEBUG_INFO("%s has %d charging Profile\n",fnametemp, tmpProfileQuantity);
			}
		}

		DEBUG_INFO("All purpose profile quantity: %d\n", profileQuantity);
		DEBUG_INFO("Replaceable profile quantity: %d\n", replaceableProfileCnt);

		// To check total Profile quantity
		if((SetProfileReq.ConnectorId > 0) || (strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0))
		{
			if((profileQuantity-replaceableProfileCnt) >= atoi((const char*)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData))
			{
				sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected]);
				DEBUG_WARN("Total profile quantify is over installed limit %s.\n", ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData);
				goto end;
			}
		}
		else
		{
			if((profileQuantity+gunTotalNumber-replaceableProfileCnt) > atoi((const char*)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData))
			{
				sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected]);
				DEBUG_WARN("Total profile quantify is over installed limit %s.\n", ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData);
				goto end;
			}
		}
	}
	//------------------------------End: Check Configuration Key "MaxChargingProfilesInstalled" Logic---------------------------------------//

	//**********************************Write to File********************************************************/
	{
		FILE *infile;
		FILE *outfile;
		char dataLine[4096]={0};
	    char filename[128]={0};
	    int chkChar=0;

		for(int idxCon=1; idxCon <= (SetProfileReq.ConnectorId==0?gunTotalNumber:1); idxCon++)
		{
			if(strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0)
			{
				sprintf(filename, "%s", ChargePointMaxProfile_JSON);
			}
			else if(strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0)
			{
				if(SetProfileReq.ConnectorId==0)
					sprintf(filename, "/Storage/OCPP_PH/TxDefaultProfile_%d.json", idxCon);
				else
					sprintf(filename, "/Storage/OCPP_PH/TxDefaultProfile_%d.json", SetProfileReq.ConnectorId);
			}
			else
			{
				sprintf(filename, "/Storage/OCPP_PH/TxProfile_%d.json", SetProfileReq.ConnectorId);
			}

			infile = fopen (filename, "r");
			outfile = fopen (tempfile, "w");

			chkChar = fgetc(infile);
			rewind(infile);

			if(chkChar == EOF)
			{
				// Profile is empty
				if((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) && (SetProfileReq.ConnectorId==0))
					json_object_object_add(SetChargingProfile, "connectorId", json_object_new_int(idxCon));
				fprintf(outfile,"%s\n",json_object_to_json_string_ext(SetChargingProfile, JSON_C_TO_STRING_PLAIN));

				fclose(infile);
				fclose(outfile);

				sprintf(rmFileCmd,"rm -f %s",filename);
				system(rmFileCmd);

				rename(tempfile, filename);
			}
			else
			{
				// Profile is not empty
				int ChargingProfileAdded = FALSE;

				while (fgets(dataLine, ARRAY_SIZE(dataLine), infile) != NULL)
				{
					dataLine[strlen(dataLine) - 1] = '\0'; // eat the newline fgets() stores

					json_object *tmpChargingProfile;
					tmpChargingProfile = json_tokener_parse(dataLine);
					if(!is_error(SetChargingProfile))
					{
						if(json_object_object_get(tmpChargingProfile, "csChargingProfiles") != NULL)
						{
							if(json_object_object_get(json_object_object_get(tmpChargingProfile, "csChargingProfiles"), "chargingProfileId") != NULL)
							{
								tempchargingProfileIdInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpChargingProfile, "csChargingProfiles"), "chargingProfileId"));
							}

							if(json_object_object_get(json_object_object_get(tmpChargingProfile, "csChargingProfiles"), "stackLevel") != NULL)
							{
								tempstackLevelInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpChargingProfile, "csChargingProfiles"), "stackLevel"));
							}
						}
					}
					json_object_put(tmpChargingProfile);

					if((tempchargingProfileIdInt == SetProfileReq.ChargingProfile.ChargingProfileId))
					{
						if(ChargingProfileAdded == FALSE)
						{
							if((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) && (SetProfileReq.ConnectorId==0))
								json_object_object_add(SetChargingProfile, "connectorId", json_object_new_int(idxCon));
							fprintf(outfile,"%s\n",json_object_to_json_string_ext(SetChargingProfile, JSON_C_TO_STRING_PLAIN));
							ChargingProfileAdded = TRUE;
						}
					}
					else if(tempstackLevelInt == SetProfileReq.ChargingProfile.StackLevel)
					{
						if(ChargingProfileAdded == FALSE)
						{
							if((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) && (SetProfileReq.ConnectorId==0))
								json_object_object_add(SetChargingProfile, "connectorId", json_object_new_int(idxCon));
							fprintf(outfile,"%s\n",json_object_to_json_string_ext(SetChargingProfile, JSON_C_TO_STRING_PLAIN));
							ChargingProfileAdded = TRUE;
						}
					}
					else
					{
						fprintf(outfile,"%s\n",dataLine);
						if(ChargingProfileAdded == FALSE)
						{
							if((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) && (SetProfileReq.ConnectorId==0))
								json_object_object_add(SetChargingProfile, "connectorId", json_object_new_int(idxCon));
							fprintf(outfile,"%s\n",json_object_to_json_string_ext(SetChargingProfile, JSON_C_TO_STRING_PLAIN));
							ChargingProfileAdded = TRUE;
						}
					}
				} // end of while loop

				fclose(infile);
				fclose(outfile);

				sprintf(rmFileCmd,"rm -f %s",filename);
				system(rmFileCmd);

				rename(tempfile, filename);
			}
		}

		sleep(1);
		result = TRUE;
		sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Accepted] );
	}
end:
	json_object_put(SetChargingProfile);
	if(strcmp(comfirmstr, ChargingProfileStatusStr[ChargingProfileStatus_Accepted]) == 0)
	{
		if(SetProfileReq.ConnectorId == 0)
		{
			for(uint8_t idx=0;idx<gunTotalNumber;idx++)
			{
				checkCompositeSchedule((idx+1), 86400, &ShmOCPP16DataPH->SmartChargingProfile[idx], TRUE);
			}
		}
		else
			checkCompositeSchedule(SetProfileReq.ConnectorId, 86400, &ShmOCPP16DataPH->SmartChargingProfile[SetProfileReq.ConnectorId-1], TRUE);
	}

	sendSetChargingProfileConfirmation(uuid, comfirmstr);
	system("/bin/fsync -d /dev/mtdblock13;/bin/sync &");
	return result;
}


int handleTriggerMessageRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	int connectorIdIsNULL = FALSE;
	int connectorIdInt =0;
	char sstr[40]={0},sstrtemp[100]={ 0 };
	char requestedMessagestr[40]={0};
	char comfirmstr[20]={0};
	int c = 0;
	char *loc;

	DEBUG_INFO("handleTriggerMessageRequest\n");
	//[2,"266e23f4-27a4-41cf-84cb-aadf56b9523f","TriggerMessage",{"requestedMessage":"DiagnosticsStatusNotification","connectorId":1}]
	strcpy(sstrtemp, stringtrimspace(payload));

	c = 0;
	loc = strstr(sstrtemp, "requestedMessage");
	while (loc[3+strlen("requestedMessage")+c] != '\"')
	{
		sstr[c] = loc[3+strlen("requestedMessage")+c];
		c++;
	}
	sstr[c] = '\0';
	strcpy(requestedMessagestr, sstr);

	c = 0;
	loc = strstr(sstrtemp, "connectorId");
	if(loc == NULL)
	{
		connectorIdIsNULL = TRUE;
	}
	else
	{
		memset(sstr ,0, ARRAY_SIZE(sstr) );
		while ((loc[strlen("connectorId")+2+c] != ',')&&(loc[strlen("connectorId")+2+c] != '}'))
		{
			sstr[c] = loc[strlen("connectorId")+2+c];
			//printf("i=%d sstr=%c\n",c, sstr[c]);
			c++;
		}
		sstr[c] = '\0';
		connectorIdInt = atoi(sstr);
	}

	if((connectorIdIsNULL == TRUE) || ((connectorIdIsNULL == FALSE) && ((connectorIdInt > 0)  && (connectorIdInt <= gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/ ))) )
	{
		sprintf((char *)ShmOCPP16DataPH->TriggerMessage[connectorIdInt -1].RequestedMessage, "%s" ,requestedMessagestr);
		ShmOCPP16DataPH->TriggerMessage[connectorIdInt -1].ConnectorId = connectorIdInt;

		if((strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) != 0) &&
			(strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) != 0) &&
			(strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) != 0 ) &&
			(strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) != 0) &&
			(strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) != 0) &&
			(strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) != 0 ))
		{
			sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_NotImplemented] );
			sendTriggerMessageConfirmation(uuid,comfirmstr);
			return TRUE;
		}
		else
		{
			sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
			sendTriggerMessageConfirmation(uuid,comfirmstr);
		}
	}
	else if(connectorIdIsNULL == FALSE && ((connectorIdInt <= 0)  || (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/)  ))
	{
		sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Rejected] );
		sendTriggerMessageConfirmation(uuid,comfirmstr);
		return TRUE;
	}

	//==========================
	// Trigger message
	//==========================
	if( strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) == 0)
	{
		if((strlen((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status) == 0) ||
		   ((FirmwareStatusNotificationStatus != FIRMWARE_STATUS_DOWNLOADING) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_DOWNLOADED) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_IDLE) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_INSTALLING)))
		{
			FirmwareStatusNotificationStatus = FIRMWARE_STATUS_IDLE;
			sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s", FirmwareStatusStr[FirmwareStatus_Idle]);
		}

		ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
	}
	else if(strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) == 0 )
	{
		if(strlen((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status) == 0)
			sprintf((char*)ShmOCPP16DataPH->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Idle]);
		ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
	}
	else if(strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) == 0 )
	{
		//sendBootNotificationRequest();
		server_sign = FALSE;
	}
	else if(strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) == 0 )
	{
		refreshStartTimer(&clientTime.Heartbeat);
		clientTime.Heartbeat.tv_sec -= ShmOCPP16DataPH->BootNotification.ResponseHeartbeatInterval;
	}
	else if (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) == 0 )
	{
		if(connectorIdIsNULL == FALSE)
		{
			if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber))
			{
				//sendMeterValuesRequest((connectorIdInt -1), ReadingContext_Trigger);
				cpinitateMsg.bits[connectorIdInt -1].TriggerMeterValue = 1;
			}
		}
		else
		{
			for(int idx=0;idx< gunTotalNumber;idx++)
			{
				//sendMeterValuesRequest(idx, ReadingContext_Trigger);
				cpinitateMsg.bits[idx].TriggerMeterValue = 1;
			}
		}
	}
	else if(strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) == 0 )
	{
		if(connectorIdIsNULL == FALSE)
		{
			if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber))
			{
				ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].TriggerMessageReq = 1;
				cpinitateMsg.bits[connectorIdInt -1].TriggerStatusNotificationReq = 1;
				//clientTime.StatusNotification[connectorIdInt-1] = time((time_t*)NULL);
			}
		}
		else
		{
			for(int idx=0;idx< gunTotalNumber;idx++)
			{
				ShmOCPP16DataPH->CsMsg.bits[idx].TriggerMessageReq = 1;
				cpinitateMsg.bits[idx].TriggerStatusNotificationReq = 1;
				 //clientTime.StatusNotification[idx] = time((time_t*)NULL);
			}
		}
	}

	return result;
}

int handleUnlockConnectorRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	int connectorIdInt =0;
	char comfirmstr[20]={0};
	int tempIndex = 0;
	json_object *UnlockConnector;

	//[2,"ba1cbd49-2a76-493a-8f76-fa23e7606532","UnlockConnector",{"connectorId":1}]
	DEBUG_INFO("handleUnlockConnectorRequest ...\n");
	UnlockConnector = json_tokener_parse(payload);
	if(!is_error(UnlockConnector))
	{
		if(json_object_object_get(UnlockConnector, "connectorId") != NULL)
		{
			connectorIdInt = json_object_get_int(json_object_object_get(UnlockConnector, "connectorId"));
		}
	}
	json_object_put(UnlockConnector);

	DEBUG_INFO("Unlock connectorIdInt = %d\n",connectorIdInt);

	if(gunTotalNumber == 0)
	{
		sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
		goto end;
	}
	else if((connectorIdInt > gunTotalNumber/*CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY*/) || (connectorIdInt <= 0))
	{
		//sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
		sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
		goto end;
	}
	else
	{
		//check Transaction active
		if(gunType[connectorIdInt-1] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = (((connectorIdInt -1)==2) ? 1: 0);
			}
			else
			{
				tempIndex = connectorIdInt -1;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex ))
				{
					//stop Transaction
					ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;

				}
			}
		}
		else if(gunType[connectorIdInt-1] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = (((connectorIdInt -1)==2) ? 1: 0);
			}
			else
			{
				tempIndex = connectorIdInt -1;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex ))
				{
					//stop Transaction
					ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
				}
			}
		}
		else if(gunType[connectorIdInt-1] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = (((connectorIdInt -1)==2) ? 1: 0);
			}
			else
			{
				tempIndex = connectorIdInt -1;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex ))
				{
					//stop Transaction
					ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
				}
			}

		}
		else if(gunType[connectorIdInt-1] == GUN_TYPE_DO)
		{
			tempIndex = connectorIdInt -1;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex ))
				{
					//stop Transaction
					ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
				}
			}

		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = connectorIdInt-1;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex ))
				{
					ShmOCPP16DataPH->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;

				}
			}

		}

	  ShmOCPP16DataPH->UnlockConnector[connectorIdInt-1].ConnectorId = connectorIdInt;
	  strcpy((char *)ShmOCPP16DataPH->UnlockConnector[connectorIdInt-1].guid, uuid);
	  result = TRUE;
	  return result;

	}

end:
	//json_object_put(obj);  --- remove temporally
	sendUnlockConnectorConfirmation(uuid, comfirmstr);
	return result;
}

int handleUpdateFirmwareRequest(char *uuid, char *payload)
{
	mtrace();
	int result = FAIL;
	pthread_t t;

	DEBUG_INFO("handleUpdateFirmwareRequest ...\n");
	sendUpdateFirmwareConfirmation(uuid);

	if(!interLock.isUpdateFirmwareGoing)
	{
		interLock.isUpdateFirmwareGoing = 1;
		pthread_create(&t, NULL, UpdateFirmwareProcess, payload);
		sleep(1);
	}
	else
		DEBUG_WARN("Other UpdateFirmware request on going.\n");

	ShmOCPP16DataPH->MsMsg.bits.UpdateFirmwareConf =1;
	return result;
}

void *UpdateFirmwareProcess(void *data)
{
	pthread_detach(pthread_self());
	mtrace();
	int retriesInt =0, retryIntervalInt=0;
	char protocol[10], user[64],password[64],host[1280], path[1024], ftppath[1024],host1[256],path1[1024];
	int port=0;
	char locationstr[2048]={0}, retrieveDatestr[36]={0};
	int isSuccess = 0;
	char ftpbuf[2048];
	char temp[2048];
	char filenametemp[256];
	char * pch;

	json_object *UpdateFirmware;
	UpdateFirmware = json_tokener_parse(data);
	if(!is_error(UpdateFirmware))
	{
		// Required data
		if(json_object_object_get(UpdateFirmware, "location") != NULL)
			sprintf((char*)locationstr, "%s", json_object_get_string(json_object_object_get(UpdateFirmware, "location")));

		if(json_object_object_get(UpdateFirmware, "retrieveDate") != NULL)
			sprintf((char*)retrieveDatestr, "%s", json_object_get_string(json_object_object_get(UpdateFirmware, "retrieveDate")));

		// Optional data
		if(json_object_object_get(UpdateFirmware, "retries"))
		{
			retriesInt = json_object_get_int(json_object_object_get(UpdateFirmware, "retries"));
		}

		if(json_object_object_get(UpdateFirmware, "retryInterval"))
		{
			retryIntervalInt = json_object_get_int(json_object_object_get(UpdateFirmware, "retryInterval"));
		}
	}
	json_object_put(UpdateFirmware);

	memset(ftppath, 0, ARRAY_SIZE(ftppath));
	memset(path, 0, ARRAY_SIZE(path));

	// Wait retrieveData
	if(strlen(retrieveDatestr) > 10)
	{
		do
		{
			sleep(1);
		}while(!isOvertNow((uint8_t*)retrieveDatestr));
	}

	// Ready to download
	system("rm -f /mnt/*");
	if(strncmp(locationstr,"http", 4) == 0)
	{
		sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]", protocol, host, path);

		sprintf(ftppath,"/%s", path);
		DEBUG_INFO("locationstr: %s\n", locationstr);
		DEBUG_INFO("protocol: %s\n",protocol);
		DEBUG_INFO("host: %s\n",host);
		DEBUG_INFO("path: %s\n",path);
		DEBUG_INFO("ftppath: %s\n",ftppath);

		int ftppathlen=strlen(ftppath);
		int i=1;

		while(i < ftppathlen)
		{
		   int len=ftppathlen-i;
		   if(ftppath[len]== 47) // '/' ascll code: 47
		    {
			   DEBUG_INFO("compare '/' all right\n");
		       break;
		    }
		    i=i+1;
		}

		memset(filenametemp, 0, ARRAY_SIZE(filenametemp));
		strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1);
		filenametemp[i+1] = 0;

		do
		{
			sleep(1);
			sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloading]);
			ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
			sleep(1);

			isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr);
			if(!isSuccess)
			{
				sleep(1);
				sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
				ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
				if(retriesInt>0)sleep(retryIntervalInt);else sleep(3);
				sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Idle]);
				ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
			}
			else
			{
				sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloaded]);
				sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloaded]);
				ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
			}
			retriesInt--;
		}while((isSuccess == 0)&&(retriesInt >= 0));
	}
	else if(strncmp(locationstr,"sftp", 4) == 0) // sftp
	{
		memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));
		memset(temp, 0, ARRAY_SIZE(temp));
		//DEBUG_INFO("locationstr=%s\n",locationstr);
		strcpy(ftpbuf, locationstr);
		int ftppathlen=strlen(ftpbuf);
		int i=1;

		while(i < ftppathlen)
		{
			int len=ftppathlen-i;
			if(ftpbuf[len]== 47) // '/' ascii code: 47
			{
				DEBUG_INFO(" compare '/' all right\n");
				break;
			}

			i=i+1;
		}

		memset(filenametemp, 0, ARRAY_SIZE(filenametemp));
		strncpy(filenametemp, ftpbuf+(ftppathlen-i+1), i+1);
		filenametemp[i+1] = 0;
		strncpy(temp, ftpbuf, ftppathlen-i+1);

		pch=strchr(temp,'@');
		if(pch==NULL)
		{
			sscanf(temp,"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
							 protocol, host, &port, path);
			strcpy(user,"anonymous");
			strcpy(password,"");
		}
		else
		{
			char loginInfo[128];
			sscanf(temp,"%[^:]:%*2[/]%[^@]@", protocol, loginInfo);
			// Check if it contains 'password'
			if(strstr(loginInfo, ":") != NULL)
			{
				sscanf(loginInfo,"%[^:]:%s", user, password);
			}
			else
			{
				strcpy(user,loginInfo);
				strcpy(password,"");
			}

			if(strstr(pch,":") != NULL)
			{
				sscanf(pch,"@%[^:]:%i/%512[^\n]", host, &port, path);
				sprintf(host,"%s/%s", host,path);
			}
			else
			{
				sscanf(pch,"@%s[^\n]", host);
			}
			//sscanf(temp,"%[^:]:%*2[/]%[^@]@%[^:]:%i/%199[^\n]", protocol, user, host, &port, path);
		}

		sscanf(host,"%[^/]%s",host1, path1);
		sprintf(ftppath,"%s:/%s", host,path);

		if(port == 0)
		{
			port = 22;
		}

		do
		{
			sleep(1);
			sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloading]);
			ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
			sleep(1);

			isSuccess = sftpDownLoadFile(host1, user, password, port, path1, filenametemp, locationstr);
			if(!isSuccess)
			{
				//BulldogUtil.sleepMs(interval*1000);
				DEBUG_INFO("Update firmware request and download file fail.\n");
				sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
				ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
				if(retriesInt>0)sleep(retryIntervalInt);else sleep(3);
				sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Idle]);
				ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
			}
			else
			{
				sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloaded]);
				sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloaded]);
				ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
			}
			retriesInt--;
		}while((!isSuccess)&&(retriesInt >= 0));
	}
	else if((strncmp(locationstr,"ftp", 3) == 0) || (strncmp(locationstr,"ftps", 4) == 0)) // ftp/ftps
	{
    	memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));
    	memset(temp, 0, ARRAY_SIZE(temp));
    	//DEBUG_INFO("locationstr=%s\n",locationstr);
    	strcpy(ftpbuf, locationstr/*"ftp://ipc_ui:pht2016@ftp.phihong.com.tw/DC/log/DemoDC1_2018-07-13_185011_PSULog.zip"*/ );
    	int ftppathlen=strlen(ftpbuf);
    	int i=1;

    	while(i < ftppathlen)
    	{
    		int len=ftppathlen-i;
    		if(ftpbuf[len]== 47) // '/' ascll code: 47
    		{
    			DEBUG_INFO(" compare '/' all right\n");
    			break;
    		}

    		i=i+1;
    	}

    	memset(filenametemp, 0, ARRAY_SIZE(filenametemp));
    	strncpy(filenametemp, ftpbuf+(ftppathlen-i+1), i+1);
    	filenametemp[i+1] = 0;
    	strncpy(temp, ftpbuf, ftppathlen-i+1);

    	pch=strchr(temp,'@');
    	if(pch==NULL)
    	{
    		sscanf(temp,"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
    				         protocol, host, &port, path);
    		strcpy(user,"anonymous");
    		strcpy(password,"");
    	}
    	else
    	{
    		sscanf(temp,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]",
    				protocol, user, password, host, &port, path);
    	}

    	sscanf(host,"%[^/]%s",host1, path1);
    	sprintf(ftppath,"%s", path1);

    	//DEBUG_INFO("protocol =%s\n",protocol);
    	//DEBUG_INFO("user =%s\n",user);
    	//DEBUG_INFO("password =%s\n",password);
    	//DEBUG_INFO("host1 =%s\n",host1);
    	//DEBUG_INFO("port =%d\n",port);
    	//DEBUG_INFO("path1 =%s\n",path1);
    	//DEBUG_INFO("ftppath=%s\n",ftppath);

		//ftpFile(host, user, password, port, ftppath, fname);
		//download firmware pthred
    	if(port == 0)
    	{
    		port = 21;
    	}

		do
		{
			sleep(1);
			sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloading]);
			ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
			sleep(1);

			isSuccess = ftpDownLoadFile(host1, user, password, port, ftppath, filenametemp, locationstr);
			if(!isSuccess)
			{
				//BulldogUtil.sleepMs(interval*1000);
				DEBUG_INFO("Update firmware request and download file fail.\n");
				sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
				ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
				if(retriesInt>0)sleep(retryIntervalInt);else sleep(3);
				sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Idle]);
				ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
			}
			else
			{
				sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloaded]);
				sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloaded]);
				ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
			}
			retriesInt--;
		}while((!isSuccess)&&(retriesInt >= 0));
	}
    else
    {
		sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
		ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
		sleep(1);
		sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Idle]);
		ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
    }

	// OCPPPH only, must announce CSU upgrade firmware
	if(strstr((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, FirmwareStatusStr[FirmwareStatus_Downloaded]) != NULL)
	{
		sleep(3);
		ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
	}

	interLock.isUpdateFirmwareGoing = 0;
	pthread_exit(NULL);
}

int handleCertificateSignedRequest(char *uuid, char *payload)
{
	mtrace();
	int result = PASS;
	json_object *CertificateSigned;

	DEBUG_INFO("handleCertificateSignedRequest...\n");
	CertificateSigned = json_tokener_parse(payload);
	if(!is_error(CertificateSigned))
	{
		sprintf((char*)ShmOCPP16DataPH->CertificateSigned.certificateChain, "%s", json_object_get_string(json_object_object_get(CertificateSigned, "certificateChain")));
	}
	json_object_put(CertificateSigned);

	FILE *fp = fopen("/Storage/OCPP_PH/certCP.crt", "w");
	fprintf(fp, "%s", ShmOCPP16DataPH->CertificateSigned.certificateChain);
	fclose(fp);
	system("/bin/fsync -d /dev/mtdblock13;/bin/sync &");

	ShmOCPP16DataPH->MsMsg.bits.CertificateSignedReq = 1;

	sprintf((char*)ShmOCPP16DataPH->CertificateSigned.Response_status, "Accepted");
	sendCertificateSignedConfirmation(uuid);

	return result;
}

int handleDeleteCertificateRequest(char *uuid, char *payload)
{
	mtrace();
	int result = PASS;
	json_object *DeleteCertificate;

	DEBUG_INFO("handleDeleteCertificateRequest...\n");
	DeleteCertificate = json_tokener_parse(payload);
	if(!is_error(DeleteCertificate))
	{
		sprintf((char*)ShmOCPP16DataPH->DeleteCertificate.certificateHashData.hashAlgorithm, "%s", json_object_get_string(json_object_object_get(json_object_object_get(DeleteCertificate, "certificateHashData"), "hashAlgorithm")));
		sprintf((char*)ShmOCPP16DataPH->DeleteCertificate.certificateHashData.issuerNameHash, "%s", json_object_get_string(json_object_object_get(json_object_object_get(DeleteCertificate, "certificateHashData"), "issuerNameHash")));
		sprintf((char*)ShmOCPP16DataPH->DeleteCertificate.certificateHashData.issuerKeyHash, "%s", json_object_get_string(json_object_object_get(json_object_object_get(DeleteCertificate, "certificateHashData"), "issuerKeyHash")));
		sprintf((char*)ShmOCPP16DataPH->DeleteCertificate.certificateHashData.serialNumber, "%s", json_object_get_string(json_object_object_get(json_object_object_get(DeleteCertificate, "certificateHashData"), "serialNumber")));
	}
	json_object_put(DeleteCertificate);

	/*
	 *	TODO: Delete certificateSigned process
	 */
	ShmOCPP16DataPH->MsMsg.bits.DeleteCertificateReq = 1;
	DEBUG_INFO("hashAlgorithm: %s\n", ShmOCPP16DataPH->DeleteCertificate.certificateHashData.hashAlgorithm);
	DEBUG_INFO("issuerNameHash: %s\n", ShmOCPP16DataPH->DeleteCertificate.certificateHashData.issuerNameHash);
	DEBUG_INFO("issuerKeyHash: %s\n", ShmOCPP16DataPH->DeleteCertificate.certificateHashData.issuerKeyHash);
	DEBUG_INFO("serialNumber: %s\n", ShmOCPP16DataPH->DeleteCertificate.certificateHashData.serialNumber);

	sprintf((char*)ShmOCPP16DataPH->DeleteCertificate.Response_status, "NotFound");
	sendDeleteCertificateConfirmation(uuid);

	return result;
}

int handleExtendedTriggerMessageRequest(char *uuid, char *payload)
{
	mtrace();
	int result = PASS;
	json_object *ExtendedTriggerMessage;

	DEBUG_INFO("handleExtendedTriggerMessageRequest...\n");
	ExtendedTriggerMessage = json_tokener_parse(payload);
	if(!is_error(ExtendedTriggerMessage))
	{
		sprintf((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, "%s", json_object_get_string(json_object_object_get(ExtendedTriggerMessage, "requestedMessage")));

		if(json_object_object_get(ExtendedTriggerMessage, "connectorId") != NULL)
		{
			ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId = json_object_get_int(json_object_object_get(ExtendedTriggerMessage, "connectorId"));
		}
		else
		{
			ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId = -1;
		}
	}
	json_object_put(ExtendedTriggerMessage);


	DEBUG_INFO("requestedMessage: %s\n", ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage);
	DEBUG_INFO("connectorIdInt: %d\n", ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId);

	if((ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId == 0) || (ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId > gunTotalNumber))
	{
		sprintf((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.Response_status, TriggerMessageStatusStr[TriggerMessageStatus_Rejected]);
	}
	else
	{
		if((strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[BootNotification]) != 0 ) &&
		   (strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, "LogStatusNotification") != 0) &&
		   (strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[FirmwareStatusNotification]) != 0) &&
		   (strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[Heartbeat]) != 0) &&
		   (strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[MeterValues]) != 0) &&
		   (strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, "SignChargePointCertificate") != 0 ) &&
		   (strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[StatusNotification]) != 0 ))
		{
			sprintf((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.Response_status, "%s",TriggerMessageStatusStr[TriggerMessageStatus_NotImplemented] );
		}
		else
		{
			sprintf((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.Response_status, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
		}
	}
	sendExtendedTriggerMessageConfirmation(uuid);

	//==========================
	// Trigger message
	//==========================
	if(strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[BootNotification]) == 0 )
	{
		//sendBootNotificationRequest();
		server_sign = FALSE;
	}
	else if( strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, "LogStatusNotification") == 0)
	{
		ShmOCPP16DataPH->SpMsg.bits.LogStatusNotificationReq = 1;
	}
	else if( strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[FirmwareStatusNotification]) == 0)
	{
		if((strlen((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status) == 0) ||
		   ((FirmwareStatusNotificationStatus != FIRMWARE_STATUS_DOWNLOADING) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_DOWNLOADED) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_IDLE) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_INSTALLING)))

		{
			FirmwareStatusNotificationStatus = FIRMWARE_STATUS_IDLE;
			sprintf((char*)ShmOCPP16DataPH->FirmwareStatusNotification.Status, "%s", FirmwareStatusStr[FirmwareStatus_Idle]);
		}

		ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 1;
	}
	else if(strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[Heartbeat]) == 0 )
	{
		refreshStartTimer(&clientTime.Heartbeat);
		clientTime.Heartbeat.tv_sec -= ShmOCPP16DataPH->BootNotification.ResponseHeartbeatInterval;
	}
	else if (strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[MeterValues]) == 0 )
	{
		if((ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId > 0) && (ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId <= gunTotalNumber))
		{
			cpinitateMsg.bits[ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId-1].TriggerMeterValue = 1;
		}
		else
		{
			for(int idx=0;idx< gunTotalNumber;idx++)
			{
				//sendMeterValuesRequest(idx, ReadingContext_Trigger);
				cpinitateMsg.bits[idx].TriggerMeterValue = 1;
			}
		}
	}
	else if(strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, "SignChargePointCertificate") == 0 )
	{
		ShmOCPP16DataPH->SpMsg.bits.SignCertificateReq = 1;

		if(access("/Storage/OCPP_PH/certCP.csr",F_OK) == -1)
		{
			system("openssl req -newkey rsa:2048 -out /Storage/OCPP_PH/certCP.csr -nodes -keyout /Storage/OCPP_PH/certCP.key -subj \"/C=TW/ST=Taiwan/L=Taoyuan/O=Phihong Technology/OU=IT/CN=phihong.com\" &");
		}
	}
	else if(strcmp((char*)ShmOCPP16DataPH->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[StatusNotification]) == 0 )
	{
		if((ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId > 0) && (ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId <= gunTotalNumber))
		{
			cpinitateMsg.bits[ShmOCPP16DataPH->ExtendedTriggerMessage.connectorId -1].StatusNotificationReq = 1;
		}
		else
		{
			for(int idx=0;idx< gunTotalNumber;idx++)
				cpinitateMsg.bits[idx].StatusNotificationReq = 1;
		}
	}

	return result;
}

int handleGetInstalledCertificateIdsRequest(char *uuid, char *payload)
{
	mtrace();
	int result = PASS;
	json_object *GetInstalledCertificateIds;

	DEBUG_INFO("handleGetInstalledCertificateIdsRequest...\n");
	GetInstalledCertificateIds = json_tokener_parse(payload);
	if(!is_error(GetInstalledCertificateIds))
	{
		sprintf((char*)ShmOCPP16DataPH->GetInstalledCertificateIds.certificateType, "%s", json_object_get_string(json_object_object_get(GetInstalledCertificateIds, "certificateType")));
	}
	json_object_put(GetInstalledCertificateIds);

	/*
	 *	TODO: Return installed certificate process
	 */
	ShmOCPP16DataPH->MsMsg.bits.GetInstalledCertificateIdsReq = 1;
	DEBUG_INFO("requestedMessage: %s\n", (char*)ShmOCPP16DataPH->GetInstalledCertificateIds.certificateType);

	memset(ShmOCPP16DataPH->GetInstalledCertificateIds.Response_certificateHashData, 0x00, ARRAY_SIZE(ShmOCPP16DataPH->GetInstalledCertificateIds.Response_certificateHashData)*sizeof(struct CertificateHashDataType));
	sprintf((char*)ShmOCPP16DataPH->GetInstalledCertificateIds.Response_status, "NotFound");
	sendGetInstalledCertificateIdsConfirmation(uuid);

	return result;
}

int handleGetLogRequest(char *uuid, char *payload)
{
	mtrace();
	int result = PASS;
	json_object *GetLog;

	DEBUG_INFO("handleGetLogRequest...\n");
	GetLog = json_tokener_parse(payload);
	if(!is_error(GetLog))
	{
		sprintf((char*)ShmOCPP16DataPH->GetLog.logType, "%s", json_object_get_string(json_object_object_get(GetLog, "logType")));
		ShmOCPP16DataPH->GetLog.requestId = json_object_get_int(json_object_object_get(GetLog, "requestId"));

		if(json_object_object_get(GetLog, "retries") != NULL)
		{
			ShmOCPP16DataPH->GetLog.retries = json_object_get_int(json_object_object_get(GetLog, "retries"));
		}

		if(json_object_object_get(GetLog, "retryInterval") != NULL)
		{
			ShmOCPP16DataPH->GetLog.retryInterval = json_object_get_int(json_object_object_get(GetLog, "retryInterval"));
		}

		sprintf((char*)ShmOCPP16DataPH->GetLog.log.remoteLocation, "%s", json_object_get_string(json_object_object_get(json_object_object_get(GetLog, "log"), "remoteLocation")));

		if(json_object_object_get(json_object_object_get(GetLog, "log"), "oldestTimestamp") != NULL)
		{
			sprintf((char*)ShmOCPP16DataPH->GetLog.log.oldestTimestamp, "%s", json_object_get_string(json_object_object_get(json_object_object_get(GetLog, "log"), "oldestTimestamp")));
		}

		if(json_object_object_get(json_object_object_get(GetLog, "log"), "latestTimestamp") != NULL)
		{
			sprintf((char*)ShmOCPP16DataPH->GetLog.log.latestTimestamp, "%s", json_object_get_string(json_object_object_get(json_object_object_get(GetLog, "log"), "latestTimestamp")));
		}
	}
	json_object_put(GetLog);

	/*
	 *	TODO: Upload log process
	 */
	ShmOCPP16DataPH->MsMsg.bits.GetLogReq = 1;
	DEBUG_INFO("logType: %s\n", ShmOCPP16DataPH->GetLog.logType);
	DEBUG_INFO("requestId: %d\n", ShmOCPP16DataPH->GetLog.requestId);
	DEBUG_INFO("retries: %d\n", ShmOCPP16DataPH->GetLog.retries);
	DEBUG_INFO("retryInterval: %d\n", ShmOCPP16DataPH->GetLog.retryInterval);
	DEBUG_INFO("remoteLocation: %s\n", ShmOCPP16DataPH->GetLog.log.remoteLocation);
	DEBUG_INFO("oldestTimestamp: %s\n", ShmOCPP16DataPH->GetLog.log.oldestTimestamp);
	DEBUG_INFO("latestTimestamp: %s\n", ShmOCPP16DataPH->GetLog.log.latestTimestamp);
	sprintf((char*)ShmOCPP16DataPH->GetLog.Response_status, "Rejected");
	sendGetLogConfirmation(uuid);

	return result;
}

int handleInstallCertificateRequest(char *uuid, char *payload)
{
	mtrace();
	int result = PASS;
	json_object *InstallCertificate;

	DEBUG_INFO("handleInstallCertificateRequest...\n");
	InstallCertificate = json_tokener_parse(payload);
	if(!is_error(InstallCertificate))
	{
		sprintf((char*)ShmOCPP16DataPH->InstallCertificate.certificateType, "%s", json_object_get_string(json_object_object_get(InstallCertificate, "certificateType")));
		sprintf((char*)ShmOCPP16DataPH->InstallCertificate.certificate, "%s", json_object_get_string(json_object_object_get(InstallCertificate, "certificate")));

		/*
		 * 	TODO:	Install certificate process
		 */
		ShmOCPP16DataPH->MsMsg.bits.InstallCertificateReq = 1;
		DEBUG_INFO("certificateType: %s\n", (char*)ShmOCPP16DataPH->InstallCertificate.certificateType);
		DEBUG_INFO("certificate: %s\n", (char*)ShmOCPP16DataPH->InstallCertificate.certificate);

		sprintf((char*)ShmOCPP16DataPH->InstallCertificate.Response_status, "Rejected");
		sendInstallCertificateConfirmation(uuid);
	}
	json_object_put(InstallCertificate);

	return result;
}

int handleSignedUpdateFirmwareRequest(char *uuid, char *payload)
{
	mtrace();
	int result = PASS;
	json_object *SignedUpdateFirmware;

	DEBUG_INFO("handleSignedUpdateFirmwareRequest...\n");
	SignedUpdateFirmware = json_tokener_parse(payload);
	if(!is_error(SignedUpdateFirmware))
	{
		if(json_object_object_get(SignedUpdateFirmware, "retries") != NULL)
		{
			ShmOCPP16DataPH->SignedUpdateFirmware.retries = json_object_get_int(json_object_object_get(SignedUpdateFirmware, "retries"));
		}

		if(json_object_object_get(SignedUpdateFirmware, "retryInterval") != NULL)
		{
			ShmOCPP16DataPH->SignedUpdateFirmware.retryInterval = json_object_get_int(json_object_object_get(SignedUpdateFirmware, "retryInterval"));
		}

		ShmOCPP16DataPH->SignedUpdateFirmware.requestId = json_object_get_int(json_object_object_get(SignedUpdateFirmware, "requestId"));

		sprintf((char*)ShmOCPP16DataPH->SignedUpdateFirmware.firmware.location, "%s", json_object_get_string(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "location")));
		sprintf((char*)ShmOCPP16DataPH->SignedUpdateFirmware.firmware.retrieveDateTime, "%s", json_object_get_string(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "retrieveDateTime")));

		if(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "installDateTime") != NULL)
		{
			sprintf((char*)ShmOCPP16DataPH->SignedUpdateFirmware.firmware.installDateTime, "%s", json_object_get_string(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "installDateTime")));
		}

		sprintf((char*)ShmOCPP16DataPH->SignedUpdateFirmware.firmware.signingCertificate, "%s", json_object_get_string(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "signingCertificate")));
		sprintf((char*)ShmOCPP16DataPH->SignedUpdateFirmware.firmware.signature, "%s", json_object_get_string(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "signature")));
	}
	json_object_put(SignedUpdateFirmware);

	/*
	 * 	TODO:	Upgrade firmware process
	 */
	ShmOCPP16DataPH->MsMsg.bits.SignedUpdateFirmwareReq = 1;
	DEBUG_INFO("retries: %d\n", ShmOCPP16DataPH->SignedUpdateFirmware.retries);
	DEBUG_INFO("retryInterval: %d\n", ShmOCPP16DataPH->SignedUpdateFirmware.retryInterval);
	DEBUG_INFO("requestId: %d\n", ShmOCPP16DataPH->SignedUpdateFirmware.requestId);
	DEBUG_INFO("location: %s\n", ShmOCPP16DataPH->SignedUpdateFirmware.firmware.location);
	DEBUG_INFO("retrieveDateTime: %s\n", ShmOCPP16DataPH->SignedUpdateFirmware.firmware.retrieveDateTime);
	DEBUG_INFO("installDateTime: %s\n", ShmOCPP16DataPH->SignedUpdateFirmware.firmware.installDateTime);
	DEBUG_INFO("signingCertificate: %s\n", ShmOCPP16DataPH->SignedUpdateFirmware.firmware.signingCertificate);
	DEBUG_INFO("signature: %s\n", ShmOCPP16DataPH->SignedUpdateFirmware.firmware.signature);

	sprintf((char*)ShmOCPP16DataPH->SignedUpdateFirmware.Response_status, "Rejected");
	sendInstallCertificateConfirmation(uuid);

	return result;
}

int handleUnknownRequest(char *uuid, char *payload)
{
	mtrace();
	int result = PASS;
	DEBUG_INFO("handleUnknownRequest...\n");

	sendUnknownConfirmation(uuid);
	result = PASS;

	return result;
}

//==========================================
// Handle server response routine
//==========================================
void handleAuthorizeResponse(char *payload, int gun_index)
{
	mtrace();
	char expiryDatestr[36]={0};
	char parentIdTagstr[21]={0};
	char statusstr[20]={0};
	int expiryDateISNULL=FALSE;
	int parentIdTagISNULL=FALSE;

	DEBUG_INFO("handleAuthorizeResponse...\n");
	json_object *Authorize;
	Authorize = json_tokener_parse(payload);

	if(!is_error(Authorize))
	{
		if(json_object_object_get(Authorize, "idTagInfo") != NULL)
		{
			// Required data
			sprintf((char *)statusstr, "%s", json_object_get_string(json_object_object_get(json_object_object_get(Authorize,"idTagInfo"), "status")));

			// Optional data
			if(json_object_object_get(json_object_object_get(Authorize,"idTagInfo"), "expiryDate") != NULL)
				sprintf((char *)expiryDatestr, "%s", json_object_get_string(json_object_object_get(json_object_object_get(Authorize,"idTagInfo"), "expiryDate")));

			if(json_object_object_get(json_object_object_get(Authorize,"idTagInfo"), "parentIdTag") != NULL)
				sprintf((char *)parentIdTagstr, "%s", json_object_get_string(json_object_object_get(json_object_object_get(Authorize,"idTagInfo"), "parentIdTag")));
		}
	}
	json_object_put(Authorize);


	if(expiryDateISNULL == FALSE)
		strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.ExpiryDate, expiryDatestr);

	if(parentIdTagISNULL == FALSE)
		strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.ParentIdTag, parentIdTagstr);

	strcpy((char *)ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.Status, statusstr);

	//Update idTag information to authorization cache if supproted
	if((strcmp((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "TRUE") == 0) &&  (ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.ParentIdTag != NULL) && (ShmOCPP16DataPH->Authorize.ResponseIdTagInfo.ExpiryDate != NULL) )
	{
		OCPP_addLocalCache((char*)ShmOCPP16DataPH->Authorize.IdTag, parentIdTagstr, expiryDatestr, statusstr);
	}

	ShmOCPP16DataPH->SpMsg.bits.AuthorizeReq = 0;
	ShmOCPP16DataPH->SpMsg.bits.AuthorizeConf = 1; // inform csu
	authorizeRetryTimes = 0;
}

void handleBootNotificationResponse(char *payload, int gun_index)
{
	mtrace();
	char statusStr[12]={0};
	char currentTimeStr[30]={0};
	int intervalInt = 0;

	DEBUG_INFO("handleBootNotificationResponse...\n");

	json_object *BootNotification;
	BootNotification = json_tokener_parse(payload);
	if(!is_error(BootNotification))
	{
		// Required data
		sprintf((char *)currentTimeStr, "%s", json_object_get_string(json_object_object_get(BootNotification,"currentTime")));
		intervalInt = json_object_get_int(json_object_object_get(BootNotification,"interval"));
		sprintf((char *)statusStr, "%s", json_object_get_string(json_object_object_get(BootNotification,"status")));
	}
	json_object_put(BootNotification);

	ShmOCPP16DataPH->BootNotification.ResponseHeartbeatInterval = intervalInt;
	BootNotificationInterval = intervalInt;

	//write back to ShmOCPP16DataPH->BootNotification
	strcpy((char *)ShmOCPP16DataPH->BootNotification.ResponseCurrentTime, currentTimeStr);
	ShmOCPP16DataPH->BootNotification.ResponseHeartbeatInterval = intervalInt;
	strcpy((char *)ShmOCPP16DataPH->BootNotification.ResponseStatus, statusStr);

	if((strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Accepted]) == 0 ))
	{
		BootNotificationInterval = 0;
		if((intervalInt == 0) || (intervalInt >= 10))
		{
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "%d", intervalInt);
			HeartBeatWaitTime = intervalInt;
			DEBUG_INFO("BootNotificationResponse setting interval to %d...\n",intervalInt);
		}

		server_sign = TRUE;
		server_pending =FALSE;
	}
	else if(strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Pending]) == 0)
	{
		server_pending = TRUE;
	}
	//syncDateTimeRTC(ShmOCPP16DataPH->BootNotification.ResponseCurrentTime);

	srand(time(NULL));
	refreshStartTimer(&clientTime.Heartbeat);
	clientTime.Heartbeat.tv_sec -= (ShmOCPP16DataPH->BootNotification.ResponseHeartbeatInterval-((rand()%8)+3));

	SetOcppConnStatus(TRUE);
	ShmOCPP16DataPH->SpMsg.bits.BootNotificationConf = 1;
}

void handleDataTransferResponse(char *payload, int gun_index)
{
	json_object *DataTransfer = json_tokener_parse(payload);

	if(!is_error(DataTransfer))
	{
		// Required data
		DEBUG_INFO("Status: %s.\n", json_object_get_string(json_object_object_get(DataTransfer, "status")));

		// Optional data
		if(json_object_object_get(DataTransfer, "data") != NULL)
		{
			DEBUG_INFO("Data: %s\n", json_object_get_string(json_object_object_get(DataTransfer, "data")));
			json_object *Data = json_tokener_parse(json_object_get_string(json_object_object_get(DataTransfer, "data")));

			if(!is_error(Data))
			{
				if(json_object_object_get(Data, "msgId") != NULL)
				{
					if(strstr(json_object_get_string(json_object_object_get(Data, "msgId")), "ID_CreditDeductResult") != NULL)
					{
						OCPP_update_deduct_info(json_object_get_int(json_object_object_get(Data, "txId")), (char*)json_object_get_string(json_object_object_get(Data, "creditNo")));
					}
				}
			}
			json_object_put(Data);
		}
	}
	json_object_put(DataTransfer);
}

void handleDiagnosticsStatusNotificationResponse(char *payload, int gun_index)
{
	DEBUG_INFO("handleDiagnosticsStatusNotificationResponse ...\n");
	//struct json_object *obj;
//	obj = json_tokener_parse(payload);
	ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 0;
	ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationConf = 1;
	//No fields are defined.
}

void handleFirmwareStatusNotificationResponse(char *payload, int gun_index)
{
	DEBUG_INFO("handleFirmwareStatusNotificationResponse ...\n");
	//struct json_object *obj;
//	obj = json_tokener_parse(payload);
	ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationReq = 0;
	ShmOCPP16DataPH->SpMsg.bits.FirmwareStatusNotificationConf = 1;

	//No fields are defined.
}

void handleHeartbeatResponse(char *payload, int gun_index)
{
	mtrace();

	DEBUG_INFO("handleHeartbeatResponse...\n");
	json_object *Heartbeat;
	Heartbeat = json_tokener_parse(payload);
	if(!is_error(Heartbeat))
	{
		// Required data
		sprintf((char *)ShmOCPP16DataPH->Heartbeat.ResponseCurrentTime, "%s", json_object_get_string(json_object_object_get(Heartbeat,"currentTime")));

	}
	json_object_put(Heartbeat);

	if(FirstHeartBeat == 0)
	{
		FirstHeartBeat = 1;
		DEBUG_INFO("FirstHeartBeat \n");
	}
	HeartBeatWithNOResponse = 0;
	refreshStartTimer(&clientTime.Heartbeat);

	//syncDateTimeRTC(ShmOCPP16DataPH->Heartbeat.ResponseCurrentTime);
}

void handleMeterValuesResponse(char *payload, int gun_index)
{
	mtrace();
	DEBUG_INFO("handleMeterValuesResponse...\n");
	isQueueSendable = 1;
}

void handleStartTransactionResponse(char *payload, int gun_index)
{
	mtrace();
	//int transactionIdInt = 0;
	FILE *outfile;
	char data[100]={0};

	DEBUG_INFO("handleStartTransactionResponse...\n");

	json_object *StartTransaction;
	StartTransaction = json_tokener_parse(payload);

	if(!is_error(StartTransaction))
	{
		// Required data
		sprintf((char *)ShmOCPP16DataPH->StartTransaction[gun_index].ResponseIdTagInfo.Status, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StartTransaction,"idTagInfo"), "status")));
		ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId  = json_object_get_int(json_object_object_get(StartTransaction,"transactionId"));

		// Optional data
		if(json_object_object_get(json_object_object_get(StartTransaction,"idTagInfo"), "expiryDate") != NULL)
			sprintf((char *)ShmOCPP16DataPH->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StartTransaction,"idTagInfo"), "expiryDate")));

		if(json_object_object_get(json_object_object_get(StartTransaction,"idTagInfo"), "parentIdTag") != NULL)
			sprintf((char *)ShmOCPP16DataPH->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StartTransaction,"idTagInfo"), "parentIdTag")));
	}
	json_object_put(StartTransaction);

	isQueueSendable = 1;
	ShmOCPP16DataPH->CpMsg.bits[gun_index].StartTransactionConf = 1;
	ShmOCPP16DataPH->CpMsg.bits[gun_index].StartTransactionReq = 0;

	//-----------Start : write to the Queue TransactionId file -----------------//
	if((access("/Storage/OCPP_PH/QueueTransactionId",F_OK))!=-1)
	{}
	else
	{
		FILE *log = fopen("/Storage/OCPP_PH/QueueTransactionId", "w+");

		if(log == NULL)
		{
			DEBUG_INFO("Can't Create File QueueTransactionId \n");
			return ;
		}
		else
		{
			fclose(log);
		}
	}

	// open file for writing
	//-------------Start:  write to the Queue TransactionId file------------------------------------------//
	if((ShmOCPP16DataPH->StartTransaction[gun_index].ConnectorId !=0)&&(strcmp((const char *)ShmOCPP16DataPH->StartTransaction[gun_index].IdTag,"")!=0)&&(ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId !=0))
	{
		outfile = fopen ("/Storage/OCPP_PH/QueueTransactionId", "a");
		sprintf(data,"%d,%s,%d\n", ShmOCPP16DataPH->StartTransaction[gun_index].ConnectorId , ShmOCPP16DataPH->StartTransaction[gun_index].IdTag, ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId);  // GunIndex, idtag, TransactionId
		fputs(data, outfile);
		fclose (outfile);
	}

	DEBUG_INFO("idTagInfo-expiryDate: %s\n", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate);
	DEBUG_INFO("idTagInfo-parentIdTag: %s\n", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag);
	DEBUG_INFO("idTagInfo-status: %s\n", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseIdTagInfo.Status);
	DEBUG_INFO("transactionId: %d\n", ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId);
	system("/bin/fsync -d /dev/mtdblock13;/bin/sync &");
}

void handleStatusNotificationResponse(char *payload, int gun_index)
{
	mtrace();
	DEBUG_INFO("handleStatusNotificationResponse...\n");

	//cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq = 0;
	//cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
	cpinitateMsg.bits[gun_index].StatusNotificationConf = 1;

}

void handleStopTransactionnResponse(char *payload, int gun_index)
{
	mtrace();
	DEBUG_INFO("handleStopTransactionnResponse...\n");
	json_object *StopTransaction;
	StopTransaction = json_tokener_parse(payload);

	if(!is_error(StopTransaction))
	{
		// Optional data
		if(json_object_object_get(StopTransaction, "idTagInfo") != NULL)
		{
			sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].ResponseIdTagInfo.Status, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StopTransaction,"idTagInfo"), "status")));

			if(json_object_object_get(json_object_object_get(StopTransaction,"idTagInfo"), "expiryDate") != NULL)
				sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StopTransaction,"idTagInfo"), "expiryDate")));

			if(json_object_object_get(json_object_object_get(StopTransaction,"idTagInfo"), "parentIdTag") != NULL)
				sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StopTransaction,"idTagInfo"), "parentIdTag")));
		}
	}
	json_object_put(StopTransaction);

	isQueueSendable = 1;
	ShmOCPP16DataPH->CpMsg.bits[gun_index].StopTransactionConf = 1;
	ShmOCPP16DataPH->CpMsg.bits[gun_index].StopTransactionReq = 0;

	DEBUG_INFO("idTagInfo-expiryDate: %s\n", ShmOCPP16DataPH->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate);
	DEBUG_INFO("idTagInfo-parentIdTag: %s\n", ShmOCPP16DataPH->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag);
	DEBUG_INFO("idTagInfo-status: %s\n", ShmOCPP16DataPH->StopTransaction[gun_index].ResponseIdTagInfo.Status);
	SetTransactionIdZero(queueOpInfo.stopTransactionId);
}

void handleLogStatusNotificationResponse(char *payload, int gun_index)
{
	mtrace();
	DEBUG_INFO("handleLogStatusNotificationResponse...\n");
	ShmOCPP16DataPH->SpMsg.bits.LogStatusNotificationConf = 1;
}

void handleSecurityEventNotificationResponse(char *payload, int gun_index)
{
	mtrace();
	DEBUG_INFO("handleSecurityEventNotificationResponse...\n");
	ShmOCPP16DataPH->SpMsg.bits.SecurityEventNotificationConf = 1;
}

void handleSignCertificateResponse(char *payload, int gun_index)
{
	mtrace();
	DEBUG_INFO("handleSignCertificateResponse...\n");
	json_object *SignCertificate;
	SignCertificate = json_tokener_parse(payload);

	if(!is_error(SignCertificate))
	{
		sprintf((char*)ShmOCPP16DataPH->SignCertificate.Response_status, "%s", json_object_get_string(json_object_object_get(SignCertificate, "status")));
		DEBUG_INFO("status: %s\n", ShmOCPP16DataPH->SignCertificate.Response_status);
	}
	json_object_put(SignCertificate);

	ShmOCPP16DataPH->SpMsg.bits.SignCertificateConf = 1;
}

void handleSignedFirmwareStatusNotificationResponse(char *payload, int gun_index)
{
	mtrace();
	DEBUG_INFO("handleSignedFirmwareStatusNotificationResponse...\n");
	ShmOCPP16DataPH->SpMsg.bits.SignedFirmwareStatusNotificationConf = 1;
}

//==========================================
// Handle Error routine
//==========================================
void handleError(char *id, char *errorCode, char *errorDescription,char *payload)
{
	mtrace();
	#ifdef SystemLogMessage
	DEBUG_INFO("errorCode: %s\n", errorCode);

	DEBUG_INFO("errorDescription: %s\n", errorDescription);

	DEBUG_INFO("errorDetails: %s\n", payload);
	#endif

}

//===============================================
// Common routine
//===============================================
int initialConfigurationTable(void)
{
	//clock_t start_t, end_t, total_t;
	FILE *fp;
	FILE *outfile;
	char str[512]={0};
	int	confVersion = 20;

	DEBUG_INFO("initialConfigurationTable...version: %d\n", confVersion);
	//start_t = clock();
	//printf("Starting of the program, start_t = %ld\n", start_t);
	memset(&(ShmOCPP16DataPH->ConfigurationTable), 0, sizeof(struct OCPP16ConfigurationTable) );

	// Check configuration file size is correct
	if((access("/Storage/OCPP_PH/OCPPConfiguration",F_OK))!=-1)
	{
		struct stat st;
		stat("/Storage/OCPP_PH/OCPPConfiguration", &st);

		if(st.st_size < 3100)
		{
			system("rm -f /Storage/OCPP_PH/OCPPConfiguration");
			DEBUG_INFO("OCPPConfiguration file size: %d is smaller than 3100 bytes, restore to default value.\n", st.st_size);
		}
	}

	if((access("/Storage/OCPP_PH/OCPPConfiguration",F_OK))==-1)
	{
		outfile = fopen("/Storage/OCPP_PH/OCPPConfiguration" , "w+");
		if(outfile == NULL)
		{
			DEBUG_INFO("Error opening file\n");
			return FALSE;
		}

		/*Core Profile*/
		//AllowOfflineTxForUnknownId
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemName, "AllowOfflineTxForUnknownId");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AllowOfflineTxForUnknownId", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData);

		//AuthorizationCacheEnabled
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemName, "AuthorizationCacheEnabled");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizationCacheEnabled", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData);

		//AuthorizeRemoteTxRequests
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemName, "AuthorizeRemoteTxRequests");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizeRemoteTxRequests", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData);

		//BlinkRepeat
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemName, "BlinkRepeat");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "0" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","BlinkRepeat", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData);

		//ClockAlignedDataInterval
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemName, "ClockAlignedDataInterval");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "0" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ClockAlignedDataInterval", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData);

		//ConnectionTimeOut
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemName, "ConnectionTimeOut");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "180" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectionTimeOut", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData);

		//GetConfigurationMaxKeys
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility =0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemName, "GetConfigurationMaxKeys");
		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "%d", _GetConfiguration_CNT);

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","GetConfigurationMaxKeys", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData);

		// HeartbeatInterval
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemName, "HeartbeatInterval");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "20" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","HeartbeatInterval", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData);

		// LightIntensity
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemName, "LightIntensity");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "0" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LightIntensity", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemData);


		// LocalAuthorizeOffline
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemName, "LocalAuthorizeOffline");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthorizeOffline", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData);

		// LocalPreAuthorize
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemName, "LocalPreAuthorize");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalPreAuthorize", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData);

		// MaxEnergyOnInvalidId
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemName, "MaxEnergyOnInvalidId");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "0" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaxEnergyOnInvalidId", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData);

		// MeterValuesAlignedData
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemName, "MeterValuesAlignedData");

		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "Current.Import,Energy.Active.Import.Register,Energy.Active.Import.Interval,Power.Active.Import,Voltage,SoC,Current.Offered,Power.Offered" );
		else
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "Current.Import,Energy.Active.Import.Register,Energy.Active.Import.Interval,Power.Active.Import,Voltage,Current.Offered" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesAlignedData", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData);

		// MeterValuesAlignedDataMaxLength
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemName, "MeterValuesAlignedDataMaxLength");
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "8" );
		else
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "10" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesAlignedDataMaxLength", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData);


		// MeterValuesSampledData
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemName, "MeterValuesSampledData");
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "Current.Import,Energy.Active.Import.Register,Energy.Active.Import.Interval,Power.Active.Import,Voltage,SoC,Current.Offered,Power.Offered" );
		else
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "Current.Import,Energy.Active.Import.Register,Energy.Active.Import.Interval,Power.Active.Import,Voltage,Current.Offered" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesSampledData", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData);


		// MeterValuesSampledDataMaxLength
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemName, "MeterValuesSampledDataMaxLength");
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "8" );
		else
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "10" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesSampledDataMaxLength", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData);

		// MeterValueSampleInterval
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemName, "MeterValueSampleInterval");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "30" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValueSampleInterval", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData);

		// MinimumStatusDuration
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemName, "MinimumStatusDuration");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "120" );
		server_cycle_Status = atoi((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData); //StatusNotification cycle
		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MinimumStatusDuration", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData);

		// NumberOfConnectors
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemName, "NumberOfConnectors");
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
		{
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY));
		}
		else
		{
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", AC_QUANTITY);
		}

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","NumberOfConnectors", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData);

		// ResetRetries
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemName, "ResetRetries");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "3" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ResetRetries", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemData);

		// ConnectorPhaseRotation
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemName, "ConnectorPhaseRotation");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "NotApplicable" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorPhaseRotation", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData);

		// ConnectorPhaseRotationMaxLength
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemName, "ConnectorPhaseRotationMaxLength");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "1" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorPhaseRotationMaxLength", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData);

		// StopTransactionOnEVSideDisconnect
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemName, "StopTransactionOnEVSideDisconnect");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "TRUE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTransactionOnEVSideDisconnect", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData);

		// StopTransactionOnInvalidId
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility = 1; //1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemName, "StopTransactionOnInvalidId");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTransactionOnInvalidId", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData);

		// StopTxnAlignedData
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemName, "StopTxnAlignedData");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnAlignedData", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData);

		// StopTxnAlignedDataMaxLength
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemName, "StopTxnAlignedDataMaxLength");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "0" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnAlignedDataMaxLength", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData);

		// StopTxnSampledData
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemName, "StopTxnSampledData");
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import,Energy.Active.Import.Interval,Power.Active.Import,Voltage,SoC" );
		else
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import,Energy.Active.Import.Interval,Power.Active.Import,Voltage" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnSampledData", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData);

		// StopTxnSampledDataMaxLength
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemName, "StopTxnSampledDataMaxLength");
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
		{
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "%d", 7);
		}
		else
		{
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "%d", 9);
		}

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnSampledDataMaxLength", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData);

		// SupportedFeatureProfiles
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemName, "SupportedFeatureProfiles");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "Core,FirmwareManagement,LocalAuthListManagement,Reservation,SmartCharging,RemoteTrigger" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SupportedFeatureProfiles", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData);

		// SupportedFeatureProfilesMaxLength
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemName, "SupportedFeatureProfilesMaxLength");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "6" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SupportedFeatureProfilesMaxLength", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData);

		// TransactionMessageAttempts
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemName, "TransactionMessageAttempts");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "3" );
		TransactionMessageAttemptsValue = atoi((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData);

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TransactionMessageAttempts", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData);

		// TransactionMessageRetryInterval
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemName, "TransactionMessageRetryInterval");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "60" );
		TransactionMessageRetryIntervalValue = atoi((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TransactionMessageRetryInterval", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);

		// UnlockConnectorOnEVSideDisconnect
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemName, "UnlockConnectorOnEVSideDisconnect");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "TRUE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","UnlockConnectorOnEVSideDisconnect", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData);


		// WebSocketPingInterval
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemName, "WebSocketPingInterval");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "30" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","WebSocketPingInterval", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData);

		// QueueOffLineMeterValues
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemName, "QueueOffLineMeterValues");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","QueueOffLineMeterValues", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData);

		// AuthorizationKey
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemName, "AuthorizationKey");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, (char*)ShmSysConfigAndInfo->SysConfig.MaintainServerSecurityPassword );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizationKey", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData);

		// SecurityProfile
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemName, "SecurityProfile");
		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "%d", ShmSysConfigAndInfo->SysConfig.MaintainServerSecurityProfile );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SecurityProfile", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemData);

		// DefaultPrice
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemName, "DefaultPrice");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemData, "" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","DefaultPrice", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemData);

		// CustomDisplayCostAndPrice
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemName, "CustomDisplayCostAndPrice");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CustomDisplayCostAndPrice", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData);

		// CustomIdleFeeAfterStop
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemName, "CustomIdleFeeAfterStop");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CustomIdleFeeAfterStop", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData);

		// SystemUptimeSec
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemName, "SystemUptimeSec");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData, "0" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SystemUptimeSec", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData);

		// FreeVend
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemName, "FreeVend");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemData, (ShmSysConfigAndInfo->SysConfig.AuthorisationMode?"TRUE":"FALSE") );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","FreeVend", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemData);

		// FreeVendIdtag
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemName, "FreeVendIdtag");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData, "FreeVendIdtag" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","FreeVendIdtag", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData);

		// OcppServer
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemName, "OcppServer");
		memcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemData, (char*)ShmSysConfigAndInfo->SysConfig.OcppServerURL, 500);

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OcppServer", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemData);

		// MaintainServer
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemName, "MaintainServer");
		memcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemData, (char*)ShmSysConfigAndInfo->SysConfig.MaintainServerURL, 500);

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaintainServer", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemData);

		// StatusNotificationPeriodically
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemName, "StatusNotificationPeriodically");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StatusNotificationPeriodically", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData);

		// StatusNotificationInterval
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemName, "StatusNotificationInterval");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData, "120" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StatusNotificationInterval", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData);

		// isEnableLocalPowerSharing
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemName, "isEnableLocalPowerSharing");
		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData, "%d", ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharing);

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","isEnableLocalPowerSharing", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData);

		// PowerSharingServerIP
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemName, "PowerSharingServerIP");
		memcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData, (char*)ShmSysConfigAndInfo->SysConfig.PowerSharingServerIP, 500);

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","PowerSharingServerIP", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData);

		// EVCCID_PREFIX
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemName, "EVCCID_PREFIX");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData, "" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","EVCCID_PREFIX", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData);

		// OffLineMaxChargingPower
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemName, "OffLineMaxChargingPower");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData, "0" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OffLineMaxChargingPower", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData);

		// Configuration Version
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemName, "ConfigurationVersion");
		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData, "%d", confVersion);

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConfigurationVersion", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData);

		// Charging profile refresh interval
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemName, "CharingProfileRefreshInterval");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData, "30");

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CharingProfileRefreshInterval", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData);

		// Ocpp Software certificated version
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemName, "OcppSoftwareVersion");
		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemData, "%s", "V1.00");

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OcppSoftwareVersion", "true", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemData);

		// Check certificate of download link
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemName, "AuthDownloadlinkCertificate");
		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemData, "%s", "FALSE");

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthDownloadlinkCertificate", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemData);

		// RFID endian type
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemName, "RfidEndianType");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemData, (ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian==1?"BIG":"LITTLE"));

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","RfidEndianType", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemData);

		// Authorization timeout
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemName, "AuthorizeTimeout");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemData, "15");

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizeTimeout", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemData);

		// Enable AC charger CCS function
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemName, "Enable15118");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemData, (ShmSysConfigAndInfo->SysConfig.isEnable15118==1?"TRUE":"FALSE"));

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","Enable15118", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemData);

		// Wifi SSID
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemName, "WifiSsid");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemData, (char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","WifiSsid", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemData);

		// Wifi password
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemName, "WifiPassword");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemData, (char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","WifiPassword", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemData);

		// Stop Charging By Button
		ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemAccessibility = 1;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemName, "StopChargingByButton");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemData, (ShmSysConfigAndInfo->SysConfig.StopChargingByButton==1?"TRUE":"FALSE"));

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopChargingByButton", "false", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemData);

		//* Local Auth List Management Profile*/
		#if 0
			//For OCTT Test Case
			ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1;
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthorizationListEnabled");
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" );
		#endif

		#if 1
			//LocalAuthListEnabled
			ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1;
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthListEnabled");
			strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" );
			fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthListEnabled", "false", ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);
		#endif

		//LocalAuthListMaxLength
		ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemName, "LocalAuthListMaxLength");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "100000" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthListMaxLength", "true", ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData);

		//SendLocalListMaxLength
		ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemName, "SendLocalListMaxLength");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "1000" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SendLocalListMaxLength", "true", ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData);


		//ReserveConnectorZeroSupported
		ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemName, "ReserveConnectorZeroSupported");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ReserveConnectorZeroSupported", "true", ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData);

		//*  Smart Charging Profile */
		//ChargeProfileMaxStackLevel
		ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemName, "ChargeProfileMaxStackLevel");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "8" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargeProfileMaxStackLevel", "true", ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData);

		// ChargingScheduleAllowedChargingRateUnit
		ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemName, "ChargingScheduleAllowedChargingRateUnit");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "Current,Power" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargingScheduleAllowedChargingRateUnit", "true", ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData);


		// ChargingScheduleMaxPeriods
		ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemName, "ChargingScheduleMaxPeriods");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "10" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargingScheduleMaxPeriods", "true", ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData);

		// ConnectorSwitch3to1PhaseSupported
		ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemName, "ConnectorSwitch3to1PhaseSupported");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "FALSE" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorSwitch3to1PhaseSupported", "true", ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData);

		// MaxChargingProfilesInstalled
		ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility = 0;
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemName, "MaxChargingProfilesInstalled");
		strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "50" );

		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaxChargingProfilesInstalled", "true", ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData);

		fclose(outfile);
	}
	else
	{
		//DEBUG_INFO("../Storage/OCPP_PH/OCPPConfiguration    EXit\n");
		char keystr[60]={0};
		char readonlystr[10]={0};
		char valuestr[256]={0};
		fp = fopen("/Storage/OCPP_PH/OCPPConfiguration" , "r");
		if(fp == NULL) {
			DEBUG_INFO("Error opening file");
			return FALSE;
		}

		while( fgets (str, ARRAY_SIZE(str), fp)!=NULL )
		{
			//DEBUG_INFO("Get Configuration \n");
			if(strlen(str) > 0)
			{
				json_object *OCPPConfiguration;
				OCPPConfiguration = json_tokener_parse(str);

				if(json_object_object_get(OCPPConfiguration, "key") != NULL)
					strcpy(keystr, json_object_get_string(json_object_object_get(OCPPConfiguration,"key")));
				if(json_object_object_get(OCPPConfiguration, "readonly") != NULL)
					strcpy(readonlystr, json_object_get_string(json_object_object_get(OCPPConfiguration,"readonly")));
				if(json_object_object_get(OCPPConfiguration, "value") != NULL)
					strcpy(valuestr, json_object_get_string(json_object_object_get(OCPPConfiguration,"value")));

				json_object_put(OCPPConfiguration);

	//			DEBUG_INFO("keystr=%s\n",keystr);
	//			DEBUG_INFO("readonlystr=%s\n",readonlystr);
	//			DEBUG_INFO("valuestr=%s\n",valuestr);

				if(strcmp(keystr, "AllowOfflineTxForUnknownId") == 0)
				{
					//Charger.AllowOfflineTxForUnknownId = (value.toLowerCase().equals("true")?true:false);
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "%s", valuestr );
	//			    DEBUG_INFO("AllowOfflineTxForUnknownId setting\n");
	//			    DEBUG_INFO("AllowOfflineTxForUnknownId setting\n");
				}

				if(strcmp(keystr, "AuthorizationCacheEnabled") == 0)
				{
					//Charger.AuthorizationCacheEnabled = (value.toLowerCase().equals("true")?true:false);
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "AuthorizeRemoteTxRequests") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "BlinkRepeat") == 0)
				{
					//Charger.BlinkRepeat = Integer.parseInt(value);
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "ClockAlignedDataInterval") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "ConnectionTimeOut") == 0 )
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "%d", atoi(valuestr));
				}

				if(strcmp(keystr, "GetConfigurationMaxKeys") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "%d", (atoi(valuestr)!=GetConfigurationMaxKeysNUM?GetConfigurationMaxKeysNUM:atoi(valuestr)));
				}

				if(strcmp(keystr, "HeartbeatInterval") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "%d", atoi(valuestr));
					HeartBeatWaitTime = atoi(valuestr);
				}

				if(strcmp(keystr, "LightIntensity") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "%d", atoi(valuestr));
				}

				if(strcmp(keystr, "LocalAuthorizeOffline") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "LocalPreAuthorize") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "MaxEnergyOnInvalidId") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "MeterValuesAlignedData") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "MeterValuesAlignedDataMaxLength") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "%d", atoi(valuestr));
				}

				if(strcmp(keystr, "MeterValuesSampledData") == 0 )
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "MeterValuesSampledDataMaxLength") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "%d", atoi(valuestr));
				}


				if(strcmp(keystr, "MeterValueSampleInterval") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "%d", atoi(valuestr));
				}

				if(strcmp(keystr, "MinimumStatusDuration") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "%d", atoi(valuestr) );
					server_cycle_Status = atoi(valuestr); //StatusNotification cycle
				}

				if(strcmp(keystr, "NumberOfConnectors") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "ResetRetries") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "ConnectorPhaseRotation") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "ConnectorPhaseRotationMaxLength") == 0)
				{
					 ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					 sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "StopTransactionOnEVSideDisconnect") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "StopTransactionOnInvalidId") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "%s", valuestr );
				}


				if(strcmp(keystr, "StopTxnAlignedData") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "StopTxnAlignedDataMaxLength") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "StopTxnSampledData") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "StopTxnSampledDataMaxLength") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "SupportedFeatureProfiles") == 0)
				{
					 ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					 sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "SupportedFeatureProfilesMaxLength") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "TransactionMessageAttempts") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "%d", atoi(valuestr) );
					TransactionMessageAttemptsValue = atoi(valuestr);
				}

				if(strcmp(keystr, "TransactionMessageRetryInterval") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility= (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "%d", atoi(valuestr) );
					TransactionMessageRetryIntervalValue = atoi(valuestr);
				}

				if(strcmp(keystr, "UnlockConnectorOnEVSideDisconnect") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "WebSocketPingInterval") == 0)
				{
					 ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					 sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "QueueOffLineMeterValues") == 0)
				{
					 ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					 sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "AuthorizationKey") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					//sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, "%s", valuestr);
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, "%s", ShmSysConfigAndInfo->SysConfig.MaintainServerSecurityPassword);
				}

				if(strcmp(keystr, "SecurityProfile") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					//sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "%d", atoi(valuestr) );
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "%d", ShmSysConfigAndInfo->SysConfig.MaintainServerSecurityProfile );
				}

				if(strcmp(keystr, "DefaultPrice") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "CustomDisplayCostAndPrice") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "CustomIdleFeeAfterStop") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "SystemUptimeSec") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData, "%d", atoi(valuestr));
				}

				if(strcmp(keystr, "FreeVend") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemData, "%s", (ShmSysConfigAndInfo->SysConfig.AuthorisationMode ? "TRUE" : "FALSE"));
				}

				if(strcmp(keystr, "FreeVendIdtag") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "OcppServer") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					memcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemData, (char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL, 500);
				}

				if(strcmp(keystr, "MaintainServer") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					memcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemData, (char *)ShmSysConfigAndInfo->SysConfig.MaintainServerURL,500);
				}

				if(strcmp(keystr, "StatusNotificationPeriodically") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "StatusNotificationInterval") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData, "%d", atoi(valuestr));
				}

				if(strcmp(keystr, "isEnableLocalPowerSharing") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData, "%d", ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharing);
				}

				if(strcmp(keystr, "PowerSharingServerIP") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					memcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData, (char *)ShmSysConfigAndInfo->SysConfig.PowerSharingServerIP,500);
				}

				if(strcmp(keystr, "EVCCID_PREFIX") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "OffLineMaxChargingPower") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "ConfigurationVersion") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData, "%d", atoi(valuestr));
				}

				if(strcmp(keystr, "CharingProfileRefreshInterval") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "OcppSoftwareVersion") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "AuthDownloadlinkCertificate") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "RfidEndianType") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemData, "%s", (ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian==1?"BIG":"LITTLE"));
				}

				if(strcmp(keystr, "AuthorizeTimeout") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "Enable15118") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemData, "%s", (ShmSysConfigAndInfo->SysConfig.isEnable15118==1?"TRUE":"FALSE"));
				}

				if(strcmp(keystr, "WifiSsid") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemData, "%s", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
				}

				if(strcmp(keystr, "WifiPassword") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemData, "%s", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
				}

				if(strcmp(keystr, "StopChargingByButton") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemData, "%s", (ShmSysConfigAndInfo->SysConfig.StopChargingByButton==1?"TRUE":"FALSE"));
				}

				if(strcmp(keystr, "LocalAuthListEnabled") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "LocalAuthListMaxLength") == 0)
				{
					 ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					  sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "SendLocalListMaxLength") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "ReserveConnectorZeroSupported") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "ChargeProfileMaxStackLevel") == 0)
				{
					 ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility  = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					 sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "ChargingScheduleAllowedChargingRateUnit") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "%s", valuestr );
				}

				if(strcmp(keystr, "ChargingScheduleMaxPeriods") == 0)
				{
					ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "%d", atoi(valuestr) );
				}

				if(strcmp(keystr, "ConnectorSwitch3to1PhaseSupported") == 0)
				{
					 ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					 sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "%s", valuestr);
				}

				if(strcmp(keystr, "MaxChargingProfilesInstalled") == 0)
				{
					 ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1;
					 sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "%d", atoi(valuestr) );
				}
			}
		}

		fclose(fp);
	}

	if(atoi((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData) == confVersion)
	{
		return PASS;
	}
	else
	{
		return FAIL;
	}
}

void StoreConfigurationTable(void)
{
	FILE *outfile;
	outfile = fopen("/Storage/OCPP_PH/OCPPConfiguration" , "w+");
	if(outfile == NULL)
	{
		DEBUG_INFO("Error opening file");
		return ;
	}

	/*Core Profile*/
	//AllowOfflineTxForUnknownId
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility = 1;
	printf("AllowoddlineTXForUnknownId type: %d  \n", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility);
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemName, "AllowOfflineTxForUnknownId");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "TRUE" );
    */

	//DEBUG_INFO("data=%s\n",data);
	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AllowOfflineTxForUnknownId", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData);

	//AuthorizationCacheEnabled
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemName, "AuthorizationCacheEnabled");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "FALSE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizationCacheEnabled", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData);

	//AuthorizeRemoteTxRequests
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemName, "AuthorizeRemoteTxRequests");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "TRUE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizeRemoteTxRequests", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData);

	//BlinkRepeat
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemName, "BlinkRepeat");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "0" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","BlinkRepeat", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData);

	//ClockAlignedDataInterval
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemName, "ClockAlignedDataInterval");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "0" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ClockAlignedDataInterval", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData);

	//ConnectionTimeOut
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemName, "ConnectionTimeOut");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "180" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectionTimeOut", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData);

	//GetConfigurationMaxKeys
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility =0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemName, "GetConfigurationMaxKeys");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "43" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","GetConfigurationMaxKeys", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData);

	// HeartbeatInterval
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemName, "HeartbeatInterval");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "10" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","HeartbeatInterval", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData);

	// LightIntensity
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemName, "LightIntensity");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "0" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LightIntensity", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemData);

	// LocalAuthorizeOffline
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemName, "LocalAuthorizeOffline");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthorizeOffline", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData);

	// LocalPreAuthorize
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemName, "LocalPreAuthorize");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "FALSE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalPreAuthorize", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData);

	// MaxEnergyOnInvalidId
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemName, "MaxEnergyOnInvalidId");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "0" );
	*/
	//ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = 0;

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaxEnergyOnInvalidId", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData);

	// MeterValuesAlignedData
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemName, "MeterValuesAlignedData");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "Current.Export,Energy.Active.Export.Interval,Power.Active.Export,Voltage,SOC" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesAlignedData", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData);

	// MeterValuesAlignedDataMaxLength
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemName, "MeterValuesAlignedDataMaxLength");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "5" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesAlignedDataMaxLength", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData);


	// MeterValuesSampledData
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemName, "MeterValuesSampledData");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "Current.Export,Energy.Active.Export.Interval,Power.Active.Export,Voltage,SOC" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesSampledData", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData);


	// MeterValuesSampledDataMaxLength
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemName, "MeterValuesSampledDataMaxLength");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "5" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesSampledDataMaxLength", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData);

	// MeterValueSampleInterval
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemName, "MeterValueSampleInterval");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "10" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValueSampleInterval", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData);

	// MinimumStatusDuration
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemName, "MinimumStatusDuration");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "0" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MinimumStatusDuration", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData);

	// NumberOfConnectors
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemName, "NumberOfConnectors");
	if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
	{
		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY));
	}
	else
	{
		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", AC_QUANTITY);
	}
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","NumberOfConnectors", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData);

	// ResetRetries
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemName, "ResetRetries");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "3" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ResetRetries", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemData);

	// ConnectorPhaseRotation
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemName, "ConnectorPhaseRotation");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "NotApplicable" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorPhaseRotation", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData);

	// ConnectorPhaseRotationMaxLength
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemName, "ConnectorPhaseRotationMaxLength");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "1" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorPhaseRotationMaxLength", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData);

	// StopTransactionOnEVSideDisconnect
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemName, "StopTransactionOnEVSideDisconnect");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "TRUE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTransactionOnEVSideDisconnect", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData);

	// StopTransactionOnInvalidId
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemName, "StopTransactionOnInvalidId");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "FALSE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTransactionOnInvalidId", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData);

	// StopTxnAlignedData
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemName, "StopTxnAlignedData");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "Energy.Active.Import.Register" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnAlignedData", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData);

	// StopTxnAlignedDataMaxLength
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemName, "StopTxnAlignedDataMaxLength");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "0" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnAlignedDataMaxLength", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData);

	// StopTxnSampledData
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemName, "StopTxnSampledData");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Energy.Active.Import.Register" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnSampledData", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData);

	// StopTxnSampledDataMaxLength
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemName, "StopTxnSampledDataMaxLength");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "0" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnSampledDataMaxLength", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData);

	// SupportedFeatureProfiles
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemName, "SupportedFeatureProfiles");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "Core,FirmwareManagement,LocalAuthListManagement,Reservation,SmartCharging,RemoteTrigger" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SupportedFeatureProfiles", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData);

	// SupportedFeatureProfilesMaxLength
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemName, "SupportedFeatureProfilesMaxLength");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "6" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SupportedFeatureProfilesMaxLength", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData);

	// TransactionMessageAttempts
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemName, "TransactionMessageAttempts");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "3" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TransactionMessageAttempts", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData);

	// TransactionMessageRetryInterval
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemName, "TransactionMessageRetryInterval");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "60" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TransactionMessageRetryInterval", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);

	// UnlockConnectorOnEVSideDisconnect
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemName, "UnlockConnectorOnEVSideDisconnect");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "TRUE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","UnlockConnectorOnEVSideDisconnect", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData);


	// WebSocketPingInterval
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemName, "WebSocketPingInterval");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "30" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","WebSocketPingInterval", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData);

	// QueueOffLineMeterValues
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemName, "QueueOffLineMeterValues");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData, "TRUE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","QueueOffLineMeterValues", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData);

	// AuthorizationKey
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemName, "AuthorizationKey");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, "0" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizationKey", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData);

	// SecurityProfile
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemName, "SecurityProfile");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "30" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SecurityProfile", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemData);

	// DefaultPrice
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemName, "DefaultPrice");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemData, "" );
	*/

	json_object *tmp;
	tmp = json_tokener_parse((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemData);
	if(!is_error(tmp))
	{
		DEBUG_INFO("JSON string type\n");
		json_object *target = json_object_new_object();
		json_object_object_add(target, "key", json_object_new_string("DefaultPrice"));
		json_object_object_add(target, "readonly", (ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility?json_object_new_boolean(0):json_object_new_boolean(1)));
		json_object_object_add(target, "value", json_object_new_string((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemData));

	   fprintf(outfile, "%s\n", json_object_to_json_string_ext(target, JSON_C_TO_STRING_PLAIN));
		json_object_put(target);
	}
	else
	{
		DEBUG_INFO("Normal string type\n");
		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","DefaultPrice", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemData);
	}
	json_object_put(tmp);

	// CustomDisplayCostAndPrice
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemName, "CustomDisplayCostAndPrice");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData, "FALSE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CustomDisplayCostAndPrice", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData);

	// CustomIdleFeeAfterStop
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemName, "CustomIdleFeeAfterStop");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData, "FALSE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CustomIdleFeeAfterStop", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData);

	// SystemUptimeSec
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemName, "SystemUptimeSec");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData, "0" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SystemUptimeSec", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData);

	// FreeVend
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemName, "FreeVend");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemData, "FALSE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","FreeVend", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemData);

	// FreeVendIdtag
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemName, "FreeVendIdtag");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData, "FreeVendIdtag" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","FreeVendIdtag", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData);

	// OcppServer
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemName, "OcppServer");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemData, "FALSE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OcppServer", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemData);

	// MaintainServer
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemName, "MaintainServer");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemData, "FALSE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaintainServer", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemData);

	// StatusNotificationPeriodically
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemAccessibility =0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemName, "StatusNotificationPeriodically");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "FALSE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StatusNotificationPeriodically", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData);

	// StatusNotificationInterval
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemName, "StatusNotificationInterval");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData, "120" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StatusNotificationInterval", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData);

	// isEnableLocalPowerSharing
	/*
	ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemName, "isEnableLocalPowerSharing");
	strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData, "0" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","isEnableLocalPowerSharing", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData);

	// PowerSharingServerIP
	/*
	ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemName, "PowerSharingServerIP");
	strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData, "" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","PowerSharingServerIP", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData);

	// EVCCID_PREFIX
	/*
	ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemName, "EVCCID_PREFIX");
	strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData, "" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","EVCCID_PREFIX", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData);

	// OffLineMaxChargingPower
	/*
	ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemName, "OffLineMaxChargingPower");
	strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData, "" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OffLineMaxChargingPower", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData);

	// ConfigurationVersion
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemName, "ConfigurationVersion");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData, "1" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConfigurationVersion", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData);

	// CharingProfileRefreshInterval
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemName, "CharingProfileRefreshInterval");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData, "" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CharingProfileRefreshInterval", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData);

	// OcppSoftwareVersion
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemName, "OcppSoftwareVersion");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemData, "" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OcppSoftwareVersion", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemData);

	// AuthDownloadlinkCertificate
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemName, "AuthDownloadlinkCertificate");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemData, "" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthDownloadlinkCertificate", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemData);

	// RfidEndianType
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemName, "RfidEndianType");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemData, "BIG" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","RfidEndianType", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemData);

	// AuthorizeTimeout
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemName, "AuthorizeTimeout");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemData, "60" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizeTimeout", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemData);

	// Enable15118
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemName, "Enable15118");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemData, "TRUE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","Enable15118", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemData);

	// WifiSsid
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemName, "WifiSsid");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemData, "TRUE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","WifiSsid", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemData);

	// WifiPassword
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemName, "WifiPassword");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemData, "TRUE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","WifiPassword", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemData);

	// StopChargingByButton
	/*
	ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemName, "StopChargingByButton");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemData, "TRUE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopChargingByButton", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemData);


	//* Local Auth List Management Profile*/
	//LocalAuthListEnabled
	/*
	ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthListEnabled");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" );
	*/
	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthListEnabled", "false", (char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);

	//LocalAuthListMaxLength
	/*
	ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemName, "LocalAuthListMaxLength");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "500" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthListMaxLength", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData);

	//SendLocalListMaxLength
	/*
	ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemName, "SendLocalListMaxLength");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "500" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SendLocalListMaxLength", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData);


	//ReserveConnectorZeroSupported
	/*
	ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemName, "ReserveConnectorZeroSupported");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ReserveConnectorZeroSupported", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData);

	//*  Smart Charging Profile */
	//ChargeProfileMaxStackLevel
	/*
	ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemName, "ChargeProfileMaxStackLevel");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "3" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargeProfileMaxStackLevel", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData);

	// ChargingScheduleAllowedChargingRateUnit
	/*
	ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemName, "ChargingScheduleAllowedChargingRateUnit");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "Current" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargingScheduleAllowedChargingRateUnit", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData);

	// ChargingScheduleMaxPeriods
	/*
	ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemName, "ChargingScheduleMaxPeriods");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "10" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargingScheduleMaxPeriods", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData);

	// ConnectorSwitch3to1PhaseSupported
	/*
	ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemName, "ConnectorSwitch3to1PhaseSupported");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "TRUE" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorSwitch3to1PhaseSupported", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData);

	// MaxChargingProfilesInstalled
	/*
	ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility = 0;
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemName, "MaxChargingProfilesInstalled");
	strcpy((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "10" );
	*/

	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaxChargingProfilesInstalled", "true", (char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData);

	fclose(outfile);

	system("/bin/fsync -d /dev/mtdblock13;/bin/sync &");
}

void getKeyValue(char *keyReq)
{
	 int isEmpty = FALSE;
	 int isKnowKey = FALSE;

	 DEBUG_INFO("keyReq = %s\n", keyReq);

	 if((keyReq == NULL) || (strlen(keyReq) == 0))
	     isEmpty = TRUE;

	 if(isEmpty || strcmp(keyReq, "AllowOfflineTxForUnknownId") == 0)
	 {
		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_AllowOfflineTxForUnknownId].Item, "AllowOfflineTxForUnknownId");
		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Key, "AllowOfflineTxForUnknownId");
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1)
		{
			strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "0"/*"FALSE"*/);
		}
		else
		{
			strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "1"/*"TRUE"*/);
		}

		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData );
		isKnowKey = TRUE;
	 }

	 if(isEmpty || strcmp(keyReq, "AuthorizationCacheEnabled") == 0 )
	 {
		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_AuthorizationCacheEnabled].Item, "AuthorizationCacheEnabled");
		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Key, "AuthorizationCacheEnabled");
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1)
		{
			strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "0"/*"FALSE"*/);
		}
		else
		{
			strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "1"/*"TRUE"*/);
		}
		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData );
		isKnowKey = TRUE;
	 }

	 if(isEmpty || strcmp(keyReq, "AuthorizeRemoteTxRequests") == 0 )
	 {
		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_AuthorizeRemoteTxRequests].Item, "AuthorizeRemoteTxRequests");
		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Key, "AuthorizeRemoteTxRequests");

		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1)
		{
			strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "0"/*"FALSE"*/);
		}
		else
		{
			strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "1"/*"TRUE"*/);
		}

		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData );
		isKnowKey = TRUE;
	 }

	  if(isEmpty || strcmp(keyReq, "BlinkRepeat") == 0 )
	  {
		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_BlinkRepeat].Item, "BlinkRepeat");
		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Key, "BlinkRepeat");

		  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1)
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "0"/*"FALSE"*/);
		  }
		  else
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "1"/*"TRUE"*/);
		  }

		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData );
		  isKnowKey = TRUE;
	  }

	   if(isEmpty ||  strcmp(keyReq, "ClockAlignedDataInterval") == 0 )
	   {
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ClockAlignedDataInterval].Item, "ClockAlignedDataInterval");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Key, "ClockAlignedDataInterval");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "1"/*"TRUE"*/);
		   }


		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData );
		   isKnowKey = TRUE;
	   }

	   if(isEmpty ||   strcmp(keyReq, "ConnectionTimeOut") == 0 )
	   {
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ConnectionTimeOut].Item, "ConnectionTimeOut");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Key, "ConnectionTimeOut");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "1"/*"TRUE"*/);
		   }


		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData );
		   isKnowKey = TRUE;
	   }

	   if(isEmpty ||  strcmp(keyReq, "GetConfigurationMaxKeys") == 0 )
	   {

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_GetConfigurationMaxKeys].Item, "GetConfigurationMaxKeys");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Key, "GetConfigurationMaxKeys");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "1"/*"TRUE"*/);
		   }

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData );
		   isKnowKey = TRUE;
	   }

	   if(isEmpty ||  strcmp(keyReq, "HeartbeatInterval") == 0 )
	   {

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_HeartbeatInterval].Item, "HeartbeatInterval");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Key, "HeartbeatInterval");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "1"/*"TRUE"*/);
		   }

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData );
		   isKnowKey = TRUE;
	   }

	   if(isEmpty ||  strcmp(keyReq, "LightIntensity") == 0 )
	   {
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_LightIntensity].Item, "LightIntensity");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Key, "LightIntensity");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "1"/*"TRUE"*/);
		   }

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemData );
		   isKnowKey = TRUE;
	   }

	   if(isEmpty ||  strcmp(keyReq, "LocalAuthorizeOffline") == 0 )
	   {

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_LocalAuthorizeOffline].Item, "LocalAuthorizeOffline");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Key, "LocalAuthorizeOffline");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "1"/*"TRUE"*/);
		   }

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData );
		   isKnowKey = TRUE;
	   }

	   if(isEmpty || strcmp(keyReq, "LocalPreAuthorize") == 0 )
	   {

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_LocalPreAuthorize].Item, "LocalPreAuthorize");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Key, "LocalPreAuthorize");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "1"/*"TRUE"*/);
		   }

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData );
		   isKnowKey = TRUE;
	   }

	   if(isEmpty ||  strcmp(keyReq, "MaxEnergyOnInvalidId") == 0 )
	   {
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_MaxEnergyOnInvalidId].Item, "MaxEnergyOnInvalidId");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Key, "MaxEnergyOnInvalidId");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "1"/*"TRUE"*/);
		   }

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData );
		   isKnowKey = TRUE;
	   }

	   if(isEmpty ||  strcmp(keyReq, "MeterValuesAlignedData") == 0 )
	   {
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedData].Item, "MeterValuesAlignedData");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Key, "MeterValuesAlignedData");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "1"/*"TRUE"*/);
		   }

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData );
		   isKnowKey = TRUE;
	   }

	   if(isEmpty ||  strcmp(keyReq, "MeterValuesAlignedDataMaxLength") == 0 )
	   {
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedDataMaxLength].Item, "MeterValuesAlignedDataMaxLength");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Key, "MeterValuesAlignedDataMaxLength");

	       if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility == 1)
	       {
	    	   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
	       }
	       else
	       {
	    	   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
	       }

	       strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData );
	       isKnowKey = TRUE;
	   }

	   if(isEmpty ||  strcmp(keyReq, "MeterValuesSampledData") == 0 )
	   {
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_MeterValuesSampledData].Item, "MeterValuesSampledData");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Key, "MeterValuesSampledData");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "1"/*"TRUE"*/);
		   }

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData );
		   isKnowKey = TRUE;
	   }

	    if(isEmpty ||   strcmp(keyReq, "MeterValuesSampledDataMaxLength") == 0 )
	    {
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_MeterValuesSampledDataMaxLength].Item, "MeterValuesSampledDataMaxLength");
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Key, "MeterValuesSampledDataMaxLength");

	    	 if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility == 1)
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
	    	 }
	    	 else
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
	    	 }
	         strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData );
	         isKnowKey = TRUE;
	    }

	   if(isEmpty ||  strcmp(keyReq, "MeterValueSampleInterval") == 0 )
	   {
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_MeterValueSampleInterval].Item, "MeterValueSampleInterval");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Key, "MeterValueSampleInterval");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "1"/*"TRUE"*/);
		   }

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData );
		   isKnowKey = TRUE;
	    }

	   if(isEmpty || strcmp(keyReq, "MinimumStatusDuration") == 0 )
	   {
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_MinimumStatusDuration].Item, "MinimumStatusDuration");
		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Key, "MinimumStatusDuration");

		   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1)
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "0"/*"FALSE"*/);
		   }
		   else
		   {
			   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "1"/*"TRUE"*/);
		   }

		   strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[17].ItemData );
		   isKnowKey = TRUE;
	    }

	    if(isEmpty || strcmp(keyReq, "NumberOfConnectors") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_NumberOfConnectors].Item, "NumberOfConnectors");
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Key, "NumberOfConnectors");

	        if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility == 1)
	        {
	        	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "0"/*"FALSE"*/);
	        }
	        else
	        {
	        	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "1"/*"TRUE"*/);
	        }
	        sprintf((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", gunTotalNumber);
	        strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData );
	        isKnowKey = TRUE;
	    }

	    if(isEmpty || strcmp(keyReq, "ResetRetries") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ResetRetries].Item, "ResetRetries");
	        strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Key, "ResetRetries");

	        if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1)
	        {
	        	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "0"/*"FALSE"*/);
	        }
	        else
	        {
	        	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "1"/*"TRUE"*/);
	        }

	        strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemData );
	        isKnowKey = TRUE;
	    }

	    if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotation") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotation].Item, "ConnectorPhaseRotation");
	        strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Key, "ConnectorPhaseRotation");

	        if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1)
	        {
	        	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "0"/*"FALSE"*/);
	        }
	        else
	        {
	        	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "1"/*"TRUE"*/);
	        }

	        strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData );
	        isKnowKey = TRUE;

	    }

	    if(isEmpty ||  strcmp(keyReq, "ConnectorPhaseRotationMaxLength") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotationMaxLength].Item, "ConnectorPhaseRotationMaxLength");
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Key, "ConnectorPhaseRotationMaxLength");

	    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility == 1)
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "0"/*"FALSE"*/);
	    	}
	    	else
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "1"/*"TRUE"*/);
	    	}

	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Value,(const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData );
	    	isKnowKey = TRUE;
	    }

	    if(isEmpty ||  strcmp(keyReq, "StopTransactionOnEVSideDisconnect") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_StopTransactionOnEVSideDisconnect].Item, "StopTransactionOnEVSideDisconnect");
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Key, "StopTransactionOnEVSideDisconnect");

	    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1)
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/);
	    	}
	    	else
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/);
	    	}

	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData );
	    	isKnowKey = TRUE;
	    }

	    if(isEmpty || strcmp(keyReq, "StopTransactionOnInvalidId") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_StopTransactionOnInvalidId].Item, "StopTransactionOnInvalidId");
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Key, "StopTransactionOnInvalidId");

	    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1)
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "0"/*"FALSE"*/);
	    	}
	    	else
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "1"/*"TRUE"*/);
	    	}

	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData );
	    	isKnowKey = TRUE;
	    }

	    if(isEmpty ||  strcmp(keyReq, "StopTxnAlignedData") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_StopTxnAlignedData].Item, "StopTxnAlignedData");
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Key, "StopTxnAlignedData");

	    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility  == 1)
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "0"/*"FALSE"*/);
	    	}
	    	else
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "1"/*"TRUE"*/);
	    	}

	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Value,(const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData );
	    	isKnowKey = TRUE;
	    }

	    if(isEmpty ||  strcmp(keyReq, "StopTxnAlignedDataMaxLength") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_StopTxnAlignedDataMaxLength].Item, "StopTxnAlignedDataMaxLength");
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Key, "StopTxnAlignedDataMaxLength");

	    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility == 1)
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
	    	}
	    	else
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
	    	}

	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData );
	    	isKnowKey = TRUE;
	    }

	    if(isEmpty ||  strcmp(keyReq, "StopTxnSampledData") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_StopTxnSampledData].Item, "StopTxnSampledData");
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Key, "StopTxnSampledData");

	    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "0"/*"FALSE"*/);
	    	}
	    	else
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "1"/*"TRUE"*/);
	    	}

	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData );
	    	isKnowKey = TRUE;
	    }

	    if(isEmpty ||  strcmp(keyReq, "StopTxnSampledDataMaxLength") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_StopTxnSampledDataMaxLength].Item, "StopTxnSampledDataMaxLength");
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Key, "StopTxnSampledDataMaxLength");

	    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility == 1)
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
	    	}
	    	else
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
	    	}

	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData );
	    	isKnowKey = TRUE;
	    }

	    if(isEmpty ||  strcmp(keyReq, "SupportedFeatureProfiles") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfiles].Item, "SupportedFeatureProfiles");
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Key, "SupportedFeatureProfiles");

	    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility == 1)
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "0"/*"FALSE"*/);
	    	}
	    	else
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "1"/*"TRUE"*/);
	    	}

	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData );
	    	isKnowKey = TRUE;
	    }

	    if(isEmpty ||  strcmp(keyReq, "SupportedFeatureProfilesMaxLength") == 0 )
	    {
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfilesMaxLength].Item, "SupportedFeatureProfilesMaxLength");
	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Key, "SupportedFeatureProfilesMaxLength");

	    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility == 1)
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "0"/*"FALSE"*/);
	    	}
	    	else
	    	{
	    		strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "1"/*"TRUE"*/);
	    	}

	    	strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData );
	    	isKnowKey = TRUE;
	    }

	     if(isEmpty ||  strcmp(keyReq, "TransactionMessageAttempts") == 0 )
	     {
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_TransactionMessageAttempts].Item, "TransactionMessageAttempts");
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Key, "TransactionMessageAttempts");

	    	 if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1)
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "0"/*"FALSE"*/);
	    	 }
	    	 else
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "1"/*"TRUE"*/);
	    	 }

	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData );
	    	 isKnowKey = TRUE;
	     }

	     if(isEmpty ||  strcmp(keyReq, "TransactionMessageRetryInterval") == 0 )
	     {
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_TransactionMessageRetryInterval].Item, "TransactionMessageRetryInterval");
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Key, "TransactionMessageRetryInterval");

	    	 if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1)
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "0"/*"FALSE"*/);
	    	 }
	    	 else
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "1"/*"TRUE"*/);
	    	 }

	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData );
	    	 isKnowKey = TRUE;
	     }

	      if(isEmpty ||  strcmp(keyReq, "UnlockConnectorOnEVSideDisconnect") == 0 )
	      {
	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Item, "UnlockConnectorOnEVSideDisconnect");
	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Key, "UnlockConnectorOnEVSideDisconnect");

	    	  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1)
	    	  {
	    		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/);
	    	  }
	    	  else
	    	  {
	    		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/);
	    	  }

	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData );
	    	  isKnowKey = TRUE;

	      }

	      if(isEmpty ||  strcmp(keyReq, "WebSocketPingInterval") == 0 )
	      {
	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_WebSocketPingInterval].Item, "WebSocketPingInterval");
	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Key, "WebSocketPingInterval");

	    	  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1)
	    	  {
	    		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "0"/*"FALSE"*/);
	    	  }
	    	  else
	    	  {
	    		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "1"/*"TRUE"*/);
	    	  }

	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData );
	    	  isKnowKey = TRUE;

	      }

	      if(isEmpty ||  strcmp(keyReq, "QueueOffLineMeterValues") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_QueueOffLineMeterValues].Item, "QueueOffLineMeterValues");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineMeterValues].Key, "QueueOffLineMeterValues");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineMeterValues].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineMeterValues].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineMeterValues].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData );
			  isKnowKey = TRUE;
		  }

	      /*
	      if(isEmpty ||  strcmp(keyReq, "AuthorizationKey") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_AuthorizationKey].Item, "AuthorizationKey");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationKey].Key, "AuthorizationKey");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationKey].ReadOnly, "0");
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationKey].ReadOnly, "1");
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationKey].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData );
			  isKnowKey = TRUE;
		  }*/

	      if(isEmpty ||  strcmp(keyReq, "SecurityProfile") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_SecurityProfile].Item, "SecurityProfile");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SecurityProfile].Key, "SecurityProfile");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SecurityProfile].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SecurityProfile].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SecurityProfile].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemData );
			  isKnowKey = TRUE;
		  }

	      if(isEmpty ||  strcmp(keyReq, "DefaultPrice") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_DefaultPrice].Item, "DefaultPrice");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_DefaultPrice].Key, "DefaultPrice");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_DefaultPrice].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_DefaultPrice].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_DefaultPrice].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemData );
			  isKnowKey = TRUE;
		  }

	      if(isEmpty ||  strcmp(keyReq, "CustomDisplayCostAndPrice") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_CustomDisplayCostAndPrice].Item, "CustomDisplayCostAndPrice");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomDisplayCostAndPrice].Key, "CustomDisplayCostAndPrice");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomDisplayCostAndPrice].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomDisplayCostAndPrice].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomDisplayCostAndPrice].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData );
			  isKnowKey = TRUE;
		  }

	      if(isEmpty ||  strcmp(keyReq, "CustomIdleFeeAfterStop") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_CustomIdleFeeAfterStop].Item, "CustomIdleFeeAfterStop");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomIdleFeeAfterStop].Key, "CustomIdleFeeAfterStop");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomIdleFeeAfterStop].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomIdleFeeAfterStop].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomIdleFeeAfterStop].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData );
			  isKnowKey = TRUE;
		  }

	      if(isEmpty ||  strcmp(keyReq, "SystemUptimeSec") == 0 )
		  {
	    	  struct sysinfo s_info;
	    	  int error = sysinfo(&s_info);

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_SystemUptimeSec].Item, "SystemUptimeSec");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SystemUptimeSec].Key, "SystemUptimeSec");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SystemUptimeSec].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SystemUptimeSec].ReadOnly, "1"/*"TRUE"*/);
			  }

			  if(error != 0)
			  {
				  DEBUG_WARN("System uptime get error: %d\n", error);
			  }
			  else
			  {
				  sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData, "%ld", s_info.uptime);
				  sprintf((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SystemUptimeSec].Value, "%ld", s_info.uptime);
			  }

			  isKnowKey = TRUE;
		  }

	      if(isEmpty ||  strcmp(keyReq, "FreeVend") == 0 )
	      {
	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_FreeVend].Item, "FreeVend");
	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVend].Key, "FreeVend");

	    	  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemAccessibility == 1)
	    	  {
	    		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVend].ReadOnly, "0"/*"FALSE"*/);
	    	  }
	    	  else
	    	  {
	    		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVend].ReadOnly, "1"/*"TRUE"*/);
	    	  }

	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVend].Value, (ShmSysConfigAndInfo->SysConfig.AuthorisationMode?"TRUE":"FALSE") );
	    	  isKnowKey = TRUE;
	      }

	      if(isEmpty ||  strcmp(keyReq, "FreeVendIdtag") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_FreeVendIdtag].Item, "FreeVendIdtag");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVendIdtag].Key, "FreeVendIdtag");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVendIdtag].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVendIdtag].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVendIdtag].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData);
			  isKnowKey = TRUE;
		  }

	      if(isEmpty ||  strcmp(keyReq, "OcppServer") == 0 )
	      {
	      	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_OcppServer].Item, "OcppServer");
	      	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppServer].Key, "OcppServer");

	      	  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemAccessibility == 1)
	      	  {
	      	      strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppServer].ReadOnly, "0"/*"FALSE"*/);
	      	  }
	      	  else
	      	  {
	      	      strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppServer].ReadOnly, "1"/*"TRUE"*/);
	      	  }

	      	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppServer].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemData);
	      	  isKnowKey = TRUE;
	      }

	      if(isEmpty ||  strcmp(keyReq, "MaintainServer") == 0 )
	      {
	      	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_MaintainServer].Item, "MaintainServer");
	      	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaintainServer].Key, "MaintainServer");

	      	  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemAccessibility == 1)
	      	  {
	      	      strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaintainServer].ReadOnly, "0"/*"FALSE"*/);
	      	  }
	      	  else
	      	  {
	      	      strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaintainServer].ReadOnly, "1"/*"TRUE"*/);
	      	  }

	      	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaintainServer].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemData);
	      	  isKnowKey = TRUE;
	      }

	      if(isEmpty ||  strcmp(keyReq, "StatusNotificationPeriodically") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_StatusNotificationPeriodically].Item, "StatusNotificationPeriodically");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationPeriodically].Key, "StatusNotificationPeriodically");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationPeriodically].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationPeriodically].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationPeriodically].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData );
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "StatusNotificationInterval") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_StatusNotificationInterval].Item, "StatusNotificationInterval");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationInterval].Key, "StatusNotificationInterval");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationInterval].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationInterval].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationInterval].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData );
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "isEnableLocalPowerSharing") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_isEnableLocalPowerSharing].Item, "isEnableLocalPowerSharing");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_isEnableLocalPowerSharing].Key, "isEnableLocalPowerSharing");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_isEnableLocalPowerSharing].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_isEnableLocalPowerSharing].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_isEnableLocalPowerSharing].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData );
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "PowerSharingServerIP") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_PowerSharingServerIP].Item, "PowerSharingServerIP");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PowerSharingServerIP].Key, "PowerSharingServerIP");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PowerSharingServerIP].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PowerSharingServerIP].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PowerSharingServerIP].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData );
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "EVCCID_PREFIX") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_EVCCID_PREFIX].Item, "EVCCID_PREFIX");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_EVCCID_PREFIX].Key, "EVCCID_PREFIX");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_EVCCID_PREFIX].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_EVCCID_PREFIX].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_EVCCID_PREFIX].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData );
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "OffLineMaxChargingPower") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_OffLineMaxChargingPower].Item, "OffLineMaxChargingPower");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OffLineMaxChargingPower].Key, "OffLineMaxChargingPower");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OffLineMaxChargingPower].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OffLineMaxChargingPower].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OffLineMaxChargingPower].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData );
			  isKnowKey = TRUE;
		  }

	      if(isEmpty ||  strcmp(keyReq, "ConfigurationVersion") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ConfigurationVersion].Item, "ConfigurationVersion");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConfigurationVersion].Key, "ConfigurationVersion");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConfigurationVersion].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConfigurationVersion].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConfigurationVersion].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData );
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "CharingProfileRefreshInterval") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_CharingProfileRefreshInterval].Item, "CharingProfileRefreshInterval");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CharingProfileRefreshInterval].Key, "CharingProfileRefreshInterval");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CharingProfileRefreshInterval].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CharingProfileRefreshInterval].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CharingProfileRefreshInterval].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData );
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "OcppSoftwareVersion") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_OcppSoftwareVersion].Item, "OcppSoftwareVersion");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppSoftwareVersion].Key, "OcppSoftwareVersion");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppSoftwareVersion].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppSoftwareVersion].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppSoftwareVersion].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemData );
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "AuthDownloadlinkCertificate") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_AuthDownloadlinkCertificate].Item, "AuthDownloadlinkCertificate");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthDownloadlinkCertificate].Key, "AuthDownloadlinkCertificate");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthDownloadlinkCertificate].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthDownloadlinkCertificate].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthDownloadlinkCertificate].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemData );
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "RfidEndianType") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_RfidEndianType].Item, "RfidEndianType");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_RfidEndianType].Key, "RfidEndianType");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_RfidEndianType].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_RfidEndianType].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_RfidEndianType].Value, (ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian==1?"BIG":"LITTLE"));
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "AuthorizeTimeout") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_AuthorizeTimeout].Item, "AuthorizeTimeout");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeTimeout].Key, "AuthorizeTimeout");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeTimeout].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeTimeout].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeTimeout].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemData);
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "Enable15118") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_Enable15118].Item, "Enable15118");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_Enable15118].Key, "Enable15118");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_Enable15118].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_Enable15118].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_Enable15118].Value, (ShmSysConfigAndInfo->SysConfig.isEnable15118==1?"TRUE":"FALSE"));
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "WifiSsid") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_WifiSsid].Item, "WifiSsid");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WifiSsid].Key, "WifiSsid");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WifiSsid].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WifiSsid].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WifiSsid].Value, (const char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "WifiPassword") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_WifiPassword].Item, "WifiPassword");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WifiPassword].Key, "WifiPassword");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WifiPassword].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WifiPassword].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WifiPassword].Value, (const char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
			  isKnowKey = TRUE;
		  }

		  if(isEmpty ||  strcmp(keyReq, "StopChargingByButton") == 0 )
		  {
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_StopChargingByButton].Item, "StopChargingByButton");
			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopChargingByButton].Key, "StopChargingByButton");

			  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemAccessibility == 1)
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopChargingByButton].ReadOnly, "0"/*"FALSE"*/);
			  }
			  else
			  {
				  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopChargingByButton].ReadOnly, "1"/*"TRUE"*/);
			  }

			  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopChargingByButton].Value, (ShmSysConfigAndInfo->SysConfig.StopChargingByButton==1?"TRUE":"FALSE"));
			  isKnowKey = TRUE;
		  }
#if 1
	      if(isEmpty ||  strcmp(keyReq, "LocalAuthListEnabled") == 0 )
	      {
	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_LocalAuthListEnabled].Item, "LocalAuthListEnabled");
	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Key, "LocalAuthListEnabled");

	    	  if(ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
	    	  {
	    		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "0"/*"FALSE"*/);
	    	  }
	    	  else
	    	  {
	    		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "1"/*"TRUE"*/);
	    	  }

	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData );
	    	  isKnowKey = TRUE;
	      }
#endif

	      if(isEmpty ||  strcmp(keyReq, "LocalAuthListMaxLength") == 0 )
	      {
	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_LocalAuthListMaxLength].Item, "LocalAuthListMaxLength");
	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Key, "LocalAuthListMaxLength");

	    	  if(ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility == 1)
	    	  {
	    		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "0"/*"FALSE"*/);
	    	  }
	    	  else
	    	  {
	    		  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "1"/*"TRUE"*/);
	    	  }

	    	  strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData );
	    	  isKnowKey = TRUE;
	      }

	      if(isEmpty ||  strcmp(keyReq, "SendLocalListMaxLength") == 0 )
	      {
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_SendLocalListMaxLength].Item, "SendLocalListMaxLength");
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Key, "SendLocalListMaxLength");

	    	 if(ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility == 1)
	    	 {
	    	  	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "0"/*"FALSE"*/);
	    	 }
	    	 else
	    	 {
	    	  	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "1"/*"TRUE"*/);
	    	 }

	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData );
	    	 isKnowKey = TRUE;
	      }

	      if(isEmpty ||  strcmp(keyReq, "ReserveConnectorZeroSupported") == 0 )
	      {
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ReserveConnectorZeroSupported].Item, "ReserveConnectorZeroSupported");
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Key, "ReserveConnectorZeroSupported");

	    	 if(ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility == 1)
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "0"/*"FALSE"*/);
	    	 }
	    	 else
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "1"/*"TRUE"*/);
	    	 }

	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Value,(const char *)ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData);
	    	 isKnowKey = TRUE;
	      }

	      if(isEmpty ||  strcmp(keyReq, "ChargeProfileMaxStackLevel") == 0 )
	      {
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ChargeProfileMaxStackLevel].Item, "ChargeProfileMaxStackLevel");
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Key, "ChargeProfileMaxStackLevel");

	    	 if(ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility == 1)
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "0"/*"FALSE"*/);
	    	 }
	    	 else
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "1"/*"TRUE"*/);
	    	 }

	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData);
	    	 isKnowKey = TRUE;
	      }

	      if(isEmpty ||  strcmp(keyReq, "ChargingScheduleAllowedChargingRateUnit") == 0 )
	      {
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Item, "ChargingScheduleAllowedChargingRateUnit");
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Key, "ChargingScheduleAllowedChargingRateUnit");

	    	 if(ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility == 1)
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "0"/*"FALSE"*/);
	    	 }
	    	 else
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "1"/*"TRUE"*/);
	    	 }

	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData);
	    	 isKnowKey = TRUE;
	      }

	      if(isEmpty ||  strcmp(keyReq, "ChargingScheduleMaxPeriods") == 0 )
	      {
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ChargingScheduleMaxPeriods].Item, "ChargingScheduleMaxPeriods");
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Key, "ChargingScheduleMaxPeriods");

	    	 if(ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility == 1)
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "0"/*"FALSE"*/);
	    	 }
	    	 else
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "1"/*"TRUE"*/);
	    	 }

	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData);
	    	 isKnowKey = TRUE;
	      }

	      if(isEmpty ||  strcmp(keyReq, "ConnectorSwitch3to1PhaseSupported") == 0 )
	      {
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Item, "ConnectorSwitch3to1PhaseSupported");
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Key, "ConnectorSwitch3to1PhaseSupported");

	    	 if(ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility == 1)
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "0"/*"FALSE"*/);
	    	 }
	    	 else
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "1"/*"TRUE"*/);
	    	 }

	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData);
	    	 isKnowKey = TRUE;
	      }

	      if(isEmpty ||  strcmp(keyReq, "MaxChargingProfilesInstalled") == 0 )
	      {
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.Key[GetConfiguration_MaxChargingProfilesInstalled].Item, "MaxChargingProfilesInstalled");
	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Key, "MaxChargingProfilesInstalled");

	    	 if(ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility == 1)
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "0"/*"FLASE"*/);
	    	 }
	    	 else
	    	 {
	    		 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "1"/*"TRUE"*/);
	    	 }

	    	 strcpy((char *)ShmOCPP16DataPH->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Value, (const char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData);
	    	 isKnowKey = TRUE;
	      }

	     //=========================================================

	      if(!isEmpty && !isKnowKey)
	      {
	    	 DEBUG_INFO("unKnowIndex =%d\n", UnknownKeynum);
	    	 strcpy(unknownkey[UnknownKeynum], keyReq);
			 UnknownKeynum = UnknownKeynum + 1;
	      }


}

void processUnkownKey(void)
{
	DEBUG_INFO("processUnkownKey...\n");
	memset(ShmOCPP16DataPH->GetConfiguration.ResponseUnknownKey, 0 , sizeof(struct StructConfigurationKeyItems)* 10);

	for(int index=0; index < UnknownKeynum; index++)
	{
		if(ShmOCPP16DataPH->GetConfiguration.ResponseUnknownKey[index].Item[0] == 0)
		{
			strcpy((char *)(ShmOCPP16DataPH->GetConfiguration.ResponseUnknownKey[index].Item), unknownkey[index]);
		}
	}
}

int setKeyValue(char *key, char *value)
{
	int isSuccess = NotSupported;
	int check_ascii=0;
	char str[501]={0};

	DEBUG_INFO(" setKeyValue %s = %s\n", key, value);

    if(strcmp(key, "AllowOfflineTxForUnknownId") == 0)
    {
        //Charger.AllowOfflineTxForUnknownId = (value.toLowerCase().equals("true")?true:false);
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1)
    	{
    		strcpy(str, (const char*)value);
    		for(int i = 0; str[i]; i++){
    		  str[i] = tolower(str[i]);
    		}

    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
    	{
    		isSuccess = ConfigurationStatus_Rejected;
    	}
     }

    if(strcmp(key, "AuthorizationCacheEnabled") == 0)
    {
        //Charger.AuthorizationCacheEnabled = (value.toLowerCase().equals("true")?true:false);
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1)
    	{
    		strcpy(str, (const char*)value);
    		for(int i = 0; str[i]; i++){
    		   str[i] = tolower(str[i]);
    		}

    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
    		isSuccess = ConfigurationStatus_Accepted;
    		//updateSetting("AuthorizationCacheEnabled",(char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[1].ItemData);
    	}
    	else
    	{
    		isSuccess = ConfigurationStatus_Rejected;
    	}

    }

    if(strcmp(key, "AuthorizeRemoteTxRequests") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1)
    	{
    		strcpy(str, (const char*)value);
    		for(int i = 0; str[i]; i++)
    		{
    			str[i] = tolower(str[i]);
    		}
    		//Charger.AuthorizeRemoteTxRequests = (value.toLowerCase().equals("true")?true:false);
    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}

    }

    if(strcmp(key, "BlinkRepeat") == 0)
    {
    		//Charger.BlinkRepeat = Integer.parseInt(value);
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    			isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
    			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "%d", atoi(value) );
    			isSuccess = ConfigurationStatus_Accepted;
    		}
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "ClockAlignedDataInterval") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    		   isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
    			if((atoi(value) == 0) || (atoi(value) >= 5))
    			{
    				//Charger.ClockAlignedDataInterval = Integer.parseInt(value)*1000;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "%d", atoi(value) );
					isSuccess = ConfigurationStatus_Accepted;
    			}
    			else
    				isSuccess = ConfigurationStatus_Rejected;
    		}
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "ConnectionTimeOut") == 0 )
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    			isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
    			if((atoi(value) >= 30) && (atoi(value) <= 3600))
    			{
    				//Charger.ConnectionTimeOut = Integer.parseInt(value)*1000;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "%d", atoi(value));
					isSuccess = ConfigurationStatus_Accepted;
    			}
    			else
    				isSuccess = ConfigurationStatus_Rejected;
    		}
    	}
    	else
        {
        	isSuccess = ConfigurationStatus_Rejected;
        }

    }

    if(strcmp(key, "GetConfigurationMaxKeys") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility == 1)
    	{
        	check_ascii = value[0];
        	if( (check_ascii < 48) || (check_ascii > 57) )
        	{
        		isSuccess = ConfigurationStatus_Rejected;
        	}
        	else
        	{
        		//Charger.HeartbeatInterval = Integer.parseInt(value)*1000;
        		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "%d", atoi(value) );
        		isSuccess = ConfigurationStatus_Accepted;
        	}

       }
       else
       {
    	   isSuccess = ConfigurationStatus_Rejected;
       }

    }

    if(strcmp(key, "HeartbeatInterval") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    	    {
    	    	isSuccess = ConfigurationStatus_Rejected;
    	    }
    		else
    		{
    			if((atoi(value) == 0) || (atoi(value) >= 10))
    			{
    				//Charger.HeartbeatInterval = Integer.parseInt(value)*1000;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "%d", atoi(value));
					HeartBeatWaitTime = atoi(value);
					isSuccess = ConfigurationStatus_Accepted;
    			}
    			else
    			{
    				isSuccess = ConfigurationStatus_Rejected;
    			}
    		}
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "LightIntensity") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    			isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
    			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "%d", atoi(value) );
    		    isSuccess = ConfigurationStatus_Accepted;
    		}
    	}
    	else
    	{
    		isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "LocalAuthorizeOffline") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1)
    	{
    		strcpy(str, (const char*)value);
    		for(int i = 0; str[i]; i++)
    		{
    		   str[i] = tolower(str[i]);
    		}
    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
    		isSuccess = ConfigurationStatus_Accepted;
    		//updateSetting("LocalAuthorizeOffline", (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData);
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}

    }

    if(strcmp(key, "LocalPreAuthorize") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1)
    	{
    		strcpy(str, (const char*)value);
    		for(int i = 0; str[i]; i++)
    		{
    		   str[i] = tolower(str[i]);
    		}
    	    sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
        {
        	isSuccess = ConfigurationStatus_Rejected;
        }

    }

    if(strcmp(key, "MaxEnergyOnInvalidId") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    			isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
    			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "%d", atoi(value) );
    			isSuccess = ConfigurationStatus_Accepted;
    		}
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}

    }

    if(strcmp(key, "MeterValuesAlignedData") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1)
    	{
    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "%s", value );
    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
    	{
    	   isSuccess = ConfigurationStatus_Rejected;
    	}

    }

    if(strcmp(key, "MeterValuesAlignedDataMaxLength") == 0)
    {
     	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility == 1)
     	{
     		check_ascii = value[0];
     		if( (check_ascii < 48) || (check_ascii > 57) )
     		{
     			isSuccess = ConfigurationStatus_Rejected;
     		}
     		else
     		{
     			//Charger.MeterValueSampleInterval = Integer.parseInt(value)*1000;
     			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "%d", atoi(value));
     			isSuccess = ConfigurationStatus_Accepted;
     		}
     	}
     	else
     	{
     	    isSuccess = ConfigurationStatus_Rejected;

     	}

    }

    if(strcmp(key, "MeterValuesSampledData") == 0 )
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1)
    	{
    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "%s", value );
    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}

    }

    if(strcmp(key, "MeterValuesSampledDataMaxLength") == 0)
    {
     	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility == 1)
     	{
     		check_ascii = value[0];
     		if( (check_ascii < 48) || (check_ascii > 57) )
     		{
     			isSuccess = ConfigurationStatus_Rejected;
     		}
     		else
     		{
     			//Charger.MeterValueSampleInterval = Integer.parseInt(value)*1000;
     			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "%d", atoi(value));
     			isSuccess = ConfigurationStatus_Accepted;
     		}
     	}
     	else
     	{
     	    isSuccess = ConfigurationStatus_Rejected;

     	}

    }


    if(strcmp(key, "MeterValueSampleInterval") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    			isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
    			if((atoi(value) == 0) || (atoi(value) >= 3))
    			{
    				//Charger.MeterValueSampleInterval = Integer.parseInt(value)*1000;
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "%d", atoi(value));
					isSuccess = ConfigurationStatus_Accepted;
    			}
    			else
    			{
    				isSuccess = ConfigurationStatus_Rejected;
    			}
    		}
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;

    	}
    }

    if(strcmp(key, "MinimumStatusDuration") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    		   isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
    			if(atoi(value) == 0) // MinimumStatusDuration's value can not be 0
    			{
    				isSuccess = ConfigurationStatus_Rejected;
    			}
    			else
    			{
    				//Charger.MinimumStatusDuration = Integer.parseInt(value);
    			    sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "%d", atoi(value) );
    			    server_cycle_Status = atoi(value); //StatusNotification Cycle
    			    isSuccess = ConfigurationStatus_Accepted;
    			}
    		}
    	}
    	else
        {
        	isSuccess = ConfigurationStatus_Rejected;
        }

    }

    if(strcmp(key, "NumberOfConnectors") == 0)
    {
      	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility == 1)
      	{
      		check_ascii = value[0];
      		if( (check_ascii < 48) || (check_ascii > 57) )
      		{
      			isSuccess = ConfigurationStatus_Rejected;
      		}
      		else
      		{
      			//Charger.ResetRetries = Integer.parseInt(value);
      			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", atoi(value) );
      			isSuccess = ConfigurationStatus_Accepted;
      		}
      	}
      	else
      	{
      	    isSuccess = ConfigurationStatus_Rejected;
      	}

    }

    if(strcmp(key, "ResetRetries") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    			isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
    			//Charger.ResetRetries = Integer.parseInt(value);
    			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "%d", atoi(value) );
    			isSuccess = ConfigurationStatus_Accepted;
    		}
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}

   }

   if(strcmp(key, "ConnectorPhaseRotation") == 0)
   {
	   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1)
	   {
		   strcpy(str, (const char*)value);
		   for(int i = 0; str[i]; i++)
		   {
			   str[i] = tolower(str[i]);
		   }

		   if(strcmp(str, "notapplicable")== 0)
		   {
			   sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "NotApplicable" );
			   isSuccess = ConfigurationStatus_Accepted;
		   }
		   else  if(strcmp(str, "unknown")== 0)
		   {
			   sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "Unknown" );
			   isSuccess = ConfigurationStatus_Accepted;
		   }
		   else  if(strcmp(str, "rst")== 0)
		   {
			   sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "RST" );
			   isSuccess = ConfigurationStatus_Accepted;
		   }
		   else  if(strcmp(str, "rts")== 0)
		   {
			   sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "RTS" );
			   isSuccess = ConfigurationStatus_Accepted;
		   }
		   else  if(strcmp(str, "srt")== 0)
		   {
			   sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "SRT" );
			   isSuccess = ConfigurationStatus_Accepted;
		   }
		   else  if(strcmp(str, "str")== 0)
		   {
			   sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "STR" );
			   isSuccess = ConfigurationStatus_Accepted;
		   }
		   else  if(strcmp(str, "trs")== 0)
		   {
			   sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "TRS" );
			   isSuccess = ConfigurationStatus_Accepted;
		   }
		   else  if(strcmp(str, "tsr")== 0)
		   {
			   sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "TSR" );
			   isSuccess = ConfigurationStatus_Accepted;
		   }
		   else
		   {
			   isSuccess = ConfigurationStatus_Rejected;
		   }
	   }
	   else
	   {
	       isSuccess = ConfigurationStatus_Rejected;
	   }

   }

   if(strcmp(key, "ConnectorPhaseRotationMaxLength") == 0)
   {
	  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility == 1)
	  {
		  check_ascii = value[0];
		  if( (check_ascii < 48) || (check_ascii > 57) )
		  {
		      isSuccess = ConfigurationStatus_Rejected;
		  }
		  else
		  {
		      sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "%d", atoi(value) );
		      isSuccess = ConfigurationStatus_Accepted;
		  }
	  }
	  else
	  {
	  	  isSuccess = ConfigurationStatus_Rejected;
	  }
   }

   if(strcmp(key, "StopTransactionOnEVSideDisconnect") == 0)
   {
	   if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1)
	   {
		   strcpy(str, (const char*)value);
		   for(int i = 0; str[i]; i++)
		   {
		      str[i] = tolower(str[i]);
		   }
		   //Charger.StopTransactionOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false);
		   sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
		   isSuccess = ConfigurationStatus_Accepted;
	   }
	   else
	   {
	       isSuccess = ConfigurationStatus_Rejected;
	   }

   }

    if(strcmp(key, "StopTransactionOnInvalidId") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1)
    	{
    		strcpy(str, (const char*)value);
    		for(int i = 0; str[i]; i++)
    		{
    			str[i] = tolower(str[i]);
    		}
    		//Charger.StopTransactionOnInvalidId = (value.toLowerCase().equals("true")?true:false);
    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
    		isSuccess = ConfigurationStatus_Accepted;
    	}
        else
        {
    		isSuccess = ConfigurationStatus_Rejected;
        }
    }


    if(strcmp(key, "StopTxnAlignedData") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1)
    	{
    	    sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "%s", value );
    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "StopTxnAlignedDataMaxLength") == 0)
    {
   	  if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility == 1)
   	  {
   		 check_ascii = value[0];
   		 if( (check_ascii < 48) || (check_ascii > 57) )
   		 {
   			isSuccess = ConfigurationStatus_Rejected;
   		 }
   		 else
   		 {
   			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "%d", atoi(value) );
   			isSuccess = ConfigurationStatus_Accepted;
   		 }
   	  }
   	  else
   	  {
   	  	  isSuccess = ConfigurationStatus_Rejected;
   	  }
    }

    if(strcmp(key, "StopTxnSampledData") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
    	{
    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "%s", value );

    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "StopTxnSampledDataMaxLength") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility == 1)
    	{
    		 check_ascii = value[0];
    		 if( (check_ascii < 48) || (check_ascii > 57) )
    		 {
    			 isSuccess = ConfigurationStatus_Rejected;
    		 }
    		 else
    		 {
    			 sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "%d", atoi(value) );
    			 isSuccess = ConfigurationStatus_Accepted;
    		 }
    	}
    	else
    	{
     	  	isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "SupportedFeatureProfiles") == 0)
    {
       	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility == 1)
       	{
       		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "%s", value );
       		isSuccess = ConfigurationStatus_Accepted;
       	}
       	else
       	{
       	    isSuccess = ConfigurationStatus_Rejected;
       	}

    }

    if(strcmp(key, "SupportedFeatureProfilesMaxLength") == 0)
    {
        if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility == 1)
        {
        	 check_ascii = value[0];
        	 if( (check_ascii < 48) || (check_ascii > 57) )
        	 {
        	    isSuccess = ConfigurationStatus_Rejected;
        	 }
        	 else
        	 {
        	    sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "%d", atoi(value) );
        	    isSuccess = ConfigurationStatus_Accepted;

        	 }
        }
        else
        {
          	isSuccess = ConfigurationStatus_Rejected;
        }
    }

    if(strcmp(key, "TransactionMessageAttempts") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    		   isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
    			//Charger.TransactionMessageAttempts = Integer.parseInt(value);
    			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "%d", atoi(value) );
    			TransactionMessageAttemptsValue = atoi(value);
    			isSuccess = ConfigurationStatus_Accepted;
    		}
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "TransactionMessageRetryInterval") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    		    isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
    			//Charger.TransactionMessageRetryInterval = Integer.parseInt(value)*1000;
    			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "%d", atoi(value) );
    			TransactionMessageRetryIntervalValue = atoi(value);
    			isSuccess = ConfigurationStatus_Accepted;
    		}
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}

    }

    if(strcmp(key, "UnlockConnectorOnEVSideDisconnect") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1)
    	{
    		strcpy(str, (const char*)value);
    		for(int i = 0; str[i]; i++)
    		{
    		   str[i] = tolower(str[i]);
    		}
    		//Charger.UnlockConnectorOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false);
    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
        {
        	isSuccess = ConfigurationStatus_Rejected;
        }

    }

    if(strcmp(key, "WebSocketPingInterval") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 48) || (check_ascii > 57) )
    		{
    			isSuccess = ConfigurationStatus_Rejected;
    		}
    		else
    		{
        		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "%d", atoi(value) );
        		isSuccess = ConfigurationStatus_Accepted;
        		if((atoi(value) == 0) || (atoi(value) >= 10))
        		{
        			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "%d", atoi(value) );
        		    isSuccess = ConfigurationStatus_Accepted;
        		}
        		else
        			isSuccess = ConfigurationStatus_Rejected;
    		}
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "QueueOffLineMeterValues") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			for(int i = 0; str[i]; i++)
			{
			   str[i] = tolower(str[i]);
			}

			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
			isSuccess = ConfigurationStatus_Accepted;
		}
		else
	   {
		isSuccess = ConfigurationStatus_Rejected;
	   }

    }

    if(strcmp(key, "AuthorizationKey") == 0)
    {
    	if((ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility == 1) && (strlen(value) <= 40))
    	{
    		strcpy(str, (const char*)value);
			int strlength = strlen(str);
			char capture[3];
			char stackItem = 0;
			char password[21] = {0};

			printf("String length: %d\n", strlength);

			for(int idx=0; idx<(strlength/2); idx++)
			{
				capture[0] = str[(idx*2)];
				capture[1] = str[(idx*2)+1];
				capture[2] = 0;
				stackItem = (char)strtol(capture, NULL, 16);       // number base 16

				sprintf(password,"%s%c", password, stackItem);
			}

    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, "%s", password);
    		strcpy((char*)ShmSysConfigAndInfo->SysConfig.MaintainServerSecurityPassword, (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData);
    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "SecurityProfile") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility == 1)
    	{
    		check_ascii = value[0];
    		if( (check_ascii < 0x30) || (check_ascii > 0x33) )
    		{
    			isSuccess = ConfigurationStatus_Rejected;
    		}
    		else if(check_ascii == 0x33)
    		{
    			isSuccess = NotSupported;
    		}
    		else
    		{
    			if(atoi((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemData) <= (check_ascii - 0x30))
    			{
    				sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "%d", atoi(value) );
    				ShmSysConfigAndInfo->SysConfig.MaintainServerSecurityProfile = atoi(value);
    				isSuccess = ConfigurationStatus_Accepted;
    			}
    			else
    				isSuccess = ConfigurationStatus_Rejected;
    		}
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "DefaultPrice") == 0)
    {
    	if((ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility == 1))
    	{
    		strcpy(str, (const char*)value);
    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[DefaultPrice].ItemData, "%s", str);
    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
    	{
    	    isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "CustomDisplayCostAndPrice") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			for(int i = 0; str[i]; i++)
			{
			   str[i] = tolower(str[i]);
			}

			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
			isSuccess = ConfigurationStatus_Accepted;
		}
		else
	   {
		isSuccess = ConfigurationStatus_Rejected;
	   }

    }

    if(strcmp(key, "CustomIdleFeeAfterStop") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			for(int i = 0; str[i]; i++)
			{
			   str[i] = tolower(str[i]);
			}

			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
			isSuccess = ConfigurationStatus_Accepted;
		}
		else
	   {
		isSuccess = ConfigurationStatus_Rejected;
	   }

    }

    if(strcmp(key, "SystemUptimeSec") == 0)
    {
		isSuccess = NotSupported;
    }

    if(strcmp(key, "FreeVend") == 0)
    {
        if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemAccessibility == 1)
        {
        	strcpy(str, (const char*)value);
        	for(int i = 0; str[i]; i++)
        	{
        		str[i] = tolower(str[i]);
        	}

        	ShmSysConfigAndInfo->SysConfig.AuthorisationMode = ((strcmp(str, "true")==0) ? 1 : 0 );
        	sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVend].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
        	isSuccess = ConfigurationStatus_Accepted;
        }
        else
        {
            isSuccess = ConfigurationStatus_Rejected;
        }

    }

    if(strcmp(key, "FreeVendIdtag") == 0)
    {
        if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemAccessibility == 1)
        {
    		strcpy(str, (const char*)value);

    		if(strlen(str) <= 20)
    		{
                sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData, "%s", str );

				isSuccess = ConfigurationStatus_Accepted;
    		}
    		else
    		{
    			DEBUG_WARN("FreeVendIdtag(%s) length over 20 bytes.\n", str);
    			isSuccess = ConfigurationStatus_Rejected;
    		}
        }
        else
        {
            isSuccess = ConfigurationStatus_Rejected;
        }
    }

    if(strcmp(key, "OcppServer") == 0)
    {
        if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemAccessibility == 1)
        {
            strcpy(str, (const char*)value);
            sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppServer].ItemData, "%s", str );
            sprintf((char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL, "%s", str );

            isSuccess = ConfigurationStatus_Accepted;
        }
        else
        {
            isSuccess = ConfigurationStatus_Rejected;
        }
    }

    if(strcmp(key, "MaintainServer") == 0)
    {
        if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemAccessibility == 1)
        {
            strcpy(str, (const char*)value);
            sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MaintainServer].ItemData, "%s", str );
            sprintf((char *)ShmSysConfigAndInfo->SysConfig.MaintainServerURL, "%s", str );

            isSuccess = ConfigurationStatus_Accepted;
        }
        else
        {
            isSuccess = ConfigurationStatus_Rejected;
        }
    }

    if(strcmp(key, "StatusNotificationPeriodically") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			for(int i = 0; str[i]; i++)
			{
			   str[i] = tolower(str[i]);
			}

			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE");
			isSuccess = ConfigurationStatus_Accepted;
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "StatusNotificationInterval") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemAccessibility == 1)
		{
			check_ascii = value[0];
			if( (check_ascii < 48) || (check_ascii > 57) )
			{
				isSuccess = ConfigurationStatus_Rejected;
			}
			else
			{
				if((atoi(value) == 0) || (atoi(value) >= 10))
				{
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData, "%d", atoi(value) );
					isSuccess = ConfigurationStatus_Accepted;
				}
				else
					isSuccess = ConfigurationStatus_Rejected;
			}
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "isEnableLocalPowerSharing") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemAccessibility == 1)
		{
			check_ascii = value[0];
			if( (check_ascii < 48) || (check_ascii > 57) )
			{
				isSuccess = ConfigurationStatus_Rejected;
			}
			else
			{
				if(atoi(value) >= 0)
				{
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData, "%d", atoi(value) );
					ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharing = (unsigned char)atoi(value);
					isSuccess = ConfigurationStatus_Accepted;
				}
				else
					isSuccess = ConfigurationStatus_Rejected;
			}
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "PowerSharingServerIP") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData, "%s", str );
			sprintf((char *)ShmSysConfigAndInfo->SysConfig.PowerSharingServerIP, "%s", str );
			isSuccess = ConfigurationStatus_Accepted;
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "EVCCID_PREFIX") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData, "%s", str );
			isSuccess = ConfigurationStatus_Accepted;
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "OffLineMaxChargingPower") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemAccessibility == 1)
		{
			if(atoi(value) > modelnameInfo.ratedPower)
			{
				isSuccess = ConfigurationStatus_Rejected;
			}
			else{
				strcpy(str, (const char*)value);
				sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData, "%s", str );
				isSuccess = ConfigurationStatus_Accepted;
			}
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "CharingProfileRefreshInterval") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemAccessibility == 1)
		{
			if((atoi(value) != 0) && (atoi(value) < 5))
			{
				isSuccess = ConfigurationStatus_Rejected;
			}
			else{
				strcpy(str, (const char*)value);
				sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData, "%s", str );
				isSuccess = ConfigurationStatus_Accepted;
			}
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "OcppSoftwareVersion") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemData, "%s", str );
			isSuccess = ConfigurationStatus_Accepted;
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "AuthDownloadlinkCertificate") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemData, "%s", str );
			isSuccess = ConfigurationStatus_Accepted;
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "RfidEndianType") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			for(int i = 0; str[i]; i++)
			{
			  str[i] = tolower(str[i]);
			}
			if((strcmp(str, "big")==0) || (strcmp(str, "little")==0))
			{
				sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[RfidEndianType].ItemData, "%s", str);
				ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian = (strcmp(str, "big")==0)?1:0;
				isSuccess = ConfigurationStatus_Accepted;
			}
			else
				isSuccess = ConfigurationStatus_Rejected;
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "AuthorizeTimeout") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemAccessibility == 1)
		{
			check_ascii = value[0];
			if((check_ascii < 48) || (check_ascii > 57))
			{
				isSuccess = ConfigurationStatus_Rejected;
			}
			else
			{
				if((atoi(value) >= 10) && (atoi(value) <= 300))
				{
					sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizeTimeout].ItemData, "%d", atoi(value));
					isSuccess = ConfigurationStatus_Accepted;
				}
				else
				{
					isSuccess = ConfigurationStatus_Rejected;
				}
			}
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "Enable15118") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			for(int i = 0; str[i]; i++)
			{
			  str[i] = tolower(str[i]);
			}

			if((strcmp(str, "true")==0) || (strcmp(str, "false")==0))
			{
				sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[Enable15118].ItemData, "%s", (strcmp(str, "true")==0)?"TRUE":"FALSE");
				ShmSysConfigAndInfo->SysConfig.isEnable15118 = (strcmp(str, "true")==0)?1:0;
				isSuccess = ConfigurationStatus_Accepted;
			}
			else
				isSuccess = ConfigurationStatus_Rejected;
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "WifiSsid") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemData, str);
			sprintf((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid, (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiSsid].ItemData);
			isSuccess = ConfigurationStatus_Accepted;
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "WifiPassword") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemData, str);
			sprintf((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword, (char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WifiPassword].ItemData);
			isSuccess = ConfigurationStatus_Accepted;
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

	if(strcmp(key, "StopChargingByButton") == 0)
	{
		if(ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemAccessibility == 1)
		{
			strcpy(str, (const char*)value);
			for(int i = 0; str[i]; i++)
			{
			  str[i] = tolower(str[i]);
			}

			if((strcmp(str, "true")==0) || (strcmp(str, "false")==0))
			{
				sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopChargingByButton].ItemData, "%s", (strcmp(str, "true")==0)?"TRUE":"FALSE");
				ShmSysConfigAndInfo->SysConfig.StopChargingByButton = (strcmp(str, "true")==0)?1:0;
				isSuccess = ConfigurationStatus_Accepted;
			}
			else
				isSuccess = ConfigurationStatus_Rejected;
		}
		else
		{
			isSuccess = ConfigurationStatus_Rejected;
		}
	}

#if 0
    //For OCPP Test Case
    if(strcmp(key, "LocalAuthorizationListEnabled") == 0)
    {
        if(ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
        {
        	strcpy(str, (const char*)value);
        	for(int i = 0; str[i]; i++)
        	{
        		str[i] = tolower(str[i]);
        	}

        	sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
        	isSuccess = ConfigurationStatus_Accepted;
        	//updateSetting("LocalAuthorizationListEnabled", (char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);
        }
        else
        {
            isSuccess = ConfigurationStatus_Rejected;
        }

    }
#endif

#if 1
    if(strcmp(key, "LocalAuthListEnabled") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
    	{
    		strcpy(str, (const char*)value);
    		for(int i = 0; str[i]; i++)
    		{
    		   str[i] = tolower(str[i]);
    		}
        sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
    		isSuccess = ConfigurationStatus_Accepted;
    		//updateSetting("LocalAuthListEnabled", (char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);
    	}
    	else
        {
        	isSuccess = ConfigurationStatus_Rejected;
        }

    }
#endif

    if(strcmp(key, "LocalAuthListMaxLength") == 0)
    {
      	if(ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility == 1)
      	{
      		check_ascii = value[0];
      		if( (check_ascii < 48) || (check_ascii > 57) )
      		{
      			isSuccess = ConfigurationStatus_Rejected;
      		}
      		else
      		{

          		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "%d", atoi(value) );
          		isSuccess = ConfigurationStatus_Accepted;
      		}
      	}
      	else
      	{
      	    isSuccess = ConfigurationStatus_Rejected;
      	}
    }

    if(strcmp(key, "SendLocalListMaxLength") == 0)
    {
        if(ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility == 1)
        {
        	check_ascii = value[0];
        	if( (check_ascii < 48) || (check_ascii > 57) )
        	{
        		isSuccess = ConfigurationStatus_Rejected;
        	}
        	else
        	{

            	sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "%d", atoi(value) );
            	isSuccess = ConfigurationStatus_Accepted;
        	}
        }
        else
        {
        	isSuccess = ConfigurationStatus_Rejected;
        }
    }

    if(strcmp(key, "ReserveConnectorZeroSupported") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility == 1)
    	{
    		strcpy(str, (const char*)value);
    		for(int i = 0; str[i]; i++)
    		{
    		    str[i] = tolower(str[i]);
    		}
    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
    		isSuccess = ConfigurationStatus_Accepted;
    	}
    	else
    	{
           	isSuccess = ConfigurationStatus_Rejected;
    	}
    }

    if(strcmp(key, "ChargeProfileMaxStackLevel") == 0)
    {
         if(ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility == 1)
         {
         	check_ascii = value[0];
         	if( (check_ascii < 48) || (check_ascii > 57) )
         	{
         		isSuccess = ConfigurationStatus_Rejected;
         	}
         	else
         	{

             	sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "%d", atoi(value) );
             	isSuccess = ConfigurationStatus_Accepted;
         	}
         }
         else
         {
         	isSuccess = ConfigurationStatus_Rejected;
         }
    }

    if(strcmp(key, "ChargingScheduleAllowedChargingRateUnit") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility == 1)
        {
    		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "%s", value );
         	isSuccess = ConfigurationStatus_Accepted;
        }
        else
        {
         	isSuccess = ConfigurationStatus_Rejected;
        }

    }

    if(strcmp(key, "ChargingScheduleMaxPeriods") == 0)
    {
    	if(ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility == 1)
        {
           	check_ascii = value[0];
           	if( (check_ascii < 48) || (check_ascii > 57) )
           	{
           		isSuccess = ConfigurationStatus_Rejected;
           	}
           	else
           	{

               	sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "%d", atoi(value) );
               	isSuccess = ConfigurationStatus_Accepted;
           	}
        }
    	else
        {
           	isSuccess = ConfigurationStatus_Rejected;
        }
    }

    if(strcmp(key, "ConnectorSwitch3to1PhaseSupported") == 0)
    {
       	if(ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility == 1)
       	{
       		strcpy(str, (const char*)value);
       		for(int i = 0; str[i]; i++)
       		{
       		    str[i] = tolower(str[i]);
       		}
       		sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" );
       		isSuccess = ConfigurationStatus_Accepted;
       	}
       	else
       	{
              	isSuccess = ConfigurationStatus_Rejected;
       	}
    }

    if(strcmp(key, "MaxChargingProfilesInstalled") == 0)
    {
       	if(ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility == 1)
        {
       		check_ascii = value[0];
            if( (check_ascii < 48) || (check_ascii > 57) )
            {
            	isSuccess = ConfigurationStatus_Rejected;
            }
            else
            {
                 sprintf((char *)ShmOCPP16DataPH->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "%d", atoi(value) );
                 isSuccess = ConfigurationStatus_Accepted;
            }
       }
       else
       {
            isSuccess = ConfigurationStatus_Rejected;
       }
    }
    system("/bin/fsync -d /dev/mtdblock13;/bin/sync &");

    return isSuccess;
}

int TransactionMessageAttemptsGet(void)
{
	return TransactionMessageAttemptsValue;
}

int FirstHeartBeatResponse(void)
{
	return FirstHeartBeat;
}

int TransactionMessageRetryIntervalGet(void)
{
	return TransactionMessageRetryIntervalValue;//atoi((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);
}

int ReadHttpStatus(int sock)
{
    //char c;
    char buff[1024]="",*ptr=buff+1;
    int bytes_received, status;
    DEBUG_INFO("Begin Response ..\n");
    while((bytes_received = recv(sock, ptr, 1, 0))){
        if(bytes_received==-1){
            perror("ReadHttpStatus");
            exit(1);
        }

        if((ptr[-1]=='\r')  && (*ptr=='\n' )) break;
        ptr++;
    }
    *ptr=0;
    ptr=buff+1;

    sscanf(ptr,"%*s %d ", &status);

    DEBUG_INFO("%s\n",ptr);
    DEBUG_INFO("status=%d\n",status);
    DEBUG_INFO("End Response ..\n");
    return (bytes_received>0)?status:0;

}

//the only filed that it parsed is 'Content-Length'
int ParseHeader(int sock)
{
    //char c;
    char buff[1024]="",*ptr=buff+4;
    int bytes_received;
    DEBUG_INFO("Begin HEADER ..\n");
    while((bytes_received = recv(sock, ptr, 1, 0))){
        if(bytes_received==-1){
            perror("Parse Header");
            exit(1);
        }

        if(
            (ptr[-3]=='\r')  && (ptr[-2]=='\n' ) &&
            (ptr[-1]=='\r')  && (*ptr=='\n' )
        ) break;
        ptr++;
    }

    *ptr=0;
    ptr=buff+4;
    //printf("%s",ptr);

    if(bytes_received){
        ptr=strstr(ptr,"Content-Length:");
        if(ptr){
            sscanf(ptr,"%*s %d",&bytes_received);

        }else
            bytes_received=-1; //unknown size

        DEBUG_INFO("Content-Length: %d\n",bytes_received);
    }
    DEBUG_INFO("End HEADER ..\n");
    return  bytes_received ;

}

int httpDownLoadFile(char *location, char *path, char *filename,char *url)
{
	int result = TRUE;
	char rmFileCmd[300]={0};
    char FilePath[256]={0};
	char ftpbuf[2048];
	int systemresult;

	sprintf(FilePath,"/mnt/%s",filename);
	system("ping 8.8.8.8 &");

	if((access(FilePath,F_OK))!=-1)
	{
		DEBUG_INFO("filename=%s exist.\n",FilePath);
		sprintf(rmFileCmd,"rm -f %s",FilePath);
		system(rmFileCmd);
	}
	memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));
	if(strstr((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemData, "TRUE") != NULL)
		sprintf(ftpbuf, "wget --tries=1 -O /mnt/%s -c %s -T 120 --ca-certificate=/root/cacert.pem",filename, url);
	else
		sprintf(ftpbuf, "wget --tries=1 -O /mnt/%s -c %s -T 120 --no-check-certificate",filename, url);
	DEBUG_INFO("Download command: %s\n",ftpbuf);

	systemresult = system(ftpbuf);
	if(systemresult != 0)
	{
		DEBUG_INFO("HTTP/HTTPS downLoad fail!\n");
		result = FALSE;
	}
	system("pkill ping");

	return result;
}

int sftpDownLoadFile(char *host, char *user, char *password, int port, char *path, char *filename,char *url)
{
	int result = TRUE;
	char rmFileCmd[300]={0};
	char FilePath[256]={0};
	char ftpbuf[2048];
	int systemresult;

	sprintf(FilePath,"/mnt/%s",filename);
	system("ping 8.8.8.8 &");

	if((access(FilePath,F_OK))!=-1)
	{
		DEBUG_INFO("filename=%s exist.\n",FilePath);
		sprintf(rmFileCmd,"rm -f %s",FilePath);
		system(rmFileCmd);
	}

	memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));
	if(strlen(password)>0)
		sprintf(ftpbuf,"timeout -t 360 sshpass -p '%s' scp -P %d %s@%s:%s%s %s", password, port, user, host, path, filename, FilePath);
	else
		sprintf(ftpbuf,"timeout -t 360 sshpass scp -P %d %s@%s:%s%s %s", port, user, host, path, filename, FilePath);
	DEBUG_INFO("Download command: %s\n",ftpbuf);

	systemresult = system(ftpbuf);
	if(systemresult != 0)
	{
		DEBUG_WARN("sshpass scp error!\n");
		result = FALSE;
	}
	system("pkill ping");

	return result;
}

int ftpDownLoadFile(char *location, char *user, char *password, int port, char *path, char *filename,char *url)
{
	int result = TRUE;
	char rmFileCmd[300]={0};
	char FilePath[256]={0};
	char ftpbuf[2048];
	int systemresult;

	sprintf(FilePath,"/mnt/%s",filename);
	system("ping 8.8.8.8 &");

	if((access(FilePath,F_OK))!=-1)
	{
		DEBUG_INFO("filename=%s exist.\n",FilePath);
		sprintf(rmFileCmd,"rm -f %s",FilePath);
		system(rmFileCmd);
	}

	memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));
	if(strstr((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemData, "TRUE") != NULL)
		sprintf(ftpbuf, "wget --tries=1 -O /mnt/%s -c %s -T 120 --ca-certificate=/root/cacert.pem",filename, url);
	else
		sprintf(ftpbuf, "wget --tries=1 -O /mnt/%s -c %s -T 120 --no-check-certificate",filename, url);
	DEBUG_INFO("Download command: %s\n",ftpbuf);

	systemresult = system(ftpbuf);
	if(systemresult != 0)
	{
		if(strstr((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthDownloadlinkCertificate].ItemData, "TRUE") != NULL)
			sprintf(ftpbuf, "wget --tries=1 -O /mnt/%s -c %s -T 120 --no-passive-ftp --ca-certificate=/root/cacert.pem",filename, url);
		else
			sprintf(ftpbuf, "wget --tries=1 -O /mnt/%s -c %s -T 120 --no-passive-ftp --no-check-certificate",filename, url);

		DEBUG_INFO("Download command: %s\n",ftpbuf);

		systemresult = system(ftpbuf);
		if(systemresult != 0)
		{
			DEBUG_WARN("FTP download fail!\n");
			result = FALSE;
		}
	}
	system("pkill ping");

	return result;
}

int httpUploadFile(char *location, char *path, char *filename,char *url)
{
	char rmFileCmd[100]={0};
    char FilePath[100]={0};
	char buf[512];
	int systemresult = 0;

	//DEBUG_INFO("filename=%s\n",filename);
	//DEBUG_INFO("url=%s\n",url);
	sprintf(FilePath,"%s","/mnt/upload_file.txt");

	if((access(FilePath,F_OK))!=-1)
	{
		DEBUG_INFO("filename=%s exist.\n",FilePath);
		sprintf(rmFileCmd,"rm -f %s",FilePath);
		system(rmFileCmd);
	}

	FILE *fp = fopen("/mnt/upload_file.txt", "w+");
	if(fp == NULL)
	{
		DEBUG_INFO("log is NULL\n");
		return FALSE;
	}
	else
	{
		fprintf(fp, "%s\n", url);
		fprintf(fp, "%s\n", filename);
		fclose(fp);
	}

	FILE *phpFP = popen("/bin/php-cgi /var/www/ocpp_upload.php", "r");
	if(phpFP == NULL)
	{
		DEBUG_INFO("PHP upload fail.\n");
		return FALSE;
	}
	else
	{
		while(fgets(buf, sizeof(buf), phpFP) != NULL)
		{
			if(strstr(buf, "result") != NULL)
			{
				sscanf(buf, "result: %d", &systemresult);
				DEBUG_INFO("PHP HTTP upload result: %d\n", systemresult);
			}
		}
		pclose(phpFP);
	}

	if(systemresult != 1)
	{
		DEBUG_WARN("HTTP POST upload error, change to PUT method\n");
		FILE *phpFP = popen("/bin/php-cgi /var/www/ocpp_upload_put.php", "r");
		if(phpFP == NULL)
		{
			DEBUG_WARN("PHP PUT upload fail.\n");
			return FALSE;
		}
		else
		{
			while(fgets(buf, sizeof(buf), phpFP) != NULL)
			{
				if(strstr(buf, "result") != NULL)
				{
					sscanf(buf, "result: %d", &systemresult);
					DEBUG_INFO("PHP HTTP PUT upload result: %d\n", systemresult);
				}
			}
			pclose(phpFP);
		}
	}

	if(systemresult != 1)
	{
		DEBUG_WARN("PHP PUT upload fail.\n");
		return FALSE;
	}

	return TRUE;
}

int ftpUploadFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename)
{
	int result = FALSE;
	char ftpbuf[200];
	int systemresult;

	/*
	// Domaind name transfer to IP address
	struct hostent* server;
 	char *IPbuffer;
	server = gethostbyname(location);
	IPbuffer = inet_ntoa(*((struct in_addr*)server->h_addr_list[0]));*/

	memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));

	sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s", user, password, location, port/*21*/, path, filename, fnamePlusPath);
	DEBUG_INFO("ftp command: %s\n",ftpbuf);
	systemresult = system(ftpbuf);

	if(systemresult != 0)
	{
		DEBUG_INFO("ftpput error!\n");
	}
	else
	{
		result = TRUE;
		DEBUG_INFO("ftpput OK!\n");
	}

	return result;
}

int sftpUploadFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename)
{
	int result = FALSE;
	char ftpbuf[200];
	int systemresult;

	memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));

	sprintf(ftpbuf, "sshpass -p %s scp %s -P %d %s@%s:%s%s", password, fnamePlusPath, port, user, location, path, filename);

	DEBUG_INFO("sftp command: %s\n",ftpbuf);
	systemresult = system(ftpbuf);

	if(systemresult != 0)
	{
		DEBUG_INFO("sshpass error!\n");
	}
	else
	{
		result = TRUE;
		DEBUG_INFO("sshpass OK!\n");
	}

	return result;
}

int GetOcppServerURL()
{
    int result = FALSE;
	memset(OcppProtocol, 0, ARRAY_SIZE(OcppProtocol));
	memset(OcppHost, 0, ARRAY_SIZE(OcppHost));
	memset(OcppTempPath, 0, ARRAY_SIZE(OcppTempPath));
	struct yuarel url;
	char urlStr[512];

	// OCPPPH only
	sprintf((char*)ShmOCPP16DataPH->ChargeBoxId, "%s%s", ShmSysConfigAndInfo->SysConfig.ModelName, ShmSysConfigAndInfo->SysConfig.SerialNumber);
	if((ShmSysConfigAndInfo->SysConfig.MaintainServerURL != NULL) && (strcmp((const char *)ShmSysConfigAndInfo->SysConfig.MaintainServerURL,"") != 0) )
	{
		/*sscanf((const char *)ShmOCPP16DataPH->OcppServerURL,
								"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
								OcppProtocol, OcppHost, &OcppPort, OcppTempPath);*/

		memcpy(urlStr, ShmSysConfigAndInfo->SysConfig.MaintainServerURL, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.MaintainServerURL));
		if(yuarel_parse(&url, urlStr) != -1)
		{
			sprintf(OcppProtocol, "%s", url.scheme);
			sprintf(OcppHost, "%s", url.host);
			if(url.path == NULL)
				OcppTempPath[0] = '\0';
			else
				sprintf(OcppTempPath, "%s", url.path);

			if(url.port == 0)
			{
				if(strcmp(OcppProtocol, "wss") == 0)
					OcppPort = 443;
				else
					OcppPort = 80;
			}
			else
				OcppPort = url.port;

			result = TRUE;
		}
	}
	else
	{
		strcpy(OcppHost,"");
	}

	return result;
}

int GetOcppPath()
{
	int result = FALSE;
	if((ShmOCPP16DataPH->ChargeBoxId != NULL) && (strcmp((const char *)ShmOCPP16DataPH->ChargeBoxId,"") != 0))
	{
		if(OcppTempPath == NULL)
		{
			sprintf(OcppPath,"/%s",ShmOCPP16DataPH->ChargeBoxId);
		}
		else
		{
			sprintf(OcppPath,"/%s%s",OcppTempPath,ShmOCPP16DataPH->ChargeBoxId);
		}
		result = TRUE;
		goto End;
	}
	else
	{
		strcpy(OcppPath,"");
	}

End:
	return result;
}

int GetOcppPort()
{
	return OcppPort;
}

int GetOcppConnStatus(void)
{
	return ShmSysConfigAndInfo->SysInfo.MaintainServerConnStatus;
}

void SetOcppConnStatus(uint8_t status)
{
	ShmOCPP16DataPH->OcppConnStatus = status;
	ShmSysConfigAndInfo->SysInfo.MaintainServerConnStatus = status;
}

int GetHeartBeatWithNOResponse(void)
{
	return HeartBeatWithNOResponse;
}

void SetHeartBeatWithNOResponse(void)
{
	HeartBeatWithNOResponse = 0;
}

void GetStartTransactionIdTag(int gun_index)
{
	memset(StartTransactionIdTagTemp, 0 ,ARRAY_SIZE(StartTransactionIdTagTemp));
	strcpy((char *)StartTransactionIdTagTemp, (const char *)ShmOCPP16DataPH->StartTransaction[gun_index].IdTag);
}

int GetStartTransactionId(int gun_index)
{
	return ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId;
}

int GetTransactionId(int gunindex, unsigned char idTag[], uint8_t isStopTransaction)
{
	char ch;
	FILE *fptr1;
	int temptransactionId;
	char str[100]={0};

	temptransactionId = 0;

	if(((strcmp((const char*)idTag, "")==0)||(idTag[0]=='\0')) && isStopTransaction)
	{
		DEBUG_INFO("IdTag is empty.\n");
		return temptransactionId;
	}

	/*------ Read the file ----------------*/
	fptr1=fopen("/Storage/OCPP_PH/QueueTransactionId","r");
	if (!fptr1)
	{
		DEBUG_INFO("QueueTransactionId file open error.\n");
		//printf(" File not found or unable to open the input file!!\n");
		return temptransactionId;
	}

	ch=fgetc(fptr1);
	//printf(" Now the content of the file %s is : \n","/Storage/OCPP_PH/QueueTransactionId");
	rewind(fptr1);
	if(ch!=EOF)
	{
	   // printf("%c",ch);
		while (fgets(str, 100, fptr1) != NULL)
		{
			str[strlen(str) - 1] = '\0'; // eat the newline fgets() stores

			if(str[0]=='\0')
			{
				break;
			}
			char *revbuf[8] = {0}; // Variable store string split
			int num = 0;// Quantity after string split
			DEBUG_INFO("Transaction queue data= %s\n", str);
			splitstring(str,",",revbuf,&num); // String split
			DEBUG_INFO("             revbuf[0]= %s\n", revbuf[0]);
			DEBUG_INFO("             revbuf[1]= %s\n", revbuf[1]);
			DEBUG_INFO("             revbuf[2]= %s\n", revbuf[2]);
			DEBUG_INFO("------------------------------\n");
			if((revbuf[1][0] != '\0')&&(revbuf[2][0] != '\0'))
			{
				if(isStopTransaction)
				{
					if((atoi(revbuf[0])==gunindex) && (strcmp(revbuf[1],(const char *)idTag)==0))
					{
						temptransactionId = atoi(revbuf[2]);
						//break;
					}
				}
				else
				{
					if((atoi(revbuf[0])==gunindex) || (strcmp(revbuf[1],(const char *)idTag)==0))
					{
						temptransactionId = atoi(revbuf[2]);
						//break;
					}
				}
			}
		}
	}
	else
		DEBUG_INFO("EOF\n");


	fclose(fptr1);
	/*------- End of reading ---------------*/
	return temptransactionId;
}

void SetTransactionIdZero(int transactionId)
{
    char ch;
    FILE *fptr1, *fptr2;
	int temptransactionId = 0;
    char str[100]={0}, strtemp[100]={0}, temp[] = "/Storage/OCPP_PH/QueueTransactionIdtemp.json";

    fptr1 = fopen("/Storage/OCPP_PH/QueueTransactionId", "r");
    if (!fptr1)
	{
    	//printf(" File not found or unable to open the input file!!\n");
        return ;
    }

    fptr2 = fopen(temp, "w"); // open the temporary file in write mode
    if (!fptr2)
	{
        DEBUG_INFO("Unable to open a temporary file to write!!\n");
        fclose(fptr1);
        return ;
    }

    ch=fgetc(fptr1);

    rewind(fptr1);
    if(ch!=EOF)
    {
    	// copy all contents to the temporary file except the specific line
    	while (fgets(str, 100, fptr1) != NULL)
    	{
    		str[strlen(str) - 1] = '\0'; // eat the newline fgets() stores

    		if(str[0]=='\0')
    		{
    			break;
    		}

    		char *revbuf[8] = {0};
    		int num = 0;

    		strcpy(strtemp, str);
    		splitstring(str,",",revbuf,&num);

    		if(revbuf[2][0] != '\0')
    		{
    			temptransactionId = atoi(revbuf[2]);
    			if(transactionId != temptransactionId)
    			{
    			   fprintf(fptr2, "%s\n", strtemp);
    			}
    		}
    	}
    }
    fclose(fptr1);
    fclose(fptr2);
    remove("/Storage/OCPP_PH/QueueTransactionId");  		// remove the original file
    rename(temp, "/Storage/OCPP_PH/QueueTransactionId"); 	// rename the temporary file to original name
/*------ Read the file ----------------*/

}

int InternetDisconnect(void)
{
	return (ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectVia4Gi && ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet && ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi	);
}

//Note: It is not real StopTransaction. It is temporary StopTransaction.
void storeTempStopTransaction(int gun_index)
{
	char guid[37]={0};
	int tempIndex = 0;
	char TempStopTransaction[256];
	sprintf(TempStopTransaction, "/Storage/OCPP_PH/TempStopTransaction_%d", (gun_index+1));

	DEBUG_INFO("storeTempStopTransaction...\n");
	memset(queuedata, 0, ARRAY_SIZE(queuedata));
	memset(&ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0], 0, ARRAY_SIZE(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData));
	//======================== ENERGY_ACTIVE_IMPORT_REGISTER =======================================
	//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DCcc
	if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < CHAdeMO_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption*1000);
			}
		}// END OF CHAdeMO_QUANTITY
	}
	else if(gunType[gun_index] == GUN_TYPE_CCS)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < CCS_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption*1000);
			}
		}// END OF CCS_QUANTITY

	}
	else if(gunType[gun_index] == GUN_TYPE_GBT)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < GB_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption*1000);
			}
		}// END OF GB_QUANTITY
	}
	else if(gunType[gun_index] == GUN_TYPE_DO)
	{
		tempIndex = gun_index;

		for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
			{
				ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption*1000);
			}
		}
	}
	else
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
		{
			tempIndex = 2;
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < AC_QUANTITY; index++)
		{
			if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
			{
				ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption*1000);
			}
		}// END OF AC_QUANTITY
	}

	//Stop Transaction Time
	struct timeval tmnow;
	struct tm *tm;
	char buf[28];//, usec_buf[6];
	gettimeofday(&tmnow, NULL);

	time_t t;
	t = time(NULL);
	/*UTC time and date*/
	tm = gmtime(&t);
	strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm);

	strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].Timestamp,buf);
	ShmOCPP16DataPH->StopTransaction[gun_index].TransactionId = ShmOCPP16DataPH->StartTransaction[gun_index].ResponseTransactionId;
	strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].IdTag, (const char*)ShmOCPP16DataPH->StartTransaction[gun_index].IdTag);

	random_uuid(guid);

	/***********************************transactionData******************************************************/
	memset(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData, 0, sizeof(struct StructMeterValue));
	strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].TimeStamp, buf);

	//=================================
	//1. Transaction_Begin
	//=================================
	//============================== Energy.Active.Import.Interval ===========================================

	//=================================
	//2. Transaction_End
	//=================================
	//2.1====================================== Current.Import L1 ==============================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL)
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G : GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
				}
			}// End of for CHAdeMO_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
				}
			}// End of for CCS_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
				}
			}// End of for GB_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
				}
			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent );//  0~6553.5 amp for EVSE
				}
			}// End of for AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Measurand,MeasurandStr[Current_Import]);
		//strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L1_N]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
	}

	//2.2===================================== Energy.Active.Import.Interval ==========================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Energy.Active.Import.Interval") != NULL)
	{
		//J: CHAdeMO  U: CCS1 combo   E: CCS2 combo   G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh
				}
			}// END OF CHAdeMO_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]);

		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh
				}
			}// END OF CCS_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]);

		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh
				}
			}// END OF GB_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh
				}
			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}


			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh
				}
			}// END OF AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Measurand,MeasurandStr[Energy_Active_Import_Interval]);
		//strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L1_N]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]);
	}

	//2.3====================================== Power.Active.Import =========================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Power.Active.Import") != NULL)
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower );//  PresentChargingPower is 0~6553.5 kW
				}
			} // End for CHAdeMO_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
				}
			} // END for CCS_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
				}
			}// END for GB_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
				}
			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
				}
			} // END for AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Measurand,MeasurandStr[Power_Active_Import]);
		//strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L1_N]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Unit,UnitOfMeasureStr[UnitOfMeasure_kW/*UnitOfMeasure_kWh*/]);
	}

	//2.4====================================== Voltage L1 ====================================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL)
	{
		//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CHAdeMO_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
				}
			} // END OF FOR CHAdeMO_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]);

		}
		else if(gunType[gun_index] == GUN_TYPE_CCS)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < CCS_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
				}
			} // END OF  FOR CCS_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_GBT)
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < GB_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
				}
			} // END OF FOR GB_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]);
		}
		else if(gunType[gun_index] == GUN_TYPE_DO)
		{
			tempIndex = gun_index;

			for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
				}
			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]);
		}
		else
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltage );//AcChargingVoltage is 0~6553.5 volt  for AC EVSE
				}
			} // END OF FOR AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L1_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Measurand,MeasurandStr[Voltage]);
		//strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L1_N]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
	}


	//2.5============================================== End SoC =========================================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, MeasurandStr[SoC]) != NULL)
	{
		//J : CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if((gunType[gun_index] == GUN_TYPE_CHAdeMO)||(gunType[gun_index] == GUN_TYPE_CCS)||(gunType[gun_index] == GUN_TYPE_GBT)||(gunType[gun_index] == GUN_TYPE_DO))
		{
			if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != GUN_TYPE_DO))
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
			{
				for (int index = 0; index < CHAdeMO_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );// 0~100%
					}
				}
			}
			else if(gunType[gun_index] == GUN_TYPE_CCS)
			{
				for (int index = 0; index < CCS_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );// 0~100%
					}
				}

			}
			else if(gunType[gun_index] == GUN_TYPE_GBT)
			{
				for (int index = 0; index < GB_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );// 0~100%
					}
				}

			}
			else if(gunType[gun_index] == GUN_TYPE_DO)
			{
				for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatterySoc );// 0~100%
					}
				}

			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Context,ReadingContextStr[ReadingContext_Transaction_End]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Format,ValueFormatStr[Raw]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Measurand,MeasurandStr[SoC/*Energy_Reactive_Export_Register*/]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Phase,PhaseStr[L3_N]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Location,LocationStr[Location_EV]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent/*UnitOfMeasure_kWh*/]);

		} // END FOR DC CASE
	}

	//2.6====================================== Current.Import L2 ==============================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL)
	{
		// AC 3 phase L2 current
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL2);//  0~6553.5 amp for EVSE
				}
			}// End of for AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Phase,PhaseStr[L2_N]);
		}
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Measurand,MeasurandStr[Current_Import]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
	}

	//2.7====================================== Current.Import L3 ==============================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL)
	{
		// AC 3 phase L3 current
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL3);//  0~6553.5 amp for EVSE
				}
			}// End of for AC_QUANTITY
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Phase,PhaseStr[L3_N]);
		}
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Measurand,MeasurandStr[Current_Import]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
	}

	//2.9====================================== Voltage L2 ====================================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL)
	{
		// AC 3 phase L2 volatge
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL2 );//AcChargingVoltage is 0~6553.5 volt  for AC EVSE
				}
			} // END OF FOR AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Phase,PhaseStr[L2_N]);
		}

		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Measurand,MeasurandStr[Voltage]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
	}

	//2.10====================================== Voltage L3 ====================================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL)
	{
		// AC 3 phase L3 volatge
		if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D')))
		{
			if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
			{
				tempIndex = 2;
			}
			else
			{
				tempIndex = gun_index;
			}

			for (int index = 0; index < AC_QUANTITY; index++)
			{
				if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
				{
					sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL3 );//AcChargingVoltage is 0~6553.5 volt  for AC EVSE
				}
			} // END OF FOR AC_QUANTITY

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Phase,PhaseStr[L3_N]);
		}
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Context,ReadingContextStr[ReadingContext_Transaction_End]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Format,ValueFormatStr[Raw]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Measurand,MeasurandStr[Voltage]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Location,LocationStr[Location_Outlet]);
		strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
	}

	//====================== Start SoC ================================
	if(strstr((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, MeasurandStr[SoC]) != NULL)
	{
		//J : CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DC
		if((gunType[gun_index] == GUN_TYPE_CHAdeMO)||(gunType[gun_index] == GUN_TYPE_CCS)||(gunType[gun_index] == GUN_TYPE_GBT)||(gunType[gun_index] == GUN_TYPE_DO))
		{
			if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != GUN_TYPE_DO))
			{
				tempIndex = ((gun_index==2) ? 1: 0);
			}
			else
			{
				tempIndex = gun_index;
			}

			if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
			{
				for (int index = 0; index < CHAdeMO_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatteryStartSoc );// 0~100%
					}
				}
			}
			else if(gunType[gun_index] == GUN_TYPE_CCS)
			{
				for (int index = 0; index < CCS_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatteryStartSoc );// 0~100%
					}
				}

			}
			else if(gunType[gun_index] == GUN_TYPE_GBT)
			{
				for (int index = 0; index < GB_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatteryStartSoc );// 0~100%
					}
				}

			}
			else if(gunType[gun_index] == GUN_TYPE_DO)
			{
				for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
				{
					if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
					{
						sprintf((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatteryStartSoc );// 0~100%
					}
				}

			}

			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Context,ReadingContextStr[ReadingContext_Transaction_Begin]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Format,ValueFormatStr[Raw]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Measurand,MeasurandStr[SoC/*Energy_Reactive_Export_Register*/]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Phase,PhaseStr[L3_N]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Location,LocationStr[Location_EV]);
			strcpy((char *)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent/*UnitOfMeasure_kWh*/]);

		} // END FOR DC CASE
	}


	//======================================== Message create ==============================================
	json_object *StopTransaction = json_object_new_object();
	json_object *transactionDatas = json_object_new_array();
	json_object *sampledValues = json_object_new_array();

	if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].IdTag) > 0)
		json_object_object_add(StopTransaction, "idTag", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].IdTag));

	json_object_object_add(StopTransaction, "meterStop", json_object_new_int(ShmOCPP16DataPH->StopTransaction[gun_index].MeterStop));
	json_object_object_add(StopTransaction, "transactionId", json_object_new_int(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionId));
	json_object_object_add(StopTransaction, "timestamp", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].Timestamp));
	json_object_object_add(StopTransaction, "reason", json_object_new_string("PowerLoss"));

	for(int idxTrans = 0;idxTrans<ARRAY_SIZE(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData);idxTrans++)
	{
		json_object *transactionData = json_object_new_object();
		json_object_object_add(transactionData, "timestamp", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].TimeStamp));

		for(int idx=0;idx<ARRAY_SIZE(ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue);idx++)
		{
			if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Value) > 0)
			{
				json_object *sampledValue = json_object_new_object();

				json_object_object_add(sampledValue, "value", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Value));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Context) > 0)
					json_object_object_add(sampledValue, "context", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Context));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Format) > 0)
					json_object_object_add(sampledValue, "format", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Format));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Measurand) > 0)
					json_object_object_add(sampledValue, "measurand", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Measurand));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Phase) > 0)
					json_object_object_add(sampledValue, "phase", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Phase));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Location) > 0)
					json_object_object_add(sampledValue, "location", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Location));

				if(strlen((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Unit) > 0)
					json_object_object_add(sampledValue, "unit", json_object_new_string((char*)ShmOCPP16DataPH->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Unit));

				json_object_array_add(sampledValues, sampledValue);
			}
		}

		json_object_object_add(transactionData, "sampledValue", sampledValues);
		json_object_array_add(transactionDatas, transactionData);
	}
	json_object_object_add(StopTransaction, "transactionData", transactionDatas);

	sprintf(queuedata, "%d,[%d,\"%s\",\"StopTransaction\",%s]",(gun_index+1)
															  ,MESSAGE_TYPE_CALL
															  ,guid
															  ,json_object_to_json_string_ext(StopTransaction, JSON_C_TO_STRING_PLAIN));
	json_object_put(StopTransaction);

	// Check File "TempStopTransaction" Exist
	if((access(TempStopTransaction,F_OK))!=-1)
	{
		//DEBUG_INFO("TransactionRelatedQueue exist.\n");
		fclose(fopen(TempStopTransaction, "w"));
	}
	else
	{
		//DEBUG_INFO("TransactionRelatedQueue not exist\n");
		FILE *log = fopen(TempStopTransaction, "w+");

		if(log == NULL)
		{
			//DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
			return ;
		}
		else
		{
			fclose(log);
		}
	}

	//Add TempStopTransaction | Update TempStopTransaction
	// open file for writing
	FILE *outfile;
	outfile = fopen (TempStopTransaction, "a");
	//DEBUG_INFO("data = %s\n", queuedata);
	fputs(queuedata, outfile);
	fputs("\n", outfile);
	fclose (outfile);
	system("/bin/fsync -d /dev/mtdblock13;/bin/sync &");
}

void checkTempStopTransaction(int gun_index)
{
	FILE *fptr1;
	char ch;
	char str[QUEUE_MESSAGE_LENGTH]={0};
	char guid[37]={0};
	char tempdata[65]={0};
	char connectorStr[2]={0};
	char TempStopTransaction[256];
	sprintf(TempStopTransaction, "/Storage/OCPP_PH/TempStopTransaction_%d", (gun_index+1));

	fptr1 = fopen(TempStopTransaction, "r");

	//TempStopTransaction格式: 槍號,StopTransaction封包
	if (!fptr1)
	{
		//printf(" File not found or unable to open the input file!!\n");
	    return ;
	}

	ch=fgetc(fptr1);
	//printf(" Now the content of the file %s is : \n",fname);

	rewind(fptr1);
	if(ch!=EOF)
	{
		// copy all contents to the temporary file except the specific line
		while (fgets(str, QUEUE_MESSAGE_LENGTH, fptr1) != NULL)
		{
			str[strlen(str) - 1] = '\0'; // eat the newline fgets() stores

			if(str[0]=='\0')
			{
				break;
			}

			//TempStopTransaction格式: 槍號,StopTransaction封包
			strncpy(connectorStr, str, 1);
			if(atoi(connectorStr) != (gun_index+1))
			{
				DEBUG_INFO("atoi(connectorStr) = %d, gun_index = %d\n", atoi(connectorStr), gun_index);
				fclose(fptr1);
				return ;
			}

			//random_uuid(guid);
			strncpy(guid, str+6, 36); //copy guid
			sprintf(tempdata, "StopTransaction,%d", (gun_index));
			if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)
			{
				//DEBUG_INFO("StopTransaction mapitem pass\n");
			}
			queue_operation(QUEUE_OPERATION_ADD, guid, str);//addq(guid, queuedata); ---> remove temporally
			OCPP_insert_transaction_msg(NO, str);
			memset(str,0,ARRAY_SIZE(str));
		}
	}

	// fptr1=freopen(NULL,"w",fptr1); // reset the fptr1 again
	fclose(fptr1);
	remove(TempStopTransaction);  		// remove the original file
	system("/bin/fsync -d /dev/mtdblock13;/bin/sync &");
}

void FillStartTransaction(int ConnectorId, unsigned char IdTag[], int MeterStart,int ReservationId,unsigned char Timestamp[])
{
	ShmOCPP16DataPH->StartTransaction[ConnectorId-1].ConnectorId = ConnectorId;
	ShmOCPP16DataPH->StartTransaction[ConnectorId-1].ReservationId = ReservationId;
	ShmOCPP16DataPH->StartTransaction[ConnectorId-1].MeterStart = MeterStart;
	strcpy((char *)ShmOCPP16DataPH->StartTransaction[ConnectorId-1].IdTag, (char *)IdTag);
	strcpy((char *)ShmOCPP16DataPH->StartTransaction[ConnectorId-1].Timestamp,(char *) Timestamp);
}

int GetWebSocketPingInterval(void)
{
	return atoi((const char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData);
}

int GetServerSign(void)
{
	return server_sign;
}

uint8_t GetOcppSecurityProfile()
{
	return atoi((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[SecurityProfile].ItemData);
}

void GetOcppChargerBoxId(uint8_t *data)
{
	sprintf((char*)data, "%s", ShmOCPP16DataPH->ChargeBoxId);
}

void GetOcppSecurityPassword(uint8_t *data)
{
	sprintf((char*)data, "%s", ShmOCPP16DataPH->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData);
}

void SetOcppVersion(uint8_t *version)
{
	for (uint8_t idx=0; idx<strlen((char*)version); idx++) version[idx] = tolower(version[idx]);

	DEBUG_INFO("ocpp version: %s\n", version);
	if(strstr((char*)version, "ocpp1.6") != NULL)
	{
		ShmSysConfigAndInfo->SysInfo.OcppRunningVer = OCPP_RUNNING_VERSION_16;
	}
	else if(strstr((char*)version, "ocpp2.0") != NULL)
	{
		ShmSysConfigAndInfo->SysInfo.OcppRunningVer = OCPP_RUNNING_VERSION_20;
		system("pkill OcppBackend");
	}
}

void SetServerSign(int value)
{
	server_sign = value;
}

int GetBootNotificationInterval(void)
{
	return BootNotificationInterval;
}

int GetInternetConn(void)
{
	return ShmSysConfigAndInfo->SysInfo.InternetConn;
}

int GetBackendConnectionTimeout(void)
{
	return ShmSysConfigAndInfo->SysConfig.BackendConnTimeout>=0?ShmSysConfigAndInfo->SysConfig.BackendConnTimeout:300;
}

int isConnectorInitMode(int gun_index)
{
	int tempIndex = 0;
	int result = TRUE;

	//J: CHAdeMO  U: CCS1 combo  E: CCS2 combo  G: GBT DCcc
	if(gunType[gun_index] == GUN_TYPE_CHAdeMO)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < CHAdeMO_QUANTITY; index++)
		{
			if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex))
			{
				result = (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus==SYS_MODE_BOOTING)?TRUE:FALSE;
			} //end of the same index
		}//end of for CHAdeMO_QUANTITY

	}
	else if(gunType[gun_index] == GUN_TYPE_CCS)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < CCS_QUANTITY; index++)
		{
			if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex)
			{
				result = (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus==SYS_MODE_BOOTING)?TRUE:FALSE;
			} //end of the same index
		} // end of for CCS_QUANTITY
	}
	else if(gunType[gun_index] == GUN_TYPE_GBT)
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0')
		{
			tempIndex = ((gun_index==2) ? 1: 0);
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < GB_QUANTITY; index++)
		{
			if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex)
			{
				result = (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus==SYS_MODE_BOOTING)?TRUE:FALSE;
			} //end of the same index
		} // end of for GB_QUANTITY
	}
	else if(gunType[gun_index] == GUN_TYPE_DO)
	{
		tempIndex = gun_index;

		for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
		{
			if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex)
			{
				result = (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus==SYS_MODE_BOOTING)?TRUE:FALSE;
			} //end of the same index
		}
	}
	else
	{
		if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
		{
			tempIndex = 2;
		}
		else
		{
			tempIndex = gun_index;
		}

		for (int index = 0; index < AC_QUANTITY; index++)
		{
			if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
			{
				result = (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus==SYS_MODE_BOOTING)?TRUE:FALSE;
			}//end of the same index

		}//end of for AC_QUANTITY
	}

	return result;
}

void refreshProcDogTimer()
{
	ShmOCPP16DataPH->procDogTime = time((time_t*)NULL);
}

void InitialSystemValue(void)
{
	server_cycle_Status = atoi((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData);
	locallistVersion=0;
	BootNotificationInterval = 0;
	authorizeRetryTimes = 0;
	GunStatusInterval = 10;
	TransactionMessageAttemptsValue = atoi((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData);
	TransactionMessageRetryIntervalValue = atoi((char *)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);

	//Heart Beat
	HeartBeatWithNOResponse = 0;
	HeartBeatWaitTime = atoi((char*)ShmOCPP16DataPH->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData);
	if(HeartBeatWaitTime == 0)
		FirstHeartBeat = TRUE;
	else
		FirstHeartBeat = FALSE;

	FirmwareStatusNotificationStatus = FIRMWARE_STATUS_IDLE;  // Idle
	DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_IDLE; // Idle

	memset(CurrentChargingProfileScheduleStr, 0, ARRAY_SIZE(CurrentChargingProfileScheduleStr));
	memset(ChademoPreviousSystemStatus, 0, ARRAY_SIZE(ChademoPreviousSystemStatus));
	memset(CcsPreviousSystemStatus, 0, ARRAY_SIZE(CcsPreviousSystemStatus));
	memset(GbPreviousSystemStatus, 0, ARRAY_SIZE(GbPreviousSystemStatus));
	memset(AcPreviousSystemStatus, 0, ARRAY_SIZE(AcPreviousSystemStatus));
	memset(ChademoPreviousConnectorPlugIn, 0, ARRAY_SIZE(ChademoPreviousConnectorPlugIn));
	memset(CcsPreviousConnectorPlugIn, 0, ARRAY_SIZE(CcsPreviousConnectorPlugIn));
	memset(GbPreviousConnectorPlugIn, 0, ARRAY_SIZE(GbPreviousConnectorPlugIn));
	memset(AcPreviousConnectorPlugIn, 0, ARRAY_SIZE(AcPreviousConnectorPlugIn));

	//Status &&  ConnectorPlugIn Setting
	for (int index = 0; index < CHAdeMO_QUANTITY; index++)
	{
		ChademoPreviousSystemStatus[index]= 99; //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus;
		ChademoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn;
	}

	for (int index = 0; index < CCS_QUANTITY; index++)
	{
		CcsPreviousSystemStatus[index] = 99; //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PreviousSystemStatus;
		CcsPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn;
	}

	for (int index = 0; index < GB_QUANTITY; index++)
	{
		GbPreviousSystemStatus[index] = 99; //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PreviousSystemStatus;
		GbPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn;
	}

	for (int index = 0; index < AC_QUANTITY; index++)
	{
		AcPreviousSystemStatus[index]= 99; //ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PreviousSystemStatus;
		AcPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState;
	}

	for (int index = 0; index < GENERAL_GUN_QUANTITY; index++)
	{
		DoPreviousSystemStatus[index]= 99; //ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PreviousSystemStatus;
		DoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PilotState;
	}

	for(int gun_index=0; gun_index < gunTotalNumber; gun_index++ )
	{
		cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq = 0;
		cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
		cpinitateMsg.bits[gun_index].StatusNotificationConf = 0;
		//clientTime.MeterValues[gun_index] = time((time_t*)NULL);
		//memset(&ShmOCPP16DataPH->StatusNotification[gun_index], 0x00, sizeof(struct StructStatusNotification));
		memset(&ShmOCPP16DataPH->StatusNotification[gun_index].Status, 0x00, sizeof(ShmOCPP16DataPH->StatusNotification[gun_index].Status));
	}

	memset( (void *)unknownkey, 0, sizeof(unknownkey));

	refreshStartTimer(&clientTime.Heartbeat);

	sleep(1);
}

void LWS_Send(char *str)
{
	//=====================================================
	// Check InternetConn 0: disconnected, 1: connected
	//====================================================
	if(GetOcppConnStatus() == 0)
	{
		DEBUG_INFO("offline  now !!!\n");
		return;
	}

	 // Only disable isWebsocketSendable operation initiated by charger
	if((strstr((char*)str, "\"Authorize\"") != NULL)
    || (strstr((char*)str, "\"BootNotification\"") != NULL)
	|| (strstr((char*)str, "\"DataTransfer\"") != NULL)
	|| (strstr((char*)str, "\"DiagnosticsStatusNotification\"") != NULL)
	|| (strstr((char*)str, "\"FirmwareStatusNotification\"") != NULL)
	|| (strstr((char*)str, "\"Heartbeat\"") != NULL)
	|| (strstr((char*)str, "\"MeterValues\"") != NULL)
	|| (strstr((char*)str, "\"StartTransaction\"") != NULL)
	|| (strstr((char*)str, "\"StatusNotification\"") != NULL)
	|| (strstr((char*)str, "\"StopTransaction\"") != NULL)
	|| (strstr((char*)str, "\"LogStatusNotification\"") != NULL)
	|| (strstr((char*)str, "\"SecurityEventNotification\"") != NULL)
	|| (strstr((char*)str, "\"SignCertificate\"") != NULL)
	|| (strstr((char*)str, "\"SignedFirmwareStatusNotification\"") != NULL))
    {
    	isWebsocketSendable = 0;
    }

	pthread_mutex_lock(&lock_send);
	memset(SendBuffer, 0, ARRAY_SIZE(SendBuffer));
	sprintf((char *)SendBuffer, "%s", str);
	SendBufLen = strlen(str);
	pthread_mutex_unlock(&lock_send);

	lws_callback_on_writable(wsi_client);
	//lws_service(context, 0);
	//sleep(1);
}

void LWS_SendNow(char *str)
{
	//=====================================================
	// Check InternetConn 0: disconnected, 1: connected
	//====================================================
	if(GetOcppConnStatus() == 0)
	{
		DEBUG_INFO("offline  now !!!\n");
		return;
	}

	 // Only disable isWebsocketSendable operation initiated by charger
	if((strstr((char*)str, "\"Authorize\"") != NULL)
    || (strstr((char*)str, "\"BootNotification\"") != NULL)
	|| (strstr((char*)str, "\"DataTransfer\"") != NULL)
	|| (strstr((char*)str, "\"DiagnosticsStatusNotification\"") != NULL)
	|| (strstr((char*)str, "\"FirmwareStatusNotification\"") != NULL)
	|| (strstr((char*)str, "\"Heartbeat\"") != NULL)
	|| (strstr((char*)str, "\"MeterValues\"") != NULL)
	|| (strstr((char*)str, "\"StartTransaction\"") != NULL)
	|| (strstr((char*)str, "\"StatusNotification\"") != NULL)
	|| (strstr((char*)str, "\"StopTransaction\"") != NULL)
	|| (strstr((char*)str, "\"LogStatusNotification\"") != NULL)
	|| (strstr((char*)str, "\"SecurityEventNotification\"") != NULL)
	|| (strstr((char*)str, "\"SignCertificate\"") != NULL)
	|| (strstr((char*)str, "\"SignedFirmwareStatusNotification\"") != NULL))
	{
		isWebsocketSendable = 0;
	}

	pthread_mutex_lock(&lock_send);
	memset(SendBuffer, 0, ARRAY_SIZE(SendBuffer));
	sprintf((char *)SendBuffer, "%s", str);
	SendBufLen = strlen(str);
	pthread_mutex_unlock(&lock_send);

	lws_callback_on_writable(wsi_client);
	lws_service(context, 0);
	//sleep(1);
}