chcę mieć bufor danych długość fix zmienny treści udostępniane i to w jaki sposób mogę utworzyć go:Zachowanie NSData initWithBytesNoCopy: długość: freeWhenDone:
void *buffer = malloc(length);
// initialize buffer content
NSData *sharedData = [[NSData alloc] initWithBytesNoCopy:buffer length:length freeWhenDone:YES]
Co się stało, gdybym modyfikować buffer
po Stworzyłem NSData z tego? Czy NSData będzie odzwierciedlać zmianę, którą wprowadziłem dla buffer
?
Mogę zagwarantować, że sharedData
nie otrzyma dealloc, gdy chcę zmodyfikować buffer
.
ten sposób faktycznie chcę go używać:
void *my_alloc(CFIndex allocSize, CFOptionFlags hint, void *info) {return NULL;}
void my_dealloc(void *ptr, void *info) {
mach_vm_deallocate(mach_task_self(), (mach_vm_address_t)ptr, (size_t)info);
}
size_t length = //some number
mach_vm_address_t buffer;
mach_vm_allocate(mach_task_self(), &buffer, length, VM_FLAGS_ANYWHERE);
// do something to buffer, for example pass to other process using mach RPC and expect other process will modify the content
CFAllocatorContext context = {0, (void *)length, NULL, NULL, NULL, my_alloc, NULL, my_dealloc, NULL};
CFAllocatorRef allocator = CFAllocatorCreate(NULL, &context);
CFDataCreateWithBytesNoCopy(NULL, (const UInt8 *)buffer, length, allocator);