You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.6 KiB
58 lines
1.6 KiB
//===-- 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() {}
|
|
|
|
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();
|
|
}
|