`
aigo
  • 浏览: 2635827 次
  • 性别: Icon_minigender_1
  • 来自: 宜昌
社区版块
存档分类
最新评论

android NDK中使用cURL库

阅读更多

From: http://thesoftwarerogue.blogspot.com/2010/05/porting-of-libcurl-to-android-os-using.html

 

Tuesday, May 11, 2010

Porting of cURL to Android OS using NDK

 

In continuing my journey into Android territory, I decided it would be useful to understand the NDK development kit.  Given I want to transfer some files and possibly do a couple of other projects requiring low level work, I selected the cURL kit to port.  I've used cURL for a number of projects and it is my hope it runs well under Android.  The project, curltest, was run under Android 2.1 but it should work for other versions as well.  Given that most Android phones will be getting upgrades rolled out over the next couple of months to version 2.1, seems like a reasonable target.  I will be added HTTPS capability as soon as I port openssl, for now, this is strictly unsecured transfers.

 

I did see some examples of partial porting and even in the curl library source there is an Android.mk which describes how to set it up although not in enough detail.  Both work helpful but didn't actually get me to the holy land of a usable test applications. (http://www.mail-archive.com/curl-library@cool.haxx.se/msg03433.html was helpful but didn't work for me.)

 

I found it worth the exercise of downloading the full android sources and building them.  Look at the build process, the bionic library, and well as whats in external.  The external directory is where you would add repositories to do things like run configure, etc  

 

You won't actually need Linux since I have included the config file here but in case you want to follow way it was created, I've included it.

 

Summary of the steps to take for this port:

  - Lots of searches and view the current state of curl porting

  - Setup source repository (I used Linux, you could try windows using cygwin)

  - Create curl_config.h under the full android source tree

  - Untar curltest.tar.gz under $NDKROOT or Create NDK JNI App on Windows

  - Cross-link or add to eclipse project to build Java front-end

  - Unpack cURL into $NDKROOT/apps/curltest/jni/curl

  - Copy curltest/jni/curlbuild.h to curltest/jni/curl/include/curl

  - Copy curltest/jni/curl_config.h to curltest/jni/curl/lib

  - Build and test

 

Setup source repository on Linux

It's one thing to describe doing X, quite another to actually do it.  Anyway, I ended up creating my own android repository to start the process.  While I was using Windows 7 for my NDK development, I switched to Linux to create the curl_config.h file needed in the build.  What this means it that you run a couple of scripts.  First up, repo.  Created a directory and cd to it.  Download the repo script 'wget https://android.git.kernel.org/repo'.   Move repo script to somewhere in your path and issue 'repo init -u git://android.git.kernel.org/platform/manifest.git'  then after run 'repo sync'.  These two should get you all the goodies.  I had some stalls where I had to restart the sync process but after a long while it completed successfully.

 

Create curl_config.h under the full android source tree

Next, I created a script to call the configure command to generated the curl_config.h.  CD to  $ANDROID_ROOT/external.  Untar curl libraries, I renamed my from curl-7.20.1 to just curl.  cURL has an Android.mk inside of it.  In the file were some instructions for generating the curl_config.h.  I found them helpful as a start but ultimately I had to fiddle with a number of things to get this to actually work.  Here is the script I used:

 

#!/bin/sh

 

ANDROID_ROOT="$HOME/android_src" && \

TOOLCHAIN_VER="4.4.0"  \

PLATFORM_VER="5" \

CROSS_COMPILE=arm-eabi- \

PATH=$ANDROID_ROOT/prebuilt/linux-x86/toolchain/arm-eabi-$TOOLCHAIN_VER/bin:$PATH  && \

CPPFLAGS="-I $ANDROID_ROOT/system/core/include -I$ANDROID_ROOT/bionic/libc/include -I$ANDROID_ROOT/ndk/build/platforms/android-5/arch-arm/usr/include -I$ANDROID_ROOT/bionic/libc/kernel/arch-arm -L $ANDROID_ROOT/prebuilt/linux-x86/toolchain/arm-eabi-$TOOLCHAIN_VER/lib/gcc/arm-eabi/$TOOLCHAIN_VER/interwork -L$ANDROID_ROOT/ndk/build/platforms/android-$PLATFORM_VER/arch-arm/usr/lib  -L$ANDROID_ROOT/out/target/product/generic/system/lib " \

CFLAGS="-fno-exceptions -Wno-multichar -mthumb -mthumb-interwork -nostdlib -lc -ldl -lm "  \

./configure CC=arm-eabi-gcc --host=arm-linux --disable-tftp --disable-sspi --disable-ipv6 --disable-ldaps --disable-ldap --disable-telnet --disable-pop3 --disable-ftp --without-ssl --disable-imap --disable-smtp --disable-pop3 --disable-rtsp --disable-ares --without-ca-bundle --disable-warnings --disable-manual --without-nss --enable-shared --without-zlib --without-random

 

# openssl/zlib version

#./configure CC=arm-eabi-gcc --host=arm-linux --disable-tftp --disable-sspi --disable-ipv6 --disable-ldaps --disable-ldap --disable-telnet --disable-pop3 --disable-ftp --with-ssl=$ANDROID_ROOT/external/openssl --disable-imap --disable-smtp --disable-pop3 --disable-rtsp --disable-ares --without-ca-bundle --disable-warnings --disable-manual --without-nss --enable-shared --with-zlib=$ANDROID_ROOT/external/zlib --without-random

 

 

Run the script in the top curl directory (where configure resides) and it should go through many tests before ultimately creating the lib/curl_config.h file.

 

Create NDK JNI App on Windows

Untar curltest.tar.gz under $NDKROOT.  This has the Java side application already created.  Or you can simply create a new Application under Eclipse which will generated the src & res directories that will need to be modified.  I'm not going into App generation except that you will target $NDKROOT/apps/curltest/project as your directory tree.

 

Create library name under $NDKROOT/apps/, I used curltest.

CD to curltest and create the Application.mk file.

APP_PROJECT_PATH := $(call my-dir)/project

APP_MODULES := curltest libcurl

 

Once that is done, cd to project and create your standard Java AndroidManifest.xml file.  If you created an App from Eclipse you'll need to modify this file.  Make sure to give it INTERNET permissions.  The rest depends on what's in your Java code.

 

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

      android:versionCode="1"

      android:versionName="1.0" package="com.mtterra.curltest">

    <application android:icon="@drawable/icon" android:label="@string/app_name">

        <activity android:name=".curltest"

                  android:label="@string/app_name">

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

 

    </application>

    <uses-sdk android:minSdkVersion="5"/>

    <uses-permission android:name="android.permission.INTERNET"/>

 

</manifest>

 

 

 

 

Then cd to jni and create the Android.mk file.  This is where the one from cURL would go.  However, I didn't use it as anything more than a reference.

 

Now for the actual JNI interfacing.  There are lots of complaints here because everything needs to be specified up front and you need different packages for different hardware.  Except for some dynamic registration mechanism, I'm not sure you can get away with writing to hardware AND getting independence from it.  Actually, I am sure, you can't.

 

Here is my curltest.c interface:

 

typedef struct pageInfo_t {

char *data;

int len;

} pageInfo_t;

 

static size_t

HTTPData(void *buffer, size_t size, size_t nmemb, void *userData) {

int len = size * nmemb;

pageInfo_t *page = (pageInfo_t *)userData;

 

 

if (buffer &amp;&amp; page-&gt;data &amp;&amp; (page-&gt;len + len &lt; (16 * 1024)) ) { memcpy(&amp;page-&gt;data[page-&gt;len], buffer, len);

page-&gt;len += len;

}

return len;

}

 

//Interface function that will receive web page from Java

jstring

Java_com_mtterra_curltest_curltest_JNIGetWebpage( JNIEnv* env,

jobject entryObject,

jstring webpageJStr )

{

pageInfo_t page;

CURL *curl;

CURLcode res;

char *buffer;

 

const jbyte *webpage;

webpage = (*env)-&gt;GetStringUTFChars(env, webpageJStr, NULL);

if (webpage == NULL) {

return NULL; /* OutOfMemoryError already thrown */

}

 

page.data = (char *)malloc(16 * 1024);

page.len = 0;

if (page.data)

memset(page.data, 32, 16 * 1024);

 

buffer = (char *)malloc(1024);

 

curl = curl_easy_init();

if(curl) {

curl_easy_setopt(curl, CURLOPT_URL, webpage);

curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, HTTPData);

curl_easy_setopt(curl, CURLOPT_WRITEDATA, &amp;page);

 

res = curl_easy_perform(curl);

/* always cleanup */

curl_easy_cleanup(curl);

(*env)-&gt;ReleaseStringUTFChars(env, webpageJStr, webpage);

if(res == 0) {

if (buffer) {

page.data[page.len &lt; 256 ? page.len : 256] = '\0'; sprintf(buffer, "pagedata(%d): %s. done.\n", page.len, page.data); return (*env)-&gt;NewStringUTF(env, buffer);

}

}

sprintf(buffer, "Result %d", res);

return (*env)-&gt;NewStringUTF(env, buffer);

} else {

return (*env)-&gt;NewStringUTF(env, "Unable to init cURL");

}

}

 

 

 

 

Finally, it's time to setup Eclipse to build.  There are some assumptions here, like having a functioning Eclipse build environment.  In order to get your environment over to Eclipse, you can use File-&gt;Import then select 'Existing Projects into Workspace' function.

 

Unpack cURL into $NDKROOT/apps/curltest/jni/curl.  Move the curl_config.h file created above to $NDKROOT/apps/curltest/jni/curl/lib. 

 

Finally, we create the Android.mk file in curltest/jni and build it.  The Android.mk use is as follows:

 

LOCAL_PATH:= $(call my-dir)

 

CFLAGS := -Wpointer-arith -Wwrite-strings -Wunused -Winline \

 -Wnested-externs -Wmissing-declarations -Wmissing-prototypes -Wno-long-long \

 -Wfloat-equal -Wno-multichar -Wsign-compare -Wno-format-nonliteral \

 -Wendif-labels -Wstrict-prototypes -Wdeclaration-after-statement \

 -Wno-system-headers -DHAVE_CONFIG_H

 

include $(CLEAR_VARS)

include $(LOCAL_PATH)/curl/lib/Makefile.inc

 

 

LOCAL_SRC_FILES := $(addprefix curl/lib/,$(CSOURCES))

LOCAL_CFLAGS += $(CFLAGS)

LOCAL_C_INCLUDES += $(LOCAL_PATH)/curl/include/

 

LOCAL_COPY_HEADERS_TO := libcurl

LOCAL_COPY_HEADERS := $(addprefix curl/include/curl/,$(HHEADERS))

 

LOCAL_MODULE:= libcurl

 

include $(BUILD_STATIC_LIBRARY)

 

# Build shared library now

# curltest

 

include $(CLEAR_VARS)

 

LOCAL_MODULE := curltest

LOCAL_SRC_FILES := curltest.c

LOCAL_STATIC_LIBRARIES := libcurl

LOCAL_C_INCLUDES += $(LOCAL_PATH)/curl/include

include $(BUILD_SHARED_LIBRARY)

 

Going back to your $NDKROOT you should be able to build the library with 'make APP=curltest -B V=1'.  The -B means rebuilt it all and V=1 makes it verbose. 

 

 

After this, you should be able to build the application.  When I get back to Eclipse I'll hit F5 to refresh the files as a habit although likely not necessary.  Another interesting thing is that some people have indicated that you need to do an 'adb push' to the emulator so the library is there.  I haven't found this is the case.  Basically, if it doesn't find your library the interface name or some other part is broken and you need to find the issue.

分享到:
评论

相关推荐

    android使用NDK编译curl库源码

    在这个场景中,我们将探讨如何在Android环境下使用NDK(Native Development Kit)编译Curl库源码。 首先,NDK是Google提供的一个工具集,允许开发者在Android应用中集成原生代码。通过NDK,我们可以编写C和C++代码...

    android jni使用curl进行http请求和文件下载

    在本案例中,我们将讨论如何在Android JNI中使用libcurl库来执行HTTP请求和文件下载。 libcurl是一个流行的开源库,用于处理各种网络协议,包括HTTP、HTTPS等。它提供了丰富的API,可以在多种编程语言中使用,包括C...

    android_curl版本支持库

    3. **Android NDK集成**:在Android应用中使用`android_curl`,需要通过Android NDK(Native Development Kit)进行集成。首先,你需要将`android_curl`库添加到你的项目中,这通常涉及将库文件放入`jniLibs`目录下...

    curl-7.83.1源代码编译的android库,android-ndk-r20b编译64位

    ./configure --prefix=/usr/local/android --host aarch64-linux-android --with-pic --disable-shared make -j4;make install 在wsl下面用ndk20编译的, aarch64-linux-android29-clang++ aarch64-linux-android-...

    安卓ndk编译curl、openssl、iconv.rar

    通过以上步骤,你就可以在Android应用中使用经过NDK编译的curl、openssl和iconv库了。需要注意的是,由于不同Android版本和设备间的差异,编译过程可能会遇到一些问题,因此在实际操作中,需要根据错误信息进行调试...

    【Android】NDK.zip

    - 第三方库:有些第三方库只提供C/C++版本,必须使用NDK才能在Android中使用。 总之,Android NDK是Android开发中不可或缺的一部分,它扩展了Java SDK的功能,使开发者能够充分利用硬件资源,实现高性能的应用程序...

    curl for android

    这些内容对于Android开发者,尤其是那些需要在命令行或者应用程序中使用curl功能的开发者来说,是非常重要的知识。掌握这些技能可以让他们在没有网络请求库或者需要底层控制网络通信时,灵活地利用curl这一强大的...

    android curl 动态库

    这个"android curl 动态库"项目就是为了解决这个问题,它是一个用C++编写的动态库,可以被Java代码调用,实现了Curl的功能,便于在Android应用中进行网络通信。 首先,我们需要理解动态库在Android中的概念。...

    curl 全平台静态库,包括 android,ios ,win,mac,linux

    在您提供的压缩包中包含的全平台静态库意味着您将能够为 Android、iOS、Windows、Mac 和 Linux 平台的项目集成 `curl` 功能。 1. **curl 的主要功能**: - 支持多种网络协议:HTTP、HTTPS、FTP、FTPS、TFTP、SMTP...

    curl库做http请求

    在Android上使用curl库,通常需要通过JNI(Java Native Interface)或者NDK(Native Development Kit)来实现,因为curl是用C语言编写的,不能直接在Java代码中调用。 以下是一些关于如何在Android中集成和使用curl...

    NDK25 API28 curl

    为了在Android项目中使用curl,开发者需要对Android.mk或CMakeLists.txt文件进行修改,指示构建系统如何找到和链接这些库。同时,可能还需要处理头文件路径、库路径和链接选项。完成这些步骤后,便能在原生代码中...

    Android NDK开发指南-android.mk文件

    Android NDK 是 Android 操作系统中的一种开发工具,用于使用 C/C++ 语言编写 Android 应用程序。Android.mk 文件是 NDK 中的一个重要组件,用于描述编译系统的配置,使得开发者可以轻松地将 C/C++ 代码编译成 ...

    curl for android (arm, x86所有平台)下的静态库 ubuntu下编译完成

    首先,让我们关注标题中的关键信息:“curl for android (arm, x84所有平台)下的静态库 ubuntu下编译完成”。这意味着我们已经成功地在Ubuntu操作系统上完成了libcurl的编译工作,生成了适用于Android的静态库文件,...

    Android curl的下载编译和使用

    如果你想在Android应用中使用`libcurl`,需要将生成的`.a`静态库文件(可能包括`libcurl.a`和其他依赖库)添加到你的项目中,并在CMakeLists.txt或NDK构建脚本中链接这些库。 **curl_config_cmd** 在你提供的文件...

    curl+ssh windows android linux mac ios 编译好的5个平台的库

    《跨平台库:curl+ssh在Windows、Android、Linux、Mac和iOS的编译实践》 curl和ssh是两个在IT行业中广泛使用的开源工具。curl是一个用于传输数据的...同时,由于这些库已经经过测试验证,可以放心地在实际项目中使用。

    在android中增加curl的解决方法

    总的来说,要在Android中使用curl,你需要经历下载源码、生成配置文件、配置编译选项、编译库以及在项目中添加库依赖等步骤。这是一个相对复杂的过程,但通过这些步骤,你可以将curl的强大功能引入到Android应用中。...

    curl-android:curl静态库为Android预制

    该库是 ,因此您需要在项目中启用它(Android Gradle Plugin 4.1+): android { .. . buildFeatures { .. . prefab true } } 用法 ndk构建 您可以在Android.mk使用curl_static 。 例如,如果您的应用程序...

    android平台libcurl-7.35.0编译成果物(支持openssl)

    6. 将编译好的库复制到Android项目的`jniLibs`目录下,以便在应用中使用。 在实际应用中,Android开发者可以使用Java的JNI(Java Native Interface)或者C/C++的NDK库来调用libcurl的函数,实现网络请求。例如,...

    openssl-curl-android:编译适用于Android的openssl和curl

    openssl-curl-android 编译适用于Android的openssl和curl先决条件确保您已安装Android NDK 。 您可能还需要安装autoconf和libtool工具链以及构建基础。下载如果您不想自己编译它们,则可以从下载预编译的静态库。 ...

Global site tag (gtag.js) - Google Analytics