blob: 465554b666e36b095dc98daaa441245afdaa667d [file] [log] [blame]
/*
* 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 "PSTObject.hpp"
#include <fwklib/GsRandom.hpp>
#include <sstream>
#include "ArrayOfByte.hpp"
namespace testobject {
PSTObject::PSTObject(int size, bool encodeKey) {
timestamp = std::chrono::system_clock::now().time_since_epoch().count();
field1 = 1234;
field2 = '*';
if (size == 0) {
valueData = nullptr;
} else {
encodeKey = true;
valueData = ArrayOfByte::init(size, encodeKey, false);
}
}
void PSTObject::toData(apache::geode::client::DataOutput& output) const {
output.writeInt(static_cast<int64_t>(timestamp));
output.writeInt(static_cast<int32_t>(field1));
output.write(field2);
output.writeObject(valueData);
}
void PSTObject::fromData(apache::geode::client::DataInput& input) {
timestamp = input.readInt64();
field1 = input.readInt32();
field2 = input.read();
valueData = std::dynamic_pointer_cast<CacheableBytes>(input.readObject());
}
std::string PSTObject::toString() const {
std::stringstream strm;
strm << "PSTObject:[timestamp = " << timestamp << " field1 = " << field1
<< " field2 = " << field2 << " valueData = " << valueData->length()
<< "]";
return strm.str();
}
} // namespace testobject