I cloned the Protobuf-PHP repository: https://github.com/drslump/Protobuf-PHP.git that I found at https://github.com/drslump/Protobuf-PHP, and I have been working on installation and configuration problems for about 12 hours trying to get protoc-gen-php to convert a proto file into a PHP class.
I am running PHP Version 5.3.2, and here's what I've done:
- Installed PEAR v1.9.4
- Installed Console_CommandLine, and ran PEAR_ENV.reg to set the PEAR environment variables.
- I have tried every permutation I can think of to try to get this plugin to generate a PHP class file, and every attempt has failed.
I have a proto file that we're using with a C# project in the root folder where I checked out the proto-gen-php project (see below).
message AuditLogEntry {
required int64 ID = 1;
required int64 Date = 2;
required string Message = 3;
optional int32 User_ID = 4;
optional string User_Username = 5;
optional int32 ImpUser_ID = 6;
optional string ImpUser_Username = 7;
optional string RemoteIP = 8;
}
message AuditLogQuery {
optional int64 DateRangeStart = 1;
optional int64 DateRangeEnd = 2;
optional string Search = 3;
optional int32 UserID = 4;
optional int32 Limit = 5;
optional int32 Offset = 6;
}
message AuditLogResult {
repeated AuditLogEntry LogEntries = 1;
optional int32 TotalResults = 2;
}
Here are just a few problems that I'm having:
When I attempt to execute the most basic implementation:
protoc-gen-php.bat AuditLog.protoI get this error:
Could not open input file: @bin_dir@\protoc-gen-php The filename, directory name, or volume label syntax is incorrect.
I cannot find any information regarding this error online. Is there a configuration problem with the installation of one of the packages that I'm using? Any ideas?
Because of the error above, I changed this line in the protoc-gen-php batch file:
"%PHPBIN%" -d display_errors=stderr -d log_errors=On -d error_log=Off "@bin_dir@\protoc-gen-php" %*to
"%PHPBIN%" -d display_errors=stderr -d log_errors=On -d error_log=Off "protoc-gen-php.php" %*
Now when I run the same command given in problem 1, I get the following output:
The filename, directory name, or volume label syntax is incorrect.
Protobuf-PHP @package_version@ by Ivan -DrSlump- Montes
C:\Development\SkedFlex\php-proto-buffers\AuditLog.proto: File does not reside within any path specified using --proto_path (or -I). You must specify a --proto_path which encompasses this file. Note that the proto_path must be an exact prefix of the .proto file names -- protoc is too dumb to figure out when two paths (e.g. absolute and relative) are equivalent (it's harder than you think).
ERROR: protoc exited with an error (1) when executed with:
protoc \
--plugin=protoc-gen-php="C:\Development\SkedFlex\php-proto-buffers\protoc-gen-php.php.bat" \
--proto_path="C:\Development\SkedFlex\php-proto-buffers\library\DrSlump\Protobuf\Compiler\protos" \
--php_out=":./" \
"C:\Development\SkedFlex\php-proto-buffers\AuditLog.proto"
I tried many variations of the command using -i, -o as specified in the manual: http://drslump.github.com/Protobuf-PHP/protoc-gen-php.1.html, but cannot seem to make headway on this...
Finally I resorted to attempting to execute protoc directly:
protoc --plugin=protoc-gen-php --php_out=./build AuditLog.proto
this is the error:
--php_out: protoc-gen-php: The system cannot find the file specified.
I am at a point where I'm stuck. Is there anyone that has experience with protoc-gen-php that can help me resolve the problems that I am having?