summaryrefslogtreecommitdiff
path: root/sdl_android/src/main/java/com/smartdevicelink/util/ServiceFinder.java
blob: c115d046c294d01f94b5e191c915d7d086d22edb (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package com.smartdevicelink.util;

import android.content.BroadcastReceiver;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.ResolveInfo;
import android.os.Handler;
import android.util.Log;

import com.smartdevicelink.transport.SdlRouterService;

import java.util.HashMap;
import java.util.Vector;

import static com.smartdevicelink.transport.TransportConstants.BIND_LOCATION_CLASS_NAME_EXTRA;
import static com.smartdevicelink.transport.TransportConstants.BIND_LOCATION_PACKAGE_NAME_EXTRA;
import static com.smartdevicelink.transport.TransportConstants.SEND_PACKET_TO_APP_LOCATION_EXTRA_NAME;

/**
 * Created by Joey Grover on 8/18/17.
 */

public class ServiceFinder {
    public static final String TAG = ServiceFinder.class.getSimpleName();

    private static final int TIMEOUT = 1000;
    final String receiverLocation;
    final Context context;
    final ServiceFinderCallback callback;
    final Vector<ComponentName> services;
    final HashMap<String, ResolveInfo> sdlMultiMap;
    final Handler timeoutHandler;
    final Runnable timeoutRunnable;


    public ServiceFinder(Context context, String packageName, final ServiceFinderCallback callback) {
        this.receiverLocation = packageName + ".ServiceFinder";
        this.context = context.getApplicationContext();
        this.callback = callback;
        this.services = new Vector<>();

        this.sdlMultiMap = AndroidTools.getSdlEnabledApps(context, packageName);

        this.context.registerReceiver(mainServiceReceiver, new IntentFilter(this.receiverLocation));

        timeoutRunnable = new Runnable() {
            @Override
            public void run() {
                onFinished();
            }
        };
        timeoutHandler = new Handler();
        timeoutHandler.postDelayed(timeoutRunnable, TIMEOUT + (50 * packageName.length()));

        //Send out our broadcast
        context.sendBroadcast(createQueryIntent(this.receiverLocation));


    }

    BroadcastReceiver mainServiceReceiver = new BroadcastReceiver() {
        private final Object LIST_LOCK = new Object();

        @Override
        public void onReceive(Context context, Intent intent) {
            Log.d(TAG, "Received intent " + intent);
            if (intent != null) {
                String packageName = intent.getStringExtra(BIND_LOCATION_PACKAGE_NAME_EXTRA);
                String className = intent.getStringExtra(BIND_LOCATION_CLASS_NAME_EXTRA);
                Log.d(TAG, "Received intent from package: " + packageName + ". Classname: " + className);
                synchronized (LIST_LOCK) {
                    //Add to running services
                    services.add(new ComponentName(packageName, className));
                    //Remove from our waiting for response list
                    sdlMultiMap.remove(packageName);

                    //If list is empty, return to callback and unregister
                    if (sdlMultiMap.isEmpty() && callback != null) {
                        timeoutHandler.removeCallbacks(timeoutRunnable);
                        onFinished();
                    }
                }
            }
        }
    };

    private void onFinished() {
        if (callback != null) {
            callback.onComplete(services);
        }
        context.unregisterReceiver(mainServiceReceiver);

    }

//    /**
//     * Get all SDL enabled apps. If the package name is null, it will return all apps. However, if the package name is included, the
//     * resulting hash map will not include the app with that package name.
//     *
//     * @param context
//     * @param packageName
//     * @return
//     */
//    public static HashMap<String, ResolveInfo> getSdlEnabledApps(Context context, String packageName) {
//        Intent intent = new Intent(TransportConstants.START_ROUTER_SERVICE_ACTION);
//        PackageManager manager = context.getPackageManager();
//        List<ResolveInfo> infos = manager.queryBroadcastReceivers(intent, 0);
//        HashMap<String, ResolveInfo> sdlMultiMap = new HashMap<String, ResolveInfo>();
//        for (ResolveInfo info : infos) {
//            //Log.d(TAG, "Sdl enabled app: " + info.activityInfo.packageName);
//            if (info.activityInfo.applicationInfo.packageName.equals(packageName)) {
//                //Log.d(TAG, "Ignoring my own package");
//                continue;
//            }
//
//            sdlMultiMap.put(info.activityInfo.packageName, info);
//            try {
//                ServiceInfo[] services = manager.getPackageInfo(info.activityInfo.applicationInfo.packageName, PackageManager.GET_SERVICES).services;
//                for (int i = 0; i < services.length; i++) {
//                    Log.d(TAG, "Found : " + services[i].name);
//                }
//            } catch (PackageManager.NameNotFoundException e) {
//                e.printStackTrace();
//            }
//        }
//        return sdlMultiMap;
//    }

    private static Intent createQueryIntent(String receiverLocation) {
        Intent intent = new Intent();
        intent.setAction(SdlRouterService.REGISTER_WITH_ROUTER_ACTION);
        intent.putExtra(SEND_PACKET_TO_APP_LOCATION_EXTRA_NAME, receiverLocation);
        intent.setFlags(Intent.FLAG_RECEIVER_FOREGROUND);
        return intent;
    }

    public interface ServiceFinderCallback {
        void onComplete(Vector<ComponentName> routerServices);
    }
}