blob: b837b9cdadfaa1c7d5e741cb8f13381f4263f32f [file] [log] [blame]
John Reckb89a6342016-05-05 10:16:09 -07001/*
2 * Copyright (C) 2016 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
17package test.amslam;
18
19import android.content.BroadcastReceiver;
20import android.content.Context;
21import android.content.Intent;
22import android.os.SystemClock;
23
24import java.util.HashSet;
25import java.util.Set;
26
27public class PongReceiver extends BroadcastReceiver {
28 interface PingPongResponseListener {
29 void onPingPongResponse(long send, long bounce, long recv, String remote);
30 }
31
32 private static Set<PingPongResponseListener> sListeners = new HashSet<>();
33
34 public static void addListener(PingPongResponseListener listener) {
35 sListeners.add(listener);
36 }
37
38 public static void removeListener(PingPongResponseListener listener) {
39 sListeners.remove(listener);
40 }
41
42 @Override
43 public void onReceive(Context context, Intent intent) {
44 long now = SystemClock.uptimeMillis();
45 long start_time = intent.getLongExtra("start_time", 0);
46 long bounce_time = intent.getLongExtra("bounce_time", 0);
47 String receiver = intent.getStringExtra("receiver");
48 for (PingPongResponseListener listener : sListeners) {
49 listener.onPingPongResponse(start_time, bounce_time, now, receiver);
50 }
51 }
52}