/* * Copyright (c) 2022 Huawei Device Co., Ltd. * Licensed 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. */ #ifndef OHOS_IDL_AUTOPTR_H #define OHOS_IDL_AUTOPTR_H namespace OHOS { namespace Idl { template class AutoPtr { public: AutoPtr() : mPtr(nullptr) {} AutoPtr(T* other); AutoPtr(const AutoPtr& other); AutoPtr(AutoPtr&& other); ~AutoPtr(); AutoPtr& operator=(T* other); AutoPtr& operator=(const AutoPtr& other); AutoPtr& operator=(AutoPtr&& other); void MoveTo(T** other); inline operator T*() const; inline T** operator&(); inline T* operator->() const; inline T& operator*() const; inline T* Get() const; inline bool operator==(T* other) const; inline bool operator==(const AutoPtr& other) const; inline bool operator!=(T* other) const; inline bool operator!=(const AutoPtr& other) const; inline bool operator>(T* other) const; inline bool operator>(const AutoPtr& other) const; inline bool operator<(T* other) const; inline bool operator<(const AutoPtr& other) const; inline bool operator<=(T* other) const; inline bool operator<=(const AutoPtr& other) const; inline bool operator>=(T* other) const; inline bool operator>=(const AutoPtr& other) const; private: T* mPtr; }; template AutoPtr::AutoPtr(T* other) : mPtr(other) { if (mPtr != nullptr) { mPtr->AddRef(); } } template AutoPtr::AutoPtr(const AutoPtr& other) : mPtr(other.mPtr) { if (mPtr != nullptr) { mPtr->AddRef(); } } template AutoPtr::AutoPtr(AutoPtr&& other) : mPtr(other.mPtr) { other.mPtr = nullptr; } template AutoPtr::~AutoPtr() { if (mPtr != nullptr) { mPtr->Release(); } } template AutoPtr& AutoPtr::operator=(T* other) { if (mPtr == other) return *this; if (other != nullptr) { other->AddRef(); } if (mPtr != nullptr) { mPtr->Release(); } mPtr = other; return *this; } template AutoPtr& AutoPtr::operator=(const AutoPtr& other) { if (mPtr == other.mPtr) return *this; if (other.mPtr != nullptr) { other.mPtr->AddRef(); } if (mPtr != nullptr) { mPtr->Release(); } mPtr = other.mPtr; return *this; } template AutoPtr& AutoPtr::operator=(AutoPtr&& other) { if (mPtr != nullptr) { mPtr->Release(); } mPtr = other.mPtr; other.mPtr = nullptr; return *this; } template void AutoPtr::MoveTo(T** other) { if (other != nullptr) { *other = mPtr; mPtr = nullptr; } } template AutoPtr::operator T*() const { return mPtr; } template T** AutoPtr::operator&() { return &mPtr; } template T* AutoPtr::operator->() const { return mPtr; } template T& AutoPtr::operator*() const { return *mPtr; } template T* AutoPtr::Get() const { return mPtr; } template bool AutoPtr::operator==(T* other) const { return mPtr == other; } template bool AutoPtr::operator==(const AutoPtr& other) const { return mPtr == other.mPtr; } template bool AutoPtr::operator!=(T* other) const { return mPtr != other; } template bool AutoPtr::operator!=(const AutoPtr& other) const { return mPtr != other.mPtr; } template bool AutoPtr::operator>(T* other) const { return mPtr > other; } template bool AutoPtr::operator>(const AutoPtr& other) const { return mPtr > other.mPtr; } template bool AutoPtr::operator<(T* other) const { return mPtr < other; } template bool AutoPtr::operator<(const AutoPtr& other) const { return mPtr < other.mPtr; } template bool AutoPtr::operator<=(T* other) const { return mPtr <= other; } template bool AutoPtr::operator<=(const AutoPtr& other) const { return mPtr <= other.mPtr; } template bool AutoPtr::operator>=(T* other) const { return mPtr >= other; } template bool AutoPtr::operator>=(const AutoPtr& other) const { return mPtr >= other.mPtr; } } } #endif // OHOS_IDL_AUTOPTR_H