Creating an IMP from an Objective-C block

淺唱寂寞╮ 提交于 2019-11-29 21:47:38

Since this was written there is now API in iOS and Mac OS X that allows Blocks to be turned into IMPs directly. I wrote up a weblog post describing the API (imp_implementationWithBlock()).


A block is effectively a structure that contains a bit of metadata, a reference to the code contained within the block and a copy of the const-copied data captured within the block.

Thus, no, there is no way to directly map between an IMP and a Block reference.

When a call to a block is compiled, the compiler emits a trampoline that sets up the stack frame and then jumps to the executable code within the block.

What you can do, though, is create an IMP that acts like that trampoline. For the following, you will need one specific IMP for each set of arguments & return types to be called. If you need to make this generic, you'll need to use assembly.

For this, I'm setting up unique block instances per instance of the class. If you want to have a generic block that acts across all instances, build a hash of SEL -> block per class.

(1) Associate blocks to act as IMPs using the associated references mechanism. Something like:

void (^implementingBlock)(id s, SEL _c, int v) = ^(id s, SEL _c, int v) {
     // do something here
}

objc_setAssociatedObject(obj, SELToImp, [implementingBlock copy]));

(2) implement a trampoline IMP something like this:

void void_id_sel_intTramp(id self, SEL _cmd, int value) {
    int (^block)(id s, SEL _c, int v) = objc_getAssociatedObject(self, _cmd);
    block(self, _cmd, value);
}

(3) stuff the above trampoline in for any selector via the Objective-C runtime's API (see method_setImplementation and like)

Caveats:

  • this was typed into StackOverflow. The real code will be similar, but likely slightly different.

  • the [implementingBlock copy] is critical; Blocks start life on the stack (usually)

I believe Mike Ash, with some help from Landon Fuller, has solved this for the general case, including iOS, which is harder. He has a class on github which will turn a block into a function pointer.

You may also want to confer the announcement and some interesting follow-up discussion on cocoa-unbound.

UPDATE: And now there's imp_implementationWithBlock() as referred above.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!