/* * This file is auto-generated. DO NOT MODIFY. * Using: out/host/linux-x86/bin/aidl --lang=java --structured --version 2 --hash fc957f1d3d261d065ff5e5415f2d21caa79c310f -t --stability vintf --min_sdk_version platform_apis --ninja -d out/soong/.intermediates/hardware/interfaces/gnss/aidl/android.hardware.gnss-V2-java-source/gen/android/hardware/gnss/IGnssGeofence.java.d -o out/soong/.intermediates/hardware/interfaces/gnss/aidl/android.hardware.gnss-V2-java-source/gen -Nhardware/interfaces/gnss/aidl/aidl_api/android.hardware.gnss/2 hardware/interfaces/gnss/aidl/aidl_api/android.hardware.gnss/2/android/hardware/gnss/IGnssGeofence.aidl */ package android.hardware.gnss; /** @hide */ public interface IGnssGeofence extends android.os.IInterface { /** * The version of this interface that the caller is built against. * This might be different from what {@link #getInterfaceVersion() * getInterfaceVersion} returns as that is the version of the interface * that the remote object is implementing. */ public static final int VERSION = 2; public static final String HASH = "fc957f1d3d261d065ff5e5415f2d21caa79c310f"; /** Default implementation for IGnssGeofence. */ public static class Default implements android.hardware.gnss.IGnssGeofence { @Override public void setCallback(android.hardware.gnss.IGnssGeofenceCallback callback) throws android.os.RemoteException { } @Override public void addGeofence(int geofenceId, double latitudeDegrees, double longitudeDegrees, double radiusMeters, int lastTransition, int monitorTransitions, int notificationResponsivenessMs, int unknownTimerMs) throws android.os.RemoteException { } @Override public void pauseGeofence(int geofenceId) throws android.os.RemoteException { } @Override public void resumeGeofence(int geofenceId, int monitorTransitions) throws android.os.RemoteException { } @Override public void removeGeofence(int geofenceId) throws android.os.RemoteException { } @Override public int getInterfaceVersion() { return 0; } @Override public String getInterfaceHash() { return ""; } @Override public android.os.IBinder asBinder() { return null; } } /** Local-side IPC implementation stub class. */ public static abstract class Stub extends android.os.Binder implements android.hardware.gnss.IGnssGeofence { /** Construct the stub at attach it to the interface. */ @SuppressWarnings("this-escape") public Stub() { this.markVintfStability(); this.attachInterface(this, DESCRIPTOR); } /** * Cast an IBinder object into an android.hardware.gnss.IGnssGeofence interface, * generating a proxy if needed. */ public static android.hardware.gnss.IGnssGeofence asInterface(android.os.IBinder obj) { if ((obj==null)) { return null; } android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR); if (((iin!=null)&&(iin instanceof android.hardware.gnss.IGnssGeofence))) { return ((android.hardware.gnss.IGnssGeofence)iin); } return new android.hardware.gnss.IGnssGeofence.Stub.Proxy(obj); } @Override public android.os.IBinder asBinder() { return this; } /** @hide */ public static java.lang.String getDefaultTransactionName(int transactionCode) { switch (transactionCode) { case TRANSACTION_setCallback: { return "setCallback"; } case TRANSACTION_addGeofence: { return "addGeofence"; } case TRANSACTION_pauseGeofence: { return "pauseGeofence"; } case TRANSACTION_resumeGeofence: { return "resumeGeofence"; } case TRANSACTION_removeGeofence: { return "removeGeofence"; } case TRANSACTION_getInterfaceVersion: { return "getInterfaceVersion"; } case TRANSACTION_getInterfaceHash: { return "getInterfaceHash"; } default: { return null; } } } /** @hide */ public java.lang.String getTransactionName(int transactionCode) { return this.getDefaultTransactionName(transactionCode); } @Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException { java.lang.String descriptor = DESCRIPTOR; if (code >= android.os.IBinder.FIRST_CALL_TRANSACTION && code <= android.os.IBinder.LAST_CALL_TRANSACTION) { data.enforceInterface(descriptor); } if (code == INTERFACE_TRANSACTION) { reply.writeString(descriptor); return true; } else if (code == TRANSACTION_getInterfaceVersion) { reply.writeNoException(); reply.writeInt(getInterfaceVersion()); return true; } else if (code == TRANSACTION_getInterfaceHash) { reply.writeNoException(); reply.writeString(getInterfaceHash()); return true; } switch (code) { case TRANSACTION_setCallback: { android.hardware.gnss.IGnssGeofenceCallback _arg0; _arg0 = android.hardware.gnss.IGnssGeofenceCallback.Stub.asInterface(data.readStrongBinder()); data.enforceNoDataAvail(); this.setCallback(_arg0); reply.writeNoException(); break; } case TRANSACTION_addGeofence: { int _arg0; _arg0 = data.readInt(); double _arg1; _arg1 = data.readDouble(); double _arg2; _arg2 = data.readDouble(); double _arg3; _arg3 = data.readDouble(); int _arg4; _arg4 = data.readInt(); int _arg5; _arg5 = data.readInt(); int _arg6; _arg6 = data.readInt(); int _arg7; _arg7 = data.readInt(); data.enforceNoDataAvail(); this.addGeofence(_arg0, _arg1, _arg2, _arg3, _arg4, _arg5, _arg6, _arg7); reply.writeNoException(); break; } case TRANSACTION_pauseGeofence: { int _arg0; _arg0 = data.readInt(); data.enforceNoDataAvail(); this.pauseGeofence(_arg0); reply.writeNoException(); break; } case TRANSACTION_resumeGeofence: { int _arg0; _arg0 = data.readInt(); int _arg1; _arg1 = data.readInt(); data.enforceNoDataAvail(); this.resumeGeofence(_arg0, _arg1); reply.writeNoException(); break; } case TRANSACTION_removeGeofence: { int _arg0; _arg0 = data.readInt(); data.enforceNoDataAvail(); this.removeGeofence(_arg0); reply.writeNoException(); break; } default: { return super.onTransact(code, data, reply, flags); } } return true; } private static class Proxy implements android.hardware.gnss.IGnssGeofence { private android.os.IBinder mRemote; Proxy(android.os.IBinder remote) { mRemote = remote; } private int mCachedVersion = -1; private String mCachedHash = "-1"; @Override public android.os.IBinder asBinder() { return mRemote; } public java.lang.String getInterfaceDescriptor() { return DESCRIPTOR; } @Override public void setCallback(android.hardware.gnss.IGnssGeofenceCallback callback) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeStrongInterface(callback); boolean _status = mRemote.transact(Stub.TRANSACTION_setCallback, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method setCallback is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void addGeofence(int geofenceId, double latitudeDegrees, double longitudeDegrees, double radiusMeters, int lastTransition, int monitorTransitions, int notificationResponsivenessMs, int unknownTimerMs) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(geofenceId); _data.writeDouble(latitudeDegrees); _data.writeDouble(longitudeDegrees); _data.writeDouble(radiusMeters); _data.writeInt(lastTransition); _data.writeInt(monitorTransitions); _data.writeInt(notificationResponsivenessMs); _data.writeInt(unknownTimerMs); boolean _status = mRemote.transact(Stub.TRANSACTION_addGeofence, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method addGeofence is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void pauseGeofence(int geofenceId) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(geofenceId); boolean _status = mRemote.transact(Stub.TRANSACTION_pauseGeofence, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method pauseGeofence is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void resumeGeofence(int geofenceId, int monitorTransitions) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(geofenceId); _data.writeInt(monitorTransitions); boolean _status = mRemote.transact(Stub.TRANSACTION_resumeGeofence, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method resumeGeofence is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void removeGeofence(int geofenceId) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(geofenceId); boolean _status = mRemote.transact(Stub.TRANSACTION_removeGeofence, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method removeGeofence is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public int getInterfaceVersion() throws android.os.RemoteException { if (mCachedVersion == -1) { android.os.Parcel data = android.os.Parcel.obtain(asBinder()); android.os.Parcel reply = android.os.Parcel.obtain(); try { data.writeInterfaceToken(DESCRIPTOR); boolean _status = mRemote.transact(Stub.TRANSACTION_getInterfaceVersion, data, reply, 0); reply.readException(); mCachedVersion = reply.readInt(); } finally { reply.recycle(); data.recycle(); } } return mCachedVersion; } @Override public synchronized String getInterfaceHash() throws android.os.RemoteException { if ("-1".equals(mCachedHash)) { android.os.Parcel data = android.os.Parcel.obtain(asBinder()); android.os.Parcel reply = android.os.Parcel.obtain(); try { data.writeInterfaceToken(DESCRIPTOR); boolean _status = mRemote.transact(Stub.TRANSACTION_getInterfaceHash, data, reply, 0); reply.readException(); mCachedHash = reply.readString(); } finally { reply.recycle(); data.recycle(); } } return mCachedHash; } } static final int TRANSACTION_setCallback = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0); static final int TRANSACTION_addGeofence = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1); static final int TRANSACTION_pauseGeofence = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2); static final int TRANSACTION_resumeGeofence = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3); static final int TRANSACTION_removeGeofence = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4); static final int TRANSACTION_getInterfaceVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 16777214); static final int TRANSACTION_getInterfaceHash = (android.os.IBinder.FIRST_CALL_TRANSACTION + 16777213); /** @hide */ public int getMaxTransactionId() { return 16777214; } } /** @hide */ public static final java.lang.String DESCRIPTOR = "android$hardware$gnss$IGnssGeofence".replace('$', '.'); public void setCallback(android.hardware.gnss.IGnssGeofenceCallback callback) throws android.os.RemoteException; public void addGeofence(int geofenceId, double latitudeDegrees, double longitudeDegrees, double radiusMeters, int lastTransition, int monitorTransitions, int notificationResponsivenessMs, int unknownTimerMs) throws android.os.RemoteException; public void pauseGeofence(int geofenceId) throws android.os.RemoteException; public void resumeGeofence(int geofenceId, int monitorTransitions) throws android.os.RemoteException; public void removeGeofence(int geofenceId) throws android.os.RemoteException; public int getInterfaceVersion() throws android.os.RemoteException; public String getInterfaceHash() throws android.os.RemoteException; }