classtypeimpl.c

来自「This is a resource based on j2me embedde」· C语言 代码 · 共 186 行

C
186
字号
/* * @(#)ClassTypeImpl.c	1.33 06/10/25 * * Copyright  1990-2008 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER *  * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Software Foundation.  *  * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License version 2 for more details (a copy is * included at /legal/license.txt).  *  * You should have received a copy of the GNU General Public License * version 2 along with this work; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA  *  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions.  */#include "util.h"#include "ClassTypeImpl.h"#include "inStream.h"#include "outStream.h"static jboolean superclass(PacketInputStream *in, PacketOutputStream *out){    JNIEnv *env;    jclass clazz;        env = getEnv();        clazz = inStream_readClassRef(env, in);    if (inStream_error(in)) {        return JNI_TRUE;    }    WITH_LOCAL_REFS(env, 1) {        jclass superclass;                superclass = JNI_FUNC_PTR(env,GetSuperclass)(env,clazz);        (void)outStream_writeObjectRef(env, out, superclass);    } END_WITH_LOCAL_REFS(env);        return JNI_TRUE;}static jdwpErrorreadStaticFieldValue(JNIEnv *env, PacketInputStream *in, jclass clazz,                     jfieldID field, char *signature){    jvalue value;    jdwpError serror = JDWP_ERROR(NONE);    switch (signature[0]) {        case JDWP_TAG(ARRAY):        case JDWP_TAG(OBJECT):            value.l = inStream_readObjectRef(env, in);            JNI_FUNC_PTR(env,SetStaticObjectField)(env, clazz, field, value.l);            break;                case JDWP_TAG(BYTE):            value.b = inStream_readByte(in);            JNI_FUNC_PTR(env,SetStaticByteField)(env, clazz, field, value.b);            break;        case JDWP_TAG(CHAR):            value.c = inStream_readChar(in);            JNI_FUNC_PTR(env,SetStaticCharField)(env, clazz, field, value.c);            break;        case JDWP_TAG(FLOAT):            value.f = inStream_readFloat(in);            JNI_FUNC_PTR(env,SetStaticFloatField)(env, clazz, field, value.f);            break;        case JDWP_TAG(DOUBLE):            value.d = inStream_readDouble(in);            JNI_FUNC_PTR(env,SetStaticDoubleField)(env, clazz, field, value.d);            break;        case JDWP_TAG(INT):            value.i = inStream_readInt(in);            JNI_FUNC_PTR(env,SetStaticIntField)(env, clazz, field, value.i);            break;        case JDWP_TAG(LONG):            value.j = inStream_readLong(in);            JNI_FUNC_PTR(env,SetStaticLongField)(env, clazz, field, value.j);            break;        case JDWP_TAG(SHORT):            value.s = inStream_readShort(in);            JNI_FUNC_PTR(env,SetStaticShortField)(env, clazz, field, value.s);            break;        case JDWP_TAG(BOOLEAN):            value.z = inStream_readBoolean(in);            JNI_FUNC_PTR(env,SetStaticBooleanField)(env, clazz, field, value.z);            break;    }    if (JNI_FUNC_PTR(env,ExceptionOccurred)(env)) {        serror = JDWP_ERROR(INTERNAL);    }        return serror;}static jboolean setValues(PacketInputStream *in, PacketOutputStream *out){    JNIEnv *env;    jint count;    jclass clazz;        env = getEnv();        clazz = inStream_readClassRef(env, in);    if (inStream_error(in)) {        return JNI_TRUE;    }    count = inStream_readInt(in);    if (inStream_error(in)) {        return JNI_TRUE;    }    WITH_LOCAL_REFS(env, count) {        int i;                for (i = 0; i < count; i++) {                        jfieldID field;            char *signature = NULL;            jvmtiError error;            jdwpError serror;                        field = inStream_readFieldID(in);            if (inStream_error(in)) {                break;            }            error = fieldSignature(clazz, field, NULL, &signature, NULL);            if (error != JVMTI_ERROR_NONE) {                break;            }                        serror = readStaticFieldValue(env, in, clazz, field, signature);                        jvmtiDeallocate(signature);                        if ( serror != JDWP_ERROR(NONE) ) {                break;            }                    }    } END_WITH_LOCAL_REFS(env);        return JNI_TRUE;}static jboolean invokeStatic(PacketInputStream *in, PacketOutputStream *out){    return sharedInvoke(in, out);}void *ClassType_Cmds[] = { (void *)0x4    ,(void *)superclass    ,(void *)setValues    ,(void *)invokeStatic    ,(void *)invokeStatic};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?