blob: 91e2e5b27cb11189308d8ce4c13b7fff2f40ad17 [file] [log] [blame]
/*
* This file is auto-generated. DO NOT MODIFY.
*/
package android.hardware.gnss;
/** @hide */
public interface IGnssBatching 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 IGnssBatching. */
public static class Default implements android.hardware.gnss.IGnssBatching
{
@Override public void init(android.hardware.gnss.IGnssBatchingCallback callback) throws android.os.RemoteException
{
}
@Override public int getBatchSize() throws android.os.RemoteException
{
return 0;
}
@Override public void start(android.hardware.gnss.IGnssBatching.Options options) throws android.os.RemoteException
{
}
@Override public void flush() throws android.os.RemoteException
{
}
@Override public void stop() throws android.os.RemoteException
{
}
@Override public void cleanup() 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.IGnssBatching
{
/** Construct the stub at attach it to the interface. */
public Stub()
{
this.markVintfStability();
this.attachInterface(this, DESCRIPTOR);
}
/**
* Cast an IBinder object into an android.hardware.gnss.IGnssBatching interface,
* generating a proxy if needed.
*/
public static android.hardware.gnss.IGnssBatching 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.IGnssBatching))) {
return ((android.hardware.gnss.IGnssBatching)iin);
}
return new android.hardware.gnss.IGnssBatching.Stub.Proxy(obj);
}
@Override public android.os.IBinder asBinder()
{
return this;
}
/** @hide */
public static java.lang.String getDefaultTransactionName(int transactionCode)
{
switch (transactionCode)
{
case TRANSACTION_init:
{
return "init";
}
case TRANSACTION_getBatchSize:
{
return "getBatchSize";
}
case TRANSACTION_start:
{
return "start";
}
case TRANSACTION_flush:
{
return "flush";
}
case TRANSACTION_stop:
{
return "stop";
}
case TRANSACTION_cleanup:
{
return "cleanup";
}
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);
}
switch (code)
{
case INTERFACE_TRANSACTION:
{
reply.writeString(descriptor);
return true;
}
case TRANSACTION_getInterfaceVersion:
{
reply.writeNoException();
reply.writeInt(getInterfaceVersion());
return true;
}
case TRANSACTION_getInterfaceHash:
{
reply.writeNoException();
reply.writeString(getInterfaceHash());
return true;
}
}
switch (code)
{
case TRANSACTION_init:
{
android.hardware.gnss.IGnssBatchingCallback _arg0;
_arg0 = android.hardware.gnss.IGnssBatchingCallback.Stub.asInterface(data.readStrongBinder());
data.enforceNoDataAvail();
this.init(_arg0);
reply.writeNoException();
break;
}
case TRANSACTION_getBatchSize:
{
int _result = this.getBatchSize();
reply.writeNoException();
reply.writeInt(_result);
break;
}
case TRANSACTION_start:
{
android.hardware.gnss.IGnssBatching.Options _arg0;
_arg0 = data.readTypedObject(android.hardware.gnss.IGnssBatching.Options.CREATOR);
data.enforceNoDataAvail();
this.start(_arg0);
reply.writeNoException();
break;
}
case TRANSACTION_flush:
{
this.flush();
reply.writeNoException();
break;
}
case TRANSACTION_stop:
{
this.stop();
reply.writeNoException();
break;
}
case TRANSACTION_cleanup:
{
this.cleanup();
reply.writeNoException();
break;
}
default:
{
return super.onTransact(code, data, reply, flags);
}
}
return true;
}
private static class Proxy implements android.hardware.gnss.IGnssBatching
{
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 init(android.hardware.gnss.IGnssBatchingCallback 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_init, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method init is unimplemented.");
}
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
@Override public int getBatchSize() throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
android.os.Parcel _reply = android.os.Parcel.obtain();
int _result;
try {
_data.writeInterfaceToken(DESCRIPTOR);
boolean _status = mRemote.transact(Stub.TRANSACTION_getBatchSize, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method getBatchSize is unimplemented.");
}
_reply.readException();
_result = _reply.readInt();
}
finally {
_reply.recycle();
_data.recycle();
}
return _result;
}
@Override public void start(android.hardware.gnss.IGnssBatching.Options options) 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.writeTypedObject(options, 0);
boolean _status = mRemote.transact(Stub.TRANSACTION_start, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method start is unimplemented.");
}
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
@Override public void flush() 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);
boolean _status = mRemote.transact(Stub.TRANSACTION_flush, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method flush is unimplemented.");
}
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
@Override public void stop() 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);
boolean _status = mRemote.transact(Stub.TRANSACTION_stop, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method stop is unimplemented.");
}
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
@Override public void cleanup() 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);
boolean _status = mRemote.transact(Stub.TRANSACTION_cleanup, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method cleanup 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_init = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
static final int TRANSACTION_getBatchSize = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
static final int TRANSACTION_start = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
static final int TRANSACTION_flush = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
static final int TRANSACTION_stop = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4);
static final int TRANSACTION_cleanup = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5);
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;
}
}
public static final java.lang.String DESCRIPTOR = "android$hardware$gnss$IGnssBatching".replace('$', '.');
public static final int WAKEUP_ON_FIFO_FULL = 1;
public void init(android.hardware.gnss.IGnssBatchingCallback callback) throws android.os.RemoteException;
public int getBatchSize() throws android.os.RemoteException;
public void start(android.hardware.gnss.IGnssBatching.Options options) throws android.os.RemoteException;
public void flush() throws android.os.RemoteException;
public void stop() throws android.os.RemoteException;
public void cleanup() throws android.os.RemoteException;
public int getInterfaceVersion() throws android.os.RemoteException;
public String getInterfaceHash() throws android.os.RemoteException;
public static class Options implements android.os.Parcelable
{
public long periodNanos = 0L;
public float minDistanceMeters = 0.000000f;
public int flags = 0;
@Override
public final int getStability() { return android.os.Parcelable.PARCELABLE_STABILITY_VINTF; }
public static final android.os.Parcelable.Creator<Options> CREATOR = new android.os.Parcelable.Creator<Options>() {
@Override
public Options createFromParcel(android.os.Parcel _aidl_source) {
Options _aidl_out = new Options();
_aidl_out.readFromParcel(_aidl_source);
return _aidl_out;
}
@Override
public Options[] newArray(int _aidl_size) {
return new Options[_aidl_size];
}
};
@Override public final void writeToParcel(android.os.Parcel _aidl_parcel, int _aidl_flag)
{
int _aidl_start_pos = _aidl_parcel.dataPosition();
_aidl_parcel.writeInt(0);
_aidl_parcel.writeLong(periodNanos);
_aidl_parcel.writeFloat(minDistanceMeters);
_aidl_parcel.writeInt(flags);
int _aidl_end_pos = _aidl_parcel.dataPosition();
_aidl_parcel.setDataPosition(_aidl_start_pos);
_aidl_parcel.writeInt(_aidl_end_pos - _aidl_start_pos);
_aidl_parcel.setDataPosition(_aidl_end_pos);
}
public final void readFromParcel(android.os.Parcel _aidl_parcel)
{
int _aidl_start_pos = _aidl_parcel.dataPosition();
int _aidl_parcelable_size = _aidl_parcel.readInt();
try {
if (_aidl_parcelable_size < 4) throw new android.os.BadParcelableException("Parcelable too small");;
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
periodNanos = _aidl_parcel.readLong();
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
minDistanceMeters = _aidl_parcel.readFloat();
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
flags = _aidl_parcel.readInt();
} finally {
if (_aidl_start_pos > (Integer.MAX_VALUE - _aidl_parcelable_size)) {
throw new android.os.BadParcelableException("Overflow in the size of parcelable");
}
_aidl_parcel.setDataPosition(_aidl_start_pos + _aidl_parcelable_size);
}
}
@Override
public int describeContents() {
int _mask = 0;
return _mask;
}
}
}