I am integrating flashzlib into one of my flash project. As mentioned in documentation of project. I have successfully generated libz.a and z.l.bc and pushed libs and headers in appropriate places.

Now, I have written this small wrapper https://gist.github.com/65d3c7ff683b326ecd22. This compiles just fine using:

gcc example1_as3.c -lz -O3 -Wall -swc -o example.swc

This is included into flash project like this (uncompressedData is a byteArray):

private var loader:CLibInit = new CLibInit;
private var lib:Object = loader.init();
logger.info("B : " + lib.returnString(uncompressedData, uncompressedData.length) + "");

But flash file fails at this last line. Am not sure what am i missing. z.l.bc file is 340KB while example.swc is just 80KB.

link|improve this question
fails how? Whats the error? – The_asMan Nov 8 '11 at 21:06
it logs nothing and no further code is executed. It just gets stuck here. – Nakul Nov 8 '11 at 22:54
are you using the debugger? – The_asMan Nov 9 '11 at 0:02
Quickly trying it myself, the runtime error I'm getting on example.c:50 is Undefined sym: _inflateInit_. – Gunslinger47 Nov 9 '11 at 6:57
@The_asMan no, just logger (logging.ILogger) – Nakul Nov 9 '11 at 11:02
show 14 more comments
feedback

1 Answer

up vote 1 down vote accepted

­It's failing for one of two reasons. Either Alchemy isn't finding z.l.bc (and isn't bothering to tell you about it), or you're not catching and reporting your error codes correctly.

As I mentioned in the question comments, I was getting a runtime error on the inflateInit invocation. For my case, it turned out that Alchemy wasn't searching $ALCHEMY_HOME/usr/local/lib for z.l.bc like it was supposed to be. This was solved by moving it to /usr/local/lib instead. After that, your code returned Z_OK as expected.

I notice you have all the CHECK_ERR calls commented out, which means that you'll enter an infinite loop if you comment out the early return on example.c:52 since you're not checking for errors on your inflate call in the following unconditional for block. For me, inflate was returning Z_DATA_ERROR since I was just handing it some UTF bytes for test purposes.

Speaking of testing, I notice that there's a small test suite supplied by flashzlib:

I borrowed this code, renamed main to test_all, commented out the call to test_gzio¹, and replaced all printf calls with fprintf calls to stderr instead². This is the result:

zlib version 1.2.3 = 0x1230, compile flags = 0x2000095

uncompress(): hello, hello!

inflate(): hello, hello!

large_inflate(): OK

after inflateSync(): hello, hello!

inflate with dictionary: hello, hello! 

0

Everything appears to be in order.


footnotes:
¹ No file access in Alchemy, of course.
² stdout is disconnected for me, but stderr appears in my trace console

link|improve this answer
thanks @Gunslinger47. the flashzlib was working totally cool for me too. I tried pushing z.l.bc in /usr/local/lib but thats not working for me :(. will dig more and get back. thanks again! – Nakul Nov 11 '11 at 8:47
ok, so am able to integrate it with command from Makefile i.e. gcc -O3 -DNO_vsnprintf -DUSE_MMAP -swc -o example.swc example1_as3.o -L. libz.a Making it work now by passing right values. Thanks! – Nakul Nov 11 '11 at 13:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.