am f87b3a25: am 374db6c3: Merge "Remove ProcessState::mArgc,mArgV,mArgLen"

* commit 'f87b3a25b928f145558f6f60183944f513878b63':
  Remove ProcessState::mArgc,mArgV,mArgLen
This commit is contained in:
Narayan Kamath
2014-04-03 14:11:34 +00:00
committed by Android Git Automerger
4 changed files with 41 additions and 28 deletions

View File

@ -30,8 +30,9 @@ void app_usage()
class AppRuntime : public AndroidRuntime class AppRuntime : public AndroidRuntime
{ {
public: public:
AppRuntime() AppRuntime(char* argBlockStart, const size_t argBlockLength)
: mParentDir(NULL) : AndroidRuntime(argBlockStart, argBlockLength)
, mParentDir(NULL)
, mClassName(NULL) , mClassName(NULL)
, mClass(NULL) , mClass(NULL)
, mArgC(0) , mArgC(0)
@ -125,29 +126,30 @@ public:
using namespace android; using namespace android;
/* static size_t computeArgBlockSize(int argc, char* const argv[]) {
* sets argv0 to as much of newArgv0 as will fit // TODO: This assumes that all arguments are allocated in
*/ // contiguous memory. There isn't any documented guarantee
static void setArgv0(const char *argv0, const char *newArgv0) // that this is the case, but this is how the kernel does it
{ // (see fs/exec.c).
strlcpy(const_cast<char *>(argv0), newArgv0, strlen(argv0)); //
// Also note that this is a constant for "normal" android apps.
// Since they're forked from zygote, the size of their command line
// is the size of the zygote command line.
//
// We change the process name of the process by over-writing
// the start of the argument block (argv[0]) with the new name of
// the process, so we'd mysteriously start getting truncated process
// names if the zygote command line decreases in size.
uintptr_t start = reinterpret_cast<uintptr_t>(argv[0]);
uintptr_t end = reinterpret_cast<uintptr_t>(argv[argc - 1]);
end += strlen(argv[argc - 1]);
return (end - start);
} }
int main(int argc, char* const argv[]) int main(int argc, char* const argv[])
{ {
// These are global variables in ProcessState.cpp AppRuntime runtime(argv[0], computeArgBlockSize(argc, argv));
mArgC = argc;
mArgV = argv;
mArgLen = 0;
for (int i=0; i<argc; i++) {
mArgLen += strlen(argv[i]) + 1;
}
mArgLen--;
AppRuntime runtime;
const char* argv0 = argv[0];
// Process command line arguments // Process command line arguments
// ignore argv[0] // ignore argv[0]
argc--; argc--;
@ -184,7 +186,7 @@ int main(int argc, char* const argv[])
} }
if (niceName && *niceName) { if (niceName && *niceName) {
setArgv0(argv0, niceName); runtime.setArgv0(niceName);
set_process_name(niceName); set_process_name(niceName);
} }

View File

@ -228,9 +228,10 @@ int register_com_android_internal_os_RuntimeInit(JNIEnv* env)
/*static*/ JavaVM* AndroidRuntime::mJavaVM = NULL; /*static*/ JavaVM* AndroidRuntime::mJavaVM = NULL;
AndroidRuntime::AndroidRuntime(char* argBlockStart, const size_t argBlockLength) :
AndroidRuntime::AndroidRuntime() : mExitWithoutCleanup(false),
mExitWithoutCleanup(false) mArgBlockStart(argBlockStart),
mArgBlockLength(argBlockLength)
{ {
SkGraphics::Init(); SkGraphics::Init();
// this sets our preference for 16bit images during decode // this sets our preference for 16bit images during decode
@ -265,6 +266,10 @@ AndroidRuntime::~AndroidRuntime()
return jniRegisterNativeMethods(env, className, gMethods, numMethods); return jniRegisterNativeMethods(env, className, gMethods, numMethods);
} }
void AndroidRuntime::setArgv0(const char* argv0) {
strlcpy(mArgBlockStart, argv0, mArgBlockLength);
}
status_t AndroidRuntime::callMain(const char* className, status_t AndroidRuntime::callMain(const char* className,
jclass clazz, int argc, const char* const argv[]) jclass clazz, int argc, const char* const argv[])
{ {

View File

@ -19,8 +19,8 @@
#include <utils/Log.h> #include <utils/Log.h>
#include <binder/IPCThreadState.h> #include <binder/IPCThreadState.h>
#include <binder/ProcessState.h>
#include <binder/IServiceManager.h> #include <binder/IServiceManager.h>
#include <cutils/process_name.h>
#include <cutils/sched_policy.h> #include <cutils/sched_policy.h>
#include <utils/String8.h> #include <utils/String8.h>
#include <utils/Vector.h> #include <utils/Vector.h>
@ -385,7 +385,9 @@ void android_os_Process_setArgV0(JNIEnv* env, jobject clazz, jstring name)
} }
if (name8.size() > 0) { if (name8.size() > 0) {
ProcessState::self()->setArgV0(name8.string()); const char* procName = name8.string();
set_process_name(procName);
AndroidRuntime::getRuntime()->setArgv0(procName);
} }
} }

View File

@ -34,7 +34,7 @@ namespace android {
class AndroidRuntime class AndroidRuntime
{ {
public: public:
AndroidRuntime(); AndroidRuntime(char* argBlockStart, size_t argBlockSize);
virtual ~AndroidRuntime(); virtual ~AndroidRuntime();
enum StartMode { enum StartMode {
@ -44,6 +44,8 @@ public:
Tool, Tool,
}; };
void setArgv0(const char* argv0);
/** /**
* Register a set of methods in the specified class. * Register a set of methods in the specified class.
*/ */
@ -120,6 +122,8 @@ private:
Vector<JavaVMOption> mOptions; Vector<JavaVMOption> mOptions;
bool mExitWithoutCleanup; bool mExitWithoutCleanup;
char* const mArgBlockStart;
const size_t mArgBlockLength;
/* JNI JavaVM pointer */ /* JNI JavaVM pointer */
static JavaVM* mJavaVM; static JavaVM* mJavaVM;