aboutsummaryrefslogtreecommitdiff
path: root/examples/ex5_schedule_rpc/src/main/java/com/google/android/mobly/snippet/example5/ExampleScheduleRpcSnippet.java
blob: a448fe4fcf9a8f4ec36432dd9a58fdd81a6735d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
 * Copyright (C) 2017 Google Inc.
 *
 * 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 com.google.android.mobly.snippet.example5;

import android.content.Context;
import android.os.Handler;
import android.support.test.InstrumentationRegistry;
import android.widget.Toast;
import com.google.android.mobly.snippet.Snippet;
import com.google.android.mobly.snippet.event.EventCache;
import com.google.android.mobly.snippet.event.SnippetEvent;
import com.google.android.mobly.snippet.rpc.AsyncRpc;
import com.google.android.mobly.snippet.rpc.Rpc;
import com.google.android.mobly.snippet.util.Log;

/**
 * Demonstrates how to schedule an RPC.
 */
public class ExampleScheduleRpcSnippet implements Snippet {

    /**
     * This is a sample asynchronous task.
     *
     * In real world use cases, it can be a {@link android.content.BroadcastReceiver}, a Listener,
     * or any other kind asynchronous callback class.
     */
    public class AsyncTask implements Runnable {

        private final String mCallbackId;
        private final String mMessage;

        public AsyncTask(String callbackId, String message) {
            this.mCallbackId = callbackId;
            this.mMessage = message;
        }

        /**
         * Sleeps for 10s then make toast and post a {@link SnippetEvent} with some data.
         *
         * <p>If the sleep is interrupted, a {@link SnippetEvent} signaling failure will be posted
         * instead.
         */
        @Override
        public void run() {
            Log.d("Sleeping for 10s before posting an event.");
            SnippetEvent event = new SnippetEvent(mCallbackId, mMessage);
            try {
                Thread.sleep(10000);
                showToast(mMessage);
            } catch (InterruptedException e) {
                event.getData().putBoolean("successful", false);
                event.getData().putString("reason", "Sleep was interrupted.");
                mEventCache.postEvent(event);
            }
            event.getData().putBoolean("successful", true);
            event.getData().putString("eventName", mMessage);
            mEventCache.postEvent(event);
        }
    }

    private final Context mContext;
    private final EventCache mEventCache = EventCache.getInstance();

    /**
     * Since the APIs here deal with UI, most of them have to be called in a thread that has called
     * looper.
     */
    private final Handler mHandler;

    public ExampleScheduleRpcSnippet() {
        mContext = InstrumentationRegistry.getContext();
        mHandler = new Handler(mContext.getMainLooper());
    }

    @Rpc(description = "Make a toast on screen.")
    public String makeToast(String message) throws InterruptedException {
        showToast(message);
        return "OK";
    }

    @AsyncRpc(description = "Make a toast on screen after some time.")
    public void asyncMakeToast(String callbackId, String message)
        throws Throwable {
        Runnable asyncTask = new AsyncTask(callbackId, "asyncMakeToast");
        Thread thread = new Thread(asyncTask);
        thread.start();
    }

    @Override
    public void shutdown() {}

    private void showToast(final String message) {
        mHandler.post(
            new Runnable() {
                @Override
                public void run() {
                    Toast.makeText(mContext, message, Toast.LENGTH_LONG).show();
                }
            });
    }
}