Showing posts with label concept. Show all posts
Showing posts with label concept. Show all posts

11 Steps to learn Android JNI



Hi Friends,

It’s been around 2 years since I started working in android, but I never got chance to create one complete jni work. So, today I planned to learn Android jni. Now, here is what I learnt… for our reference

Android JNI

Requirement

  • Eclipse with android sdk
  • Android ndk(Download it from: http://developer.android.com/tools/sdk/ndk/index.html)

Steps to create a jni work… let’s take an example of squaring a number (same example, which I learnt from another blog)

Step 1: create an android project in eclipse (example: FirstJni).

Step 2: Create a folder in the name jni inside FirstJni.

Step 3: Create a file named Android.mk in the jni folder.

Step 4: Create a file SquaredWrapper.java in scr folder, which is a wrapper class. The wrapper’s job is to load the library, expose any native functions we wish to use directly, and provide any functions that we want to be able to utilize private native functions.

SqaredWrapper.java 

package com.alag.firstjni;

public class SquaredWrapper {
    // Declare native method (and make it public to expose it directly)
    public static native int squared(int base);
    
    // Provide additional functionality, that "extends" the native method
    public static int to4(int base)
    {
        int sq = squared(base);
        return squared(sq);
    }
    
    // Load library
    static {
        System.loadLibrary("squared");
    }
}

Step 5: Creating class file with the SquaredWrapper.java. use the following command in the FirstJni folder
cd src # change into the source directory
javac -d /tmp/ com/alag/firstjni/SquaredWrapper.java

Step 6: Creating C header file with the created Class file. use the following command
cd /tmp
javah -jni com.alag.firstjni.SquaredWrapper

This will create following squared.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#include
/* Header for class com_alag_firstjni_SquaredWrapper */

#ifndef _Included_com_alag_firstjni_SquaredWrapper
#define _Included_com_alag_firstjni_SquaredWrapper
#ifdef __cplusplus
extern "C" {
#endif
/*
 * Class:     com_alag_firstjni_SquaredWrapper
 * Method:    squared
 * Signature: (I)I
 */
JNIEXPORT jint JNICALL Java_com_alag_firstjni_SquaredWrapper_squared
  (JNIEnv *, jclass, jint);

#ifdef __cplusplus
}
#endif
#endif

Step 7: Create C source file now with the prototype in the header file in jni folder,
 
Squared.c
#include "squared.h";

JNIEXPORT jint JNICALL Java_com_alag_firstjni_SquaredWrapper_squared
  (JNIEnv * je, jclass jc, jint base)
{
        return (base*base);
}

Step 8: Now have the Squared.h and Squared.c file in the jni folder and write following lines in the Android.mk created in the jni  folder,

Android.mk
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE    := squared
LOCAL_SRC_FILES := squared.c

include $(BUILD_SHARED_LIBRARY)

Step 9: Building Shared library
Inside the FirstJni folder (which has src and jni folders), run the ndk-build script in the ndk folder.
cd FirstJni
/path/to/ndk-build # for example: ~/build/android-ndk/android-ndk-r7c/ndk-build
If the build script found your Android.mk and the library compiled without issue, you’ll see the following:
Compile thumb  : squared <= squared.c
SharedLibrary  : libsquared.so
Install        : libsquared.so => libs/armeabi/libsquared.so
Step 10: By default, when we created a new Android project in Eclipse an activity was generated. Put the following in it
package com.alag.firstjni;

import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;

public class MainActivity extends Activity {

          @Override
          protected void onCreate(Bundle savedInstanceState) {
                   super.onCreate(savedInstanceState);
                   setContentView(R.layout.activity_main);
                  
                   int b = 3;
        int a = SquaredWrapper.to4(b);
        Log.i("JNIDemo", String.format("%d->%d", b,a));
          }

          @Override
          public boolean onCreateOptionsMenu(Menu menu) {
                   // Inflate the menu; this adds items to the action bar if it is present.
                   getMenuInflater().inflate(R.menu.main, menu);
                   return true;
          }

}
Step 11: run it, either in the emulator or on a device, and we would see in LogCat an entry tagged with JNIDemo. In this case, we’d expect something like 3->81, since 3^4 = 81.

So, we are now ready to play with ndk :P

Thanks a lot to http://blog.edwards-research.com for teaching me Android jni basics.

Android - CTS.

Hi Friends,

Our project running android along with Windows is grown up (Running Dual OS in parallel). The time is rushing to release it to the world, but we have to get the license for it to release it in the Android eco-system.  The first thing comes into the play in getting the license is CTS. Fortunately, I got the chance to study and run CTS in our project. Now, here is what I understood and doing in CTS...

 Android Compatibility Program 

The Android Compatibility Program defines the technical details of Android platform and provides tools used by OEMs to ensure that developers' apps run on a variety of devices. The Android SDK provides built-in tools that Developers use to clearly state the device features their apps require. And Google Play shows apps only to those devices that can properly run them.

An "Android compatible device” is the one that can run any application written by third-party developers using the Android SDK and NDK. Google use this as a filter to separate devices that can participate in the Android app ecosystem, and those that cannot. Devices that are properly compatible can seek approval to use the Android trademark. Devices that are not compatible are merely derived from the Android source code and may not participate in the Android app ecosystem.

In other words, compatibility is a prerequisite to participate in the Android apps ecosystem. Anyone is accepted to use the Android source code, but if the device isn't compatible, it's not considered part of the Android ecosystem.

Devices that are Android compatible may seek to license the Google Play client software. This allows them to become part of the Android app ecosystem, by allowing users to download developers' apps from a catalogue shared by all compatible devices. This option isn't available to devices that aren't compatible.

Now, for our project to become part of Android Eco-system and to use Google client software like Google play, maps, etc. we need to pass CTS test.

BUILDING CTS

Android Source tree has the source for cts, we just need to build it to use it.

make cts” will build the cts and the output will be available in the path “android/out/host/linux-x86/cts”.

RUNNING CTS IN WINDOWS

Copy the android-cts folder from the output path to windows and run the following command in the command prompt.

set SDK_ROOT=C:\Users\AMI\AppData\Local\Android\android-sdk

java -Xmx512M -cp C:\Users\alagappanr\Desktop\android-cts\tools\cts-tradefed.jar;C:\Users\alagappanr\Desktop\android-cts\tools\hosttestlib.jar;C:\Users\alagappanr\Desktop\android-cts\tools\ddmlib-prebuilt.jar;C:\Users\alagappanr\Desktop\android-cts\tools\tradefed-prebuilt.jar -DCTS_ROOT=C:\Users\alagappanr\Desktop\ com.android.cts.tradefed.command.CtsConsole

Change the SDK and CTS path accordingly before running above lines.

Once you start the cts, it will provide the cts prompt “cts-tf >”.

NOTE: Device should be connected via adb throughout the test.

CTS COMMANDS

Few important commands are,

·         “help” and “help all” will show the commands and its usage.
·         “exit” will exit the cts prompt.
·         “run cts” command
run cts --plan test_plan_name: run a test plan.
eg. run cts –plan Android : to run android test plan.
run cts --package/-p : run a CTS test package
eg. run cts –p android.net : to run android.net package.
run cts --class/-c [--method/-m] : run a specific test class and/ormethod
run cts --continue-session session_ID: run all not executed tests from a previous CTS session
eg. run cts –continue-session 5 : to continue session 5 unexecuted cases.

Rest of the command signature and usage are shown once you run help command.

CTS Result

Test result will available in the folder “android-cts\repository\results”.

To view the test result, Open the testResult.xml generated in the folder “android-cts\repository\results\date_time”.

So, What you are waiting for... send the result to google, get the license and get google client software & service for your device and release your product in the market... :) 

Yep it is easy to say the last two lines.. But difficult to implement...

Signal in LINUX

Hi friends,

Currently, I'm working in wake-up issue in my project. I wanna inform android when my host OS windows wakes up. My project leader gave me an idea to send a signal from windows to android in the shell and use that signal to wake android when windows wakes up, like in exam days I keep alarm by 4am, my bad wakes up and give me a kick ;). But I'm zero at LINUX signal concept, as usual i studied it. Now, I'm typing here for my future ref. and other beginner's use.

SIGNAL IN LINUX

Now, we use CTRL + C to terminate something in LINUX. But, we don't wanna let someone to terminate our code with CTRL + C. So, what we have to do now. We have to monitor the user input and we should not let the system to perform any operation when user gives CTRL +C.

But, Instead what we can do in LINUX is, CTRL + C will generate a signal SIGINT in LINUX, so we can register a function to this signal in our code. So that when we user press CTRL + C, it will call our function, so our code won't be terminated.

What is signal in LINUX ? 
 LINUX has a set of signals. One nice example is, kill -9 PID, which we use to kill a process. Here, we are sending KILL signal to a process. Similarly, few other signals are available in LINUX. (SRY, i don't know to explain it, pls ask prof.google :( )

How can we register a function to a signal ?
here is the syntax,

signal(SIGINT, sig_handler)
SIGINT - signal generated on pressing CTRL + C. It can be any LINUX signal.
sig_handler - our function, which will be executed on receiving SIGINT signal.

What should be the sig_handler signature? 
here it is,
void sig_handler(int signo) {}
signo - signal number crossponding to the register signal.
Inside the function, we can write our own story.

Ok, How the final code will be? 
here is the simple one,
#include <stdio.h>
#include
<signal.h>
#include <unistd.h>

void sig_handler(int signo)
{
  if (signo == SIGINT)
    printf("received SIGINT\n");
}

int main(void)
{
  if (signal(SIGINT, sig_handler) == SIG_ERR)
  printf("\ncan't catch SIGINT\n");
  // A long long wait so that we can easily issue a signal to this process
  while(1)
    sleep(1);
  return 0;
}

Now, run the code and press CTRL + C. It will print "^Creceived SIGINT".

But, LINUX has alot of signals, is it possible to do for all signal of LINUX?
 Expect SIGKILL and SIGSTOP, we can use any signal in the place of SIGINT. So, change signal you would like register, change the body of sig_handler function as you like. Your coding will be done.

In my case, I have to generate a signal on my own... I choose to send user signal(SIGUSR1)...
So, the code will be?
here it is,

#include <stdio.h>
#include
<signal.h>
#include <unistd.h>

void sig_handler(int signo)
{
  if (signo == SIGUSR1)
    printf("received SIGUSR1\n");
}

int main(void)
{
  if (signal(SIGUSR1, sig_handler) == SIG_ERR)
  printf("\ncan't catch SIGUSR1\n");
  // A long long wait so that we can easily issue a signal to this process
  while(1)
    sleep(1);
  return 0;
}

Thats all, compile and run it :)... But how to send user signal? The following line will do that...
KILL -USR1 PID
 Got the signal!!!....

Lost your GRUB??? - Boot-Repair

Hi friends,

Lost your GRUB??? don't go to police!!! i will help you... ;)
 
Recently when we installed winXP for testing our project, in the system which has Ubuntu and Win7 already installed... on the Next day, when we are done with testing... I wanted my Ubuntu and win7 back for development work...but when I restarted the system, I found that the GRUB was removed... and it took me half a session to overcome this problem... here is the solution for it now…(Don’t expect something great from me now...half session to Google and find the tool!!!)...

Lost your GRUB??? Here is the solution!!!...

Boot-Repair

This a free tool, to restore the GRUB in your system. When you run this tool, you will get back your last GRUB back, but the OS you installed and all the modification you have made in the system after losing the GRUB will be lost. In my case, I lost win XP... but I got back my Ubuntu and win7...
So here are the steps I followed,

 STEP 1: start the system with live USB or live CD... and get into Try Ubuntu mode... 
 STEP 2: open the terminal in the Ubuntu...
 STEP 3: run
sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update
sudo apt-get install -y boot-repair && boot-repair
STEP 4: reboot the system...

Thats all, now you can see your GRUB!!!...

For more information about BOOT-REPAIR, click here

But the correct method is by doing something in GRUB… but I don’t have that much knowledge in it… so I used BOOT-REPAIR…


MAGIC(MATH) in C - CRACK IT IF YOU CAN!!!

Hi friends,

When I was doing my C language course... My instructor shown a small magic and asked us to find the logic behind it... I and my friends took one day to crack it...
Do you wanna know... what is that magic???
Would you like to crack it???
Could you crack it???
Ok here is the link for that .exe file... Download it and command the answer IF YOU CAN...

DOWNLOAD(.ZIP)

(Friends, the above link will open the MEGAUPLOAD site... you need to wait for 30 to 40 sec and then click on the regular download..and then you can download the zip file..you need to extract the zip to get the exe file- this is because i cannot upload or link the exe file directly from my system)..

ANSWER:
It’s been a week; I didn't receive any response... So here is solution...

Whatever may be the number... When you add the digits and subtract it from the number... the result will be multiples of 9... So each time, I gave the same symbol for the all multiples of 9... so your symbol has to be, the symbol which I gave for those multiples of 9…

And here is the source code…

SOURCE CODE

Older Posts Home

About Me

My photo
Hi everyone,myself Alagappan...electronic and communication engg. student... living in madurai... interested in everything... want to achieve something great in my lifetime...

Followers


Recent Comments