blob: 3a1ada3d7af95a951fd4a24a2a2440d6eaa6328f [file] [log] [blame]
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.contentcaptureservice.cts;
import static com.google.common.truth.Truth.assertThat;
import android.app.Service;
import android.content.Intent;
import android.content.LocusId;
import android.os.Binder;
import android.os.IBinder;
import android.os.ParcelFileDescriptor;
import android.os.SystemClock;
import android.view.contentcapture.ContentCaptureManager;
import android.view.contentcapture.DataShareRequest;
import android.view.contentcapture.DataShareWriteAdapter;
import androidx.annotation.Nullable;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Random;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
public class DataSharingService extends Service {
private static final Executor sExecutor = Executors.newCachedThreadPool();
private static final Random sRandom = new Random();
boolean mSessionFinished = false;
boolean mSessionSucceeded = false;
int mSessionErrorCode = 0;
boolean mSessionRejected = false;
boolean mShouldAttemptConcurrentRequest = false;
boolean mConcurrentRequestFailed = false;
int mConcurrentRequestErrorCode = 0;
byte[] mDataWritten = new byte[10_000];
String mLocusId = "DataShare_CTSTest";
String mMimeType = "application/octet-stream";
private final IBinder mBinder = new LocalBinder();
@Nullable
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
public void shareData() {
ContentCaptureManager manager =
getApplicationContext().getSystemService(ContentCaptureManager.class);
assertThat(manager).isNotNull();
assertThat(manager.isContentCaptureEnabled()).isTrue();
manager.shareData(
new DataShareRequest(new LocusId(mLocusId), mMimeType),
sExecutor, new DataShareWriteAdapter() {
@Override
public void onWrite(ParcelFileDescriptor destination) {
if (mShouldAttemptConcurrentRequest) {
attemptConcurrentRequest();
// Waiting for the request to arrive at the server
SystemClock.sleep(500);
}
try (OutputStream outputStream =
new ParcelFileDescriptor.AutoCloseOutputStream(destination)) {
sRandom.nextBytes(mDataWritten);
outputStream.write(mDataWritten);
mSessionSucceeded = true;
} catch (IOException e) {
}
mSessionFinished = true;
}
@Override
public void onRejected() {
mSessionRejected = true;
mSessionSucceeded = false;
mSessionFinished = true;
}
@Override
public void onError(int errorCode) {
mSessionErrorCode = errorCode;
mSessionSucceeded = false;
mSessionFinished = true;
}
});
}
private void attemptConcurrentRequest() {
ContentCaptureManager manager =
getApplicationContext().getSystemService(ContentCaptureManager.class);
assertThat(manager).isNotNull();
assertThat(manager.isContentCaptureEnabled()).isTrue();
manager.shareData(
new DataShareRequest(new LocusId(mLocusId), mMimeType),
sExecutor, new DataShareWriteAdapter() {
@Override
public void onWrite(ParcelFileDescriptor destination) {}
@Override
public void onRejected() {}
@Override
public void onError(int errorCode) {
mConcurrentRequestFailed = true;
mConcurrentRequestErrorCode = errorCode;
}
});
}
public void setLocusId(String locusId) {
mLocusId = locusId;
}
public void setMimeType(String mimeType) {
mMimeType = mimeType;
}
public void setShouldAttemptConcurrentRequest(boolean attemptConcurrentRequest) {
mShouldAttemptConcurrentRequest = attemptConcurrentRequest;
}
public class LocalBinder extends Binder {
DataSharingService getService() {
return DataSharingService.this;
}
}
}