blob: 1f112f1a1b12e9fdf085c3526a51c44ec78972ab [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "PortfolioPdx.hpp"
using namespace apache::geode::client;
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);
}