| #pragma once |
| |
| #ifndef APACHE_GEODE_GUARD_6b0a46d8e03f0ffb9c53c7c14ef5eed4 |
| #define APACHE_GEODE_GUARD_6b0a46d8e03f0ffb9c53c7c14ef5eed4 |
| |
| /* |
| * 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. |
| */ |
| |
| /* |
| * @brief User class for testing the put functionality for object. |
| */ |
| |
| |
| #include <gfcpp/GeodeCppCache.hpp> |
| #include <string.h> |
| |
| #ifdef _WIN32 |
| #ifdef BUILD_TESTOBJECT |
| #define TESTOBJECT_EXPORT LIBEXP |
| #else |
| #define TESTOBJECT_EXPORT LIBIMP |
| #endif |
| #else |
| #define TESTOBJECT_EXPORT |
| #endif |
| |
| using namespace apache::geode::client; |
| |
| namespace testobject { |
| |
| class TESTOBJECT_EXPORT Position : public apache::geode::client::Serializable { |
| private: |
| int64_t avg20DaysVol; |
| CacheableStringPtr bondRating; |
| double convRatio; |
| CacheableStringPtr country; |
| double delta; |
| int64_t industry; |
| int64_t issuer; |
| double mktValue; |
| double qty; |
| CacheableStringPtr secId; |
| CacheableStringPtr secLinks; |
| // wchar_t* secType; |
| wchar_t* secType; |
| int32_t sharesOutstanding; |
| CacheableStringPtr underlyer; |
| int64_t volatility; |
| int32_t pid; |
| |
| inline uint32_t getObjectSize(const SerializablePtr& obj) const { |
| return (obj == NULLPTR ? 0 : obj->objectSize()); |
| } |
| |
| public: |
| static int32_t cnt; |
| |
| Position(); |
| Position(const char* id, int32_t out); |
| // This constructor is just for some internal data validation test |
| Position(int32_t iForExactVal); |
| virtual ~Position(); |
| virtual void toData(apache::geode::client::DataOutput& output) const; |
| virtual apache::geode::client::Serializable* fromData( |
| apache::geode::client::DataInput& input); |
| virtual int32_t classId() const { return 0x02; } |
| CacheableStringPtr toString() const; |
| |
| virtual uint32_t objectSize() const { |
| uint32_t objectSize = sizeof(Position); |
| objectSize += getObjectSize(bondRating); |
| objectSize += getObjectSize(country); |
| objectSize += getObjectSize(secId); |
| objectSize += getObjectSize(secLinks); |
| objectSize += |
| (secType == NULL |
| ? 0 |
| : sizeof(wchar_t) * static_cast<uint32_t>(wcslen(secType))); |
| objectSize += getObjectSize(underlyer); |
| return objectSize; |
| } |
| |
| static void resetCounter() { cnt = 0; } |
| CacheableStringPtr getSecId() { return secId; } |
| int32_t getId() { return pid; } |
| int32_t getSharesOutstanding() { return sharesOutstanding; } |
| static apache::geode::client::Serializable* createDeserializable() { |
| return new Position(); |
| } |
| |
| private: |
| void init(); |
| }; |
| |
| typedef apache::geode::client::SharedPtr<Position> PositionPtr; |
| } // namespace testobject |
| |
| #endif // APACHE_GEODE_GUARD_6b0a46d8e03f0ffb9c53c7c14ef5eed4 |