Files
clang-p2996/lldb/source/Host/macosx/cfcpp/CFCData.cpp
Jonas Devlieghere fd2433e139 [lldb] Replace default bodies of special member functions with = default;
Replace default bodies of special member functions with = default;

$ run-clang-tidy.py -header-filter='lldb' -checks='-*,modernize-use-equals-default' -fix ,

https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-equals-default.html

Differential revision: https://reviews.llvm.org/D104041
2021-07-02 11:31:16 -07:00

58 lines
1.6 KiB
C++

//===-- CFCData.cpp -------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "CFCData.h"
// CFCData constructor
CFCData::CFCData(CFDataRef data) : CFCReleaser<CFDataRef>(data) {}
// CFCData copy constructor
CFCData::CFCData(const CFCData &rhs) : CFCReleaser<CFDataRef>(rhs) {}
// CFCData copy constructor
CFCData &CFCData::operator=(const CFCData &rhs)
{
if (this != &rhs)
*this = rhs;
return *this;
}
// Destructor
CFCData::~CFCData() = default;
CFIndex CFCData::GetLength() const {
CFDataRef data = get();
if (data)
return CFDataGetLength(data);
return 0;
}
const uint8_t *CFCData::GetBytePtr() const {
CFDataRef data = get();
if (data)
return CFDataGetBytePtr(data);
return NULL;
}
CFDataRef CFCData::Serialize(CFPropertyListRef plist,
CFPropertyListFormat format) {
CFAllocatorRef alloc = kCFAllocatorDefault;
reset();
CFCReleaser<CFWriteStreamRef> stream(
::CFWriteStreamCreateWithAllocatedBuffers(alloc, alloc));
::CFWriteStreamOpen(stream.get());
CFIndex len =
::CFPropertyListWriteToStream(plist, stream.get(), format, NULL);
if (len > 0)
reset((CFDataRef)::CFWriteStreamCopyProperty(stream.get(),
kCFStreamPropertyDataWritten));
::CFWriteStreamClose(stream.get());
return get();
}