blob: 89019f78a974bcccbf5b9d3cae6df42183215bb9 [file] [log] [blame]
Elliott Hughesbf86d042011-08-31 17:53:14 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "jni_internal.h"
18#include "object.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070019#include "scoped_thread_state_change.h"
Elliott Hughesbf86d042011-08-31 17:53:14 -070020
Elliott Hughesbf86d042011-08-31 17:53:14 -070021namespace art {
22
Elliott Hughes0512f022012-03-15 22:10:52 -070023static jobject Object_internalClone(JNIEnv* env, jobject javaThis) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070024 ScopedObjectAccess soa(env);
25 Object* o = soa.Decode<Object*>(javaThis);
26 return soa.AddLocalReference<jobject>(o->Clone());
Elliott Hughesbf86d042011-08-31 17:53:14 -070027}
28
Elliott Hughes0512f022012-03-15 22:10:52 -070029static void Object_notify(JNIEnv* env, jobject javaThis) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070030 ScopedObjectAccess soa(env);
31 Object* o = soa.Decode<Object*>(javaThis);
Elliott Hughesbf86d042011-08-31 17:53:14 -070032 o->Notify();
33}
34
Elliott Hughes0512f022012-03-15 22:10:52 -070035static void Object_notifyAll(JNIEnv* env, jobject javaThis) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070036 ScopedObjectAccess soa(env);
37 Object* o = soa.Decode<Object*>(javaThis);
Elliott Hughesbf86d042011-08-31 17:53:14 -070038 o->NotifyAll();
39}
40
Elliott Hughes0512f022012-03-15 22:10:52 -070041static void Object_wait(JNIEnv* env, jobject javaThis, jlong ms, jint ns) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070042 ScopedObjectAccess soa(env);
43 Object* o = soa.Decode<Object*>(javaThis);
Elliott Hughesbf86d042011-08-31 17:53:14 -070044 o->Wait(ms, ns);
45}
46
Elliott Hughes0512f022012-03-15 22:10:52 -070047static JNINativeMethod gMethods[] = {
Elliott Hughesbf86d042011-08-31 17:53:14 -070048 NATIVE_METHOD(Object, internalClone, "(Ljava/lang/Cloneable;)Ljava/lang/Object;"),
49 NATIVE_METHOD(Object, notify, "()V"),
50 NATIVE_METHOD(Object, notifyAll, "()V"),
51 NATIVE_METHOD(Object, wait, "(JI)V"),
52};
53
Elliott Hughesbf86d042011-08-31 17:53:14 -070054void register_java_lang_Object(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -070055 REGISTER_NATIVE_METHODS("java/lang/Object");
Elliott Hughesbf86d042011-08-31 17:53:14 -070056}
57
58} // namespace art