-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please fix api.php #33
Comments
Hi, i think better idea might be creating a script that creates api.php automatically. This file is really needed only for eclipse and the like code completion. |
I also got the same problem. I imported it into PHPStorm IDE and get fatal errors about missing constants. Will be this api.php file fixed soon? |
It appears that most accurate version is here http://php.zero.mq/, but you can't really download all class declarations from there. |
Hi, this should be fairly easy task with reflection. I'll try to update it today |
Any progress on this one? I can use Reflection API to get names of constants and method, but how do I get these nice PHPDoc documentation for each of them? |
had the same problem (for other extensions too) ZMQ-API v1.0.3 is the example but you can build your own with it |
This is excellent. I am very short on time at the moment but I'll use DocThor to generate new api.php |
Are you sure that https://github.com/SegFaulty/DocThor/wiki/zmq is generated according to latest version of php extension? ZMQDevice constructor should have 3 arguments: according to their C api http://api.zeromq.org/2-1:zmq-device and PHP samples http://zguide.zeromq.org/php:msgqueue. I'm actually trying to create new version of api.php file with all comments are references to API website to create more useful hints in auto-complete. Maybe there is an error in PHP bindings. |
first: https://github.com/SegFaulty/DocThor/wiki/zmq is updated , now with some more information from the source (new DocThor Feature --sourceDir) ZMQDevice .. a look at the extension sources here https://github.com/mkoppanen/php-zmq/blob/master/zmq.c#L1138 shows 2 args |
I removed the first arg as it had no effect. |
well, that explains it... btw. with the newest DocThor feature, i found:
minor .. but maybe related to this issue :-) |
Since current PHP bindings were out there for quite a long time, then maybe in PHP there is another way to specify device type, but I really don't know how. |
The device type has never made any difference. If you look at ZeroMQ source the device type parameter is ignored. |
I've just noticed that this page http://api.zeromq.org/2-0-11:_start is API documentation for ZeroMQ 2.0.11, where zmq_device function exists and it has 3 parameters. But I'm using 2.1.11 (http://api.zeromq.org/2-1-1:_start) version of ZeroMQ library where there is no zmq_device function and instead a separate functions are created:
This makes me think, that they should be represented as a separate ZMQDevice class descendants in PHP bindings. |
From documentation: Maybe in PHP bindings it's automatic - device type is matched to socket type you pass, while creating a device? |
If you look a the actual ZeroMQ 2.1.x source code here: https://github.com/zeromq/zeromq2-1/blob/master/src/zmq.cpp#L764 The 'int device' parameter is passed (which is the device type) but when the actual device code is called it's not being passed on. The device type parameter exists there only for backwards compatibility i think. |
I would appreciate if someone would provide step by step docthor instructions which i can link to. |
I've just run DocThor against master and this is the result: https://gist.github.com/phuedx/5f727191b30fd8969825 |
Alright, so, as HHVM does require native functions to be properly declared, I have a version of the API that should be almost identical to the actual one, although documentation is needed for anything that wasn't in the original api.php, which I've marked with |
Hi, it's not fixed yet ? |
Hi there,
In api.php all the constants are defined in the ZMQSocket class, but they are actually in the ZMQ class.
If I try to use for example ZMQSocket::SOCKET_PUB I get a fatal error.
Also please add ZMQ::SOCKET_PULL there.
Unless this is needed for future changes this is broken since commit d44061f
Thanks for your work!
The text was updated successfully, but these errors were encountered: