blob: e4c0586b0a4dd8711156d14b0f37a2ab55ad0ad3 [file] [log] [blame]
/*=========================================================================
* Copyright (c) 2010-2014 Pivotal Software, Inc. All Rights Reserved.
* This product is protected by U.S. and international copyright
* and intellectual property laws. Pivotal products are covered by
* one or more patents listed at http://www.pivotal.io/patents.
*=========================================================================
*/
#include "PortfolioPdx.hpp"
#ifdef HAVE_MALLOC_H
#include <malloc.h>
#endif
using namespace gemfire;
using namespace testobject;
const char* PortfolioPdx::secIds[] = { "SUN", "IBM", "YHOO", "GOOG", "MSFT",
"AOL", "APPL", "ORCL", "SAP", "DELL"};
PortfolioPdx::PortfolioPdx(int32_t i, int32_t size, char** nm) : names(nm) {
id = i;
char pkidbuf[256];
sprintf(pkidbuf,"%d",i);
size_t strSize = strlen(pkidbuf) + 1;
pkid = new char[strSize];
memcpy(pkid, pkidbuf, strSize);
const char* statusStr = (i % 2 == 0) ? "active" : "inactive";
int32_t statusSize = static_cast<int32_t> (strlen( statusStr )) + 1;
status = new char[ statusSize ];
memcpy( status, statusStr, statusSize );
char buf[100];
sprintf( buf, "type%d", (i % 3) );
size_t strSize2 = strlen(buf) + 1;
type = new char[strSize2];
memcpy(type, buf, strSize2);
int numSecIds = sizeof(secIds)/sizeof(char*);
position1 = new PositionPdx(secIds[PositionPdx::cnt % numSecIds], PositionPdx::cnt * 1000);
if (i % 2 != 0) {
position2 = new PositionPdx(secIds[PositionPdx::cnt % numSecIds],PositionPdx::cnt * 1000);
}
else
{
position2 = NULLPTR;
}
positions = CacheableHashMap::create( );
positions->insert(CacheableString::create(secIds[PositionPdx::cnt % numSecIds]), position1);
if(size > 0){
newVal = new int8_t[size];
for(int index =0; index < size; index++){
newVal[index] = (int8_t)'B';
}
}
newValSize = size;
time_t timeVal = 1310447869;
creationDate = CacheableDate::create( timeVal );
arrayNull = NULL;
arrayZeroSize = new int8_t[0];
}
PortfolioPdx::~PortfolioPdx() {
if ( newVal != NULL ) {
delete [] newVal;
newVal = NULL;
}
if ( status != NULL ) {
delete [] status;
status = NULL;
}
if ( pkid != NULL ) {
delete [] pkid;
pkid = NULL;
}
if ( type != NULL ) {
delete [] type;
type = NULL;
}
if ( newVal != NULL ) {
delete [] newVal;
newVal = NULL;
}
}
void PortfolioPdx::toData( PdxWriterPtr pw ) {
pw->writeInt("ID", id);
pw->markIdentityField("ID");
pw->writeString("pkid", pkid);
pw->markIdentityField("pkid");
pw->writeObject("position1", position1);
pw->markIdentityField("position1");
pw->writeObject("position2", position2);
pw->markIdentityField("position2");
pw->writeObject("positions", positions);
pw->markIdentityField("positions");
pw->writeString("type", type);
pw->markIdentityField("type");
pw->writeString("status", status);
pw->markIdentityField("status");
pw->writeStringArray("names", names, 0);
pw->markIdentityField("names");
pw->writeByteArray("newVal", newVal, newValSize);
pw->markIdentityField("newVal");
pw->writeDate("creationDate", creationDate);
pw->markIdentityField("creationDate");
pw->writeByteArray("arrayNull", arrayNull,0);
pw->writeByteArray("arrayZeroSize", arrayZeroSize,0);
}
void PortfolioPdx::fromData( PdxReaderPtr pr )
{
id = pr->readInt("ID");
pkid = pr->readString("pkid");
position1 = dynCast<PositionPdxPtr>(pr->readObject("position1"));
position2 = dynCast<PositionPdxPtr>(pr->readObject("position2"));
positions = dynCast<CacheableHashMapPtr>(pr->readObject("positions"));
type = pr->readString("type");
status = pr->readString("status");
int32_t strLenArray=0;
names = pr->readStringArray("names", strLenArray);
int32_t byteArrayLen=0;
newVal = pr->readByteArray("newVal", byteArrayLen);
creationDate = pr->readDate("creationDate");
int32_t arrayNullLen = 0;
arrayNull = pr->readByteArray("arrayNull", arrayNullLen);
int32_t arrayZeroSizeLen=0;
arrayZeroSize = pr->readByteArray("arrayZeroSize", arrayZeroSizeLen);
}
CacheableStringPtr PortfolioPdx::toString() const {
LOGINFO("PortfolioPdx::toString() Start");
char idbuf[1024];
sprintf(idbuf,"PortfolioPdxObject: [ id=%d ]",id);
char pkidbuf[1024];
if (pkid != NULL) {
sprintf(pkidbuf, " status=%s type=%s pkid=%s\n", this->status,
this->type, this->pkid);
}
else {
sprintf(pkidbuf, " status=%s type=%s pkid=%s\n", this->status,
this->type, this->pkid);
}
char position1buf[2048];
if (position1 != NULLPTR) {
sprintf(position1buf, "\t\t\t P1: %s", position1->toString()->asChar());
}
else {
sprintf(position1buf, "\t\t\t P1: %s", "NULL");
}
char position2buf[2048];
if (position2 != NULLPTR) {
sprintf(position2buf, " P2: %s", position2->toString()->asChar());
}
else {
sprintf(position2buf, " P2: %s ]", "NULL");
}
char creationdatebuf[2048];
if (creationDate != NULLPTR) {
sprintf(creationdatebuf, "creation Date %s",
creationDate->toString()->asChar());
}
else {
sprintf(creationdatebuf, "creation Date %s", "NULL");
}
char stringBuf[7000];
sprintf(stringBuf, "%s%s%s%s%s",idbuf,pkidbuf,creationdatebuf,position1buf,position2buf);
return CacheableString::create( stringBuf );
return CacheableString::create( idbuf );
}