summaryrefslogtreecommitdiffstats
path: root/src/com/android/dialer/incall/CallMethodHelper.java
blob: 24c042202b2464a32a9a75d061bf99c0082771eb (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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
/*
 * Copyright (C) 2015 The CyanogenMod 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 com.android.dialer.incall;

import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.content.res.Resources;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.util.Log;
import android.widget.Toast;
import com.android.dialer.DialerApplication;
import com.android.phone.common.util.StartInCallCallReceiver;
import com.cyanogen.ambient.common.api.AmbientApiClient;
import com.cyanogen.ambient.common.api.Result;
import com.cyanogen.ambient.common.api.ResultCallback;
import com.cyanogen.ambient.analytics.Event;
import com.cyanogen.ambient.discovery.NudgeServices;
import com.cyanogen.ambient.discovery.results.BundleResult;
import com.cyanogen.ambient.discovery.util.NudgeKey;
import com.cyanogen.ambient.incall.InCallApi;
import com.cyanogen.ambient.incall.InCallPluginStatus;
import com.cyanogen.ambient.incall.InCallServices;
import com.cyanogen.ambient.incall.extension.CreditBalance;
import com.cyanogen.ambient.incall.extension.CreditInfo;
import com.cyanogen.ambient.incall.extension.GetCreditInfoResult;
import com.cyanogen.ambient.incall.extension.ICallCreditListener;
import com.cyanogen.ambient.incall.extension.StatusCodes;
import com.cyanogen.ambient.incall.results.AuthenticationStateResult;
import com.cyanogen.ambient.incall.results.GetCreditInfoResultResult;
import com.cyanogen.ambient.incall.results.InCallProviderInfoResult;
import com.cyanogen.ambient.incall.results.InstalledPluginsResult;

import com.android.dialer.incall.CallMethodInfo;
import com.android.dialer.R;
import com.cyanogen.ambient.incall.results.MimeTypeResult;
import com.cyanogen.ambient.incall.results.PendingIntentResult;
import com.cyanogen.ambient.incall.results.PluginStatusResult;
import com.cyanogen.ambient.incall.util.InCallProviderInfo;
import com.google.common.base.Joiner;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import static com.cyanogen.ambient.incall.util.InCallHelper.NO_COLOR;

/**
 *  Call Method Helper - In charge of keeping a running and updated hashmap of all InCallProviders
 *  currently installed.
 *
 *  Fragments and Activities can subscribe to changes with subscribe.
 *
 */
public class CallMethodHelper {

    private static CallMethodHelper sInstance;

    AmbientApiClient mClient;
    Context mContext;
    InCallApi mInCallApi;
    Handler mMainHandler;
    private static List<ComponentName> mInstalledPlugins;
    private static HashMap<ComponentName, CallMethodInfo> mCallMethodInfos = new HashMap<>();
    private static HashMap<ComponentName, ICallCreditListener> mCallCreditListeners = new
            HashMap<>();
    private static HashMap<String, CallMethodReceiver> mRegisteredClients = new HashMap<>();
    private static boolean dataHasBeenBroadcastPreviously = false;

    // To prevent multiple broadcasts and force us to wait for all items to be complete
    // this is the count of callbacks we should get for each item. Increase this if we add more.
    private static int EXPECTED_RESULT_CALLBACKS = 8;

    // To prevent multiple broadcasts and force us to wait for all items to be complete
    // this is the count of callbacks we should get for each item. Increase this if we add more.
    private static int EXPECTED_DYNAMIC_RESULT_CALLBACKS = 2;

    // Keeps track of the number of callbacks we have from AmbientCore. Reset this to 0
    // immediately after all callbacks are accounted for.
    private static int callbackCount = 0;

    private static final String TAG = CallMethodHelper.class.getSimpleName();
    private static final boolean DEBUG = true;

    public interface CallMethodReceiver {
        void onChanged(HashMap<ComponentName, CallMethodInfo> callMethodInfos);
    }

    /**
     * Broadcasts mCallMethodInfos to all registered clients on the Main thread.
     */
    private static void broadcast() {
        getInstance().mMainHandler.post(new Runnable() {
            @Override
            public void run() {
                for (CallMethodReceiver client : mRegisteredClients.values()) {
                    client.onChanged(mCallMethodInfos);
                }
                if (DEBUG) {
                    for (CallMethodInfo cmi : mCallMethodInfos.values()) {
                        Log.v("BIRD", "Broadcast: " + cmi.mName);
                    }
                }
                dataHasBeenBroadcastPreviously = true;
                callbackCount = 0;
            }
        });
    }

    /**
     * Helper method for subscribed clients to remove any item that is not enabled from the hashmap
     * @param input HashMap returned from a broadcast
     * @param output HashMap with only enabled items
     */
    public static void removeDisabled(HashMap<ComponentName, CallMethodInfo> input,
                                      HashMap<ComponentName, CallMethodInfo> output) {

        for (Map.Entry<ComponentName, CallMethodInfo> entry : input.entrySet()) {
            ComponentName key = entry.getKey();
            CallMethodInfo value = entry.getValue();

            if (value.mStatus == InCallPluginStatus.ENABLED) {
                output.put(key, value);
            }
        }
    }

    /***
     * Registers the client, on register returns boolean if
     * callMethodInfo data is already collected and the initial broadcast has been sent.
     * @param id unique string for the client
     * @param cmr client receiver
     * @return boolean isempty
     */
    public static synchronized boolean subscribe(String id, CallMethodReceiver cmr) {
        mRegisteredClients.put(id, cmr);

        for (ComponentName callCreditProvider : mCallCreditListeners.keySet()) {
            if (mCallCreditListeners.get(callCreditProvider) == null) {
               /* CallCreditListenerImpl listener = CallCreditListenerImpl.getInstance
                        (callCreditProvider);
                getInstance().mInCallApi.addCreditListener(getInstance().mClient,
                        callCreditProvider, listener);
                mCallCreditListeners.put(callCreditProvider, listener); */
            }
        }

        return dataHasBeenBroadcastPreviously;
    }

    /**
     * Unsubscribes the client. All clients should unsubscribe when they are removed.
     * @param id of the client to remove
     */
    public static synchronized void unsubscribe(String id) {
        mRegisteredClients.remove(id);

        if (mRegisteredClients.size() == 0) {
            for (ComponentName callCreditProvider : mCallCreditListeners.keySet()) {
                if (mCallCreditListeners.get(callCreditProvider) != null) {
                    getInstance().mInCallApi.removeCreditListener(getInstance().mClient,
                            callCreditProvider, mCallCreditListeners.get(callCreditProvider));
                }
            }
        }
    }

    /**
     * Get a single instance of our call method helper. There should only be ever one instance.
     * @return
     */
    private static synchronized CallMethodHelper getInstance() {
        if (sInstance == null) {
            sInstance = new CallMethodHelper();
        }
        return sInstance;
    }

    /**
     * Generic CallResultReceiver with basic error handling
     * @param cmi
     * @return
     */
    public static StartInCallCallReceiver getVoIPResultReceiver(final CallMethodInfo cmi,
                                                                    final String originCode) {
        StartInCallCallReceiver svcrr =
                new StartInCallCallReceiver(new Handler(Looper.getMainLooper()));

        svcrr.setReceiver(new StartInCallCallReceiver.Receiver() {

            @Override
            public void onReceiveResult(int resultCode, Bundle resultData) {
                if (DEBUG) Log.i(TAG, "Got Start VoIP Call result callback code = " + resultCode);

                switch (resultCode) {
                    case StatusCodes.StartCall.CALL_FAILURE_INSUFFICIENT_CREDITS:
                    case StatusCodes.StartCall.CALL_FAILURE_INVALID_NUMBER:
                    case StatusCodes.StartCall.CALL_FAILURE_TIMEOUT:
                    case StatusCodes.StartCall.CALL_FAILURE_UNAUTHENTICATED:
                    case StatusCodes.StartCall.CALL_FAILURE:

                        String text = getInstance().mContext.getResources()
                                .getString(R.string.invalid_number_text);
                        text = String.format(text, cmi.mName);
                        Toast.makeText(getInstance().mContext, text, Toast.LENGTH_LONG).show();
                        break;
                    case StatusCodes.StartCall.CALL_CONNECTED:
                        break;
                    case StatusCodes.StartCall.HANDOVER_CONNECTED:
                        break;
                    default:
                        Log.i(TAG, "Nothing to do for this Start VoIP Call resultcode = "
                                + resultCode);
                        break;
                }

            }

        });

        return svcrr;
    }

    /**
     * Start our Helper and kick off our first ModCore queries.
     * @param context
     */
    public static void init(DialerApplication context) {
        CallMethodHelper helper = getInstance();
        helper.mContext = context;
        helper.mClient = DialerApplication.ACLIENT.get(context);
        helper.mInCallApi = InCallServices.getInstance();
        helper.mMainHandler = new Handler(context.getMainLooper());
        refresh();
    }

    /**
     * *sip* ahhhh so refreshing
     */
    public static void refresh() {
        updateCallPlugins();
    }

    /**
     * Refresh just the possibly changing items
     *
     * This should only be called once dataHasBeenBroadcastPreviously is true.
     */
    public static void refreshDynamic() {
        for(ComponentName cn : mCallMethodInfos.keySet()) {
            getCreditInfo(cn, true);
            getCallMethodAuthenticated(cn, true);
        }
    }

    /**
     * This is helpful for items that don't want to subscribe to updates or for things that
     * need a quick CMI and have a component name.
     * @param cn Component name wanted.
     * @return specific call method when given a component name.
     */
    public static CallMethodInfo getCallMethod(ComponentName cn) {
        return mCallMethodInfos.get(cn);
    }

    /**
     * This is useful for items that subscribe after the initial broadcast has been sent out and
     * need to go get some data right away
     * @return the current HashMap of CMIs.
     */
    public static HashMap<ComponentName, CallMethodInfo> getAllCallMethods() {
        return mCallMethodInfos;
    }

    /**
     * A few items need a list of mime types in a comma delimited list. Since we are already
     * querying all the plugins. We can easily build this list ahead of time.
     *
     * Items that require this should subscribe and grab this updated list when needed.
     * @return string of all (not limited to enabled) mime types
     */
    public static String getAllMimeTypes() {
        String mimeTypes = "";

        List<String> mimeTypesList = new ArrayList<>();

        for (CallMethodInfo cmi : mCallMethodInfos.values()) {
            mimeTypesList.add(cmi.mMimeType);
        }

        if (!mimeTypesList.isEmpty()) {
            mimeTypes = Joiner.on(",").skipNulls().join(mimeTypesList);
        }
        return mimeTypes;
    }

    /**
     * A few items need a list of mime types in a comma delimited list. Since we are already
     * querying all the plugins. We can easily build this list ahead of time.
     *
     * Items that require this should subscribe and grab this updated list when needed.
     * @return string of enabled mime types
     */
    public static String getAllEnabledMimeTypes() {
        String mimeTypes = "";

        List<String> enabledMimeTypes = new ArrayList<>();

        for (CallMethodInfo cmi : mCallMethodInfos.values()) {
            if (cmi.mStatus == InCallPluginStatus.ENABLED) {
                enabledMimeTypes.add(cmi.mMimeType);
            }
        }

        if (!enabledMimeTypes.isEmpty()) {
            mimeTypes = Joiner.on(",").skipNulls().join(enabledMimeTypes);
        }
        return mimeTypes;
    }

    public static void updateCreditInfo(ComponentName name, GetCreditInfoResult gcir) {
        CallMethodInfo cmi = getCallMethodIfExists(name);
        if (cmi != null) {
            if (gcir == null || gcir.creditInfo == null) {
                // Build zero credit dummy if no result found.
                cmi.mProviderCreditInfo =
                        new CreditInfo(new CreditBalance(0, null), null);
            } else {
                cmi.mProviderCreditInfo = gcir.creditInfo;
            }

            // Since a CallMethodInfo object was updated here, we should let the subscribers know
            broadcast();
        }
    }

    /**
     * Broadcast to subscribers once we know we've gathered all our data. Do not do this until we
     * have everything we need for sure.
     *
     * This method is called after every callback from AmbientCore. We will keep track of all of
     * the callbacks, once we have accounted for all callbacks from all plugins, we can go ahead
     * and update subscribers.
     */
    private static void maybeBroadcastToSubscribers() {
        maybeBroadcastToSubscribers(false);
    }

    private static void maybeBroadcastToSubscribers(boolean broadcastDynamic) {
        int expectedCount;

        ++callbackCount;
        if (broadcastDynamic) {
            expectedCount = EXPECTED_DYNAMIC_RESULT_CALLBACKS;
        } else {
            expectedCount = EXPECTED_RESULT_CALLBACKS;
        }

        if (callbackCount == (expectedCount  * mInstalledPlugins.size()))  {
            // we are on the last item. broadcast updated hashmap
            broadcast();
        }
    }

    /**
     * In order to speed up the process we make calls for providers that may be invalid
     * To prevent this, make sure every resultcallback uses this before filling in the hashmap.
     * @param cn componentname
     * @return callmethodinfo if valid, otherwise null
     */
    public static CallMethodInfo getCallMethodIfExists(ComponentName cn) {
        if (mCallMethodInfos.containsKey(cn)) {
            return mCallMethodInfos.get(cn);
        } else {
            return null;
        }
    }

    /**
     * Prepare to query and fire off ModCore calls in all directions
     */
    private static void updateCallPlugins() {
        getInstance().mInCallApi.getInstalledPlugins(getInstance().mClient)
                .setResultCallback(new ResultCallback<InstalledPluginsResult>() {
            @Override
            public void onResult(InstalledPluginsResult installedPluginsResult) {
                // got installed components
                mInstalledPlugins = installedPluginsResult.components;

                mCallMethodInfos.clear();

                if (mInstalledPlugins.size() == 0) {
                    broadcast();
                }

                for (ComponentName cn : mInstalledPlugins) {
                    mCallMethodInfos.put(cn, new CallMethodInfo());
                    getCallMethodInfo(cn);
                    getCallMethodStatus(cn);
                    getCallMethodMimeType(cn);
                    getCallMethodAuthenticated(cn, false);
                    getSettingsIntent(cn);
                    getCreditInfo(cn, false);
                    getManageCreditsIntent(cn);
                    checkLowCreditConfig(cn);
                    // If you add any more callbacks, be sure to update EXPECTED_RESULT_CALLBACKS
                    // and EXPECTED_DYNAMIC_RESULT_CALLBACKS if the callback is dynamic
                    // with the proper count.
                }
            }
        });
    }

    /**
     * Get our basic CMI metadata
     * @param cn
     */
    private static void getCallMethodInfo(final ComponentName cn) {
        getInstance().mInCallApi.getProviderInfo(getInstance().mClient, cn)
                .setResultCallback(new ResultCallback<InCallProviderInfoResult>() {
            @Override
            public void onResult(InCallProviderInfoResult inCallProviderInfoResult) {

                InCallProviderInfo icpi = inCallProviderInfoResult.inCallProviderInfo;
                if (icpi == null) {
                    mCallMethodInfos.remove(cn);
                    return;
                }

                PackageManager packageManager =  getInstance().mContext.getPackageManager();

                Resources pluginResources = null;
                try {
                    pluginResources = packageManager.getResourcesForApplication(
                            cn.getPackageName());
                } catch (PackageManager.NameNotFoundException e) {
                    Log.e(TAG, "Plugin isn't installed: " + cn);
                    mCallMethodInfos.remove(cn);
                    return;
                }

                synchronized (mCallMethodInfos) {
                    CallMethodInfo cmi = getCallMethodIfExists(cn);

                    if (cmi == null) {
                        return;
                    }

                    try {
                        cmi.mBrandIcon = pluginResources.getDrawable(icpi.getBrandIcon(), null);
                        cmi.mBadgeIcon = pluginResources.getDrawable(icpi.getBadgeIcon(), null);
                        cmi.mLoginIcon = pluginResources.getDrawable(icpi.getLoginIcon(), null);
                        cmi.mActionOneIcon = pluginResources.getDrawable(icpi.getActionOneIcon(), null);
                        cmi.mActionTwoIcon = pluginResources.getDrawable(icpi.getActionTwoIcon(), null);
                    } catch (Resources.NotFoundException e) {
                        Log.e(TAG, "Resource Not found: " + cn);
                        mCallMethodInfos.remove(cn);
                        return;
                    }

                    cmi.mComponent = cn;
                    cmi.mName = icpi.getTitle();
                    cmi.mSummary = icpi.getSummary();
                    cmi.mSlotId = -1;
                    cmi.mSubId = -1;
                    cmi.mColor = NO_COLOR;
                    cmi.mSubscriptionButtonText = icpi.getSubscriptionButtonText();
                    cmi.mCreditButtonText = icpi.getCreditsButtonText();
                    cmi.mT9HintDescription = icpi.getT9HintDescription();
                    cmi.pluginResources = pluginResources;
                    cmi.mActionOneText = icpi.getActionOneTitle();
                    cmi.mActionTwoText = icpi.getActionTwoTitle();
                    cmi.mIsInCallProvider = true;

                    mCallMethodInfos.put(cn, cmi);
                    maybeBroadcastToSubscribers();
                }
            }
        });
    }

    /**
     * Get our plugin enabled status
     * @param cn
     */
    private static void getCallMethodStatus(final ComponentName cn) {
        getInstance().mInCallApi.getPluginStatus(getInstance().mClient, cn)
                .setResultCallback(new ResultCallback<PluginStatusResult>() {
            @Override
            public void onResult(PluginStatusResult pluginStatusResult) {
                synchronized (mCallMethodInfos) {
                    CallMethodInfo cmi = getCallMethodIfExists(cn);
                    if (cmi != null) {
                        cmi.mStatus = pluginStatusResult.status;
                        mCallMethodInfos.put(cn, cmi);
                        maybeBroadcastToSubscribers();
                    }
                }
            }
        });
    }

    /**
     * Send an event to the component
     * @param cn componentName to send the data to.
     */
    public static void shipAnalyticsToPlugin(final ComponentName cn, Event e) {
        if (cn == null) {
            return;
        }
        if (DEBUG) {
            Log.d(TAG, "componentName: " + cn.toShortString());
            Log.d(TAG, "Event: " + e.toString());
        }
        getInstance().mInCallApi.sendAnalyticsEventToPlugin(getInstance().mClient, cn, e)
                .setResultCallback(new ResultCallback<Result>() {
            @Override
            public void onResult(Result result) {
                if (DEBUG) {
                    Log.v(TAG, "Event sent with result: " + result.getStatus().getStatusMessage());
                }
            }
        });
    }

    /**
     * Get the call method mime type
     * @param cn
     */
    private static void getCallMethodMimeType(final ComponentName cn) {
        getInstance().mInCallApi.getCallableMimeType(getInstance().mClient, cn)
                .setResultCallback(new ResultCallback<MimeTypeResult>() {
            @Override
            public void onResult(MimeTypeResult mimeTypeResult) {
                synchronized (mCallMethodInfos) {
                    CallMethodInfo cmi = getCallMethodIfExists(cn);
                    if (cmi != null) {
                        cmi.mMimeType = mimeTypeResult.mimeType;
                        mCallMethodInfos.put(cn, cmi);
                        maybeBroadcastToSubscribers();
                    }
                }
            }
        });
    }

    /**
     * Get the Authentication state of the callmethod
     * @param cn
     */
    private static void getCallMethodAuthenticated(final ComponentName cn,
                                                   final boolean dynamicRefresh) {
        getInstance().mInCallApi.getAuthenticationState(getInstance().mClient, cn)
                .setResultCallback(new ResultCallback<AuthenticationStateResult>() {
            @Override
            public void onResult(AuthenticationStateResult result) {
                synchronized (mCallMethodInfos) {
                    CallMethodInfo cmi = getCallMethodIfExists(cn);
                    if (cmi != null) {
                        cmi.mIsAuthenticated = result.result == StatusCodes.AuthenticationState
                                .LOGGED_IN;
                        mCallMethodInfos.put(cn, cmi);
                        maybeBroadcastToSubscribers(dynamicRefresh);
                    }
                }
            }
        });
    }

    /**
     * Get the settings intent for the callmethod
     * @param cn
     */
    private static void getSettingsIntent(final ComponentName cn) {
        getInstance().mInCallApi.getSettingsIntent(getInstance().mClient, cn)
                .setResultCallback(new ResultCallback<PendingIntentResult>() {
                    @Override
                    public void onResult(PendingIntentResult pendingIntentResult) {
                        synchronized (mCallMethodInfos) {
                            CallMethodInfo cmi = getCallMethodIfExists(cn);
                            if (cmi != null) {
                                cmi.mSettingsIntent = pendingIntentResult.intent;
                                mCallMethodInfos.put(cn, cmi);
                                maybeBroadcastToSubscribers();
                            }
                        }
                    }
                });
    }

    private static void getCreditInfo(final ComponentName cn,
                                      final boolean dynamicRefresh) {
        // Let's attach a listener so that we can continue to listen to any credit changes
        if (mCallCreditListeners.get(cn) == null) {
           /* CallCreditListenerImpl listener = CallCreditListenerImpl.getInstance(cn);
            getInstance().mInCallApi.addCreditListener(getInstance().mClient, cn, listener);
            mCallCreditListeners.put(cn, listener); */
        }
        getInstance().mInCallApi.getCreditInfo(getInstance().mClient, cn)
                .setResultCallback(new ResultCallback<GetCreditInfoResultResult>() {
                    @Override
                    public void onResult(GetCreditInfoResultResult getCreditInfoResultResult) {
                        CallMethodInfo cmi = getCallMethodIfExists(cn);
                        if (cmi != null) {
                            GetCreditInfoResult gcir = getCreditInfoResultResult.result;
                            if (gcir == null || gcir.creditInfo == null) {
                                // Build zero credit dummy if no result found.
                                cmi.mProviderCreditInfo =
                                        new CreditInfo(new CreditBalance(0, null), null);
                            } else {
                                cmi.mProviderCreditInfo = gcir.creditInfo;
                            }
                            mCallMethodInfos.put(cn, cmi);
                            maybeBroadcastToSubscribers(dynamicRefresh);
                        }
                    }
                });
    }

    private static void getManageCreditsIntent(final ComponentName cn) {
        getInstance().mInCallApi.getManageCreditsIntent(getInstance().mClient, cn)
                .setResultCallback(new ResultCallback<PendingIntentResult>() {
                    @Override
                    public void onResult(PendingIntentResult pendingIntentResult) {
                        CallMethodInfo cmi = getCallMethodIfExists(cn);
                        if (cmi != null) {
                            cmi.mManageCreditIntent = pendingIntentResult.intent;
                            mCallMethodInfos.put(cn, cmi);
                            maybeBroadcastToSubscribers();
                        }
                    }
                });
    }

    private static void checkLowCreditConfig(final ComponentName cn) {
        // find a nudge component if it exists for this package
        Intent nudgeIntent = new Intent("cyanogen.service.NUDGE_PROVIDER");
        nudgeIntent.setPackage(cn.getPackageName());
        List<ResolveInfo> resolved = getInstance().mContext.getPackageManager()
                .queryIntentServices(nudgeIntent, 0);
        if (resolved != null && !resolved.isEmpty()) {
            ResolveInfo result = resolved.get(0);
            ComponentName nudgeComponent = new ComponentName(result.serviceInfo.applicationInfo
                    .packageName, result.serviceInfo.name);
            collectLowCreditConfig(cn, nudgeComponent);
            return;
        }

        // if a nudge component doesn't exist, just finish here
        maybeBroadcastToSubscribers();
    }

    private static void collectLowCreditConfig(final ComponentName pluginComponent, final
                                               ComponentName nudgeComponent) {
        NudgeServices.NudgeApi.getConfigurationForKey(getInstance().mClient, nudgeComponent,
                NudgeKey.INCALL_CREDIT_NUDGE).setResultCallback(new ResultCallback<BundleResult>() {
            @Override
            public void onResult(BundleResult bundleResult) {
                CallMethodInfo cmi = getCallMethodIfExists(pluginComponent);
                if (cmi != null) {
                    if (bundleResult != null && bundleResult.bundle != null &&
                            bundleResult.bundle.containsKey(NudgeKey
                                    .INCALL_PARAM_CREDIT_WARN)) {
                        cmi.mCreditWarn = bundleResult.bundle.getFloat(NudgeKey
                                .INCALL_PARAM_CREDIT_WARN);
                        mCallMethodInfos.put(pluginComponent, cmi);
                    }
                    maybeBroadcastToSubscribers();
                }
            }
        });
    }
}