summaryrefslogtreecommitdiffstats
path: root/emailcommon/src/com/android/emailcommon/service/AccountServiceProxy.java
blob: 0bf0d146ae6e4885b6a10ea9ca9bb11eba50063d (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
/*
 * Copyright (C) 2011 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 com.android.emailcommon.service;

import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;

import java.util.List;

public class AccountServiceProxy extends ServiceProxy implements IAccountService {

    public static final String ACCOUNT_INTENT = "com.android.email.ACCOUNT_INTENT";
    public static final int DEFAULT_ACCOUNT_COLOR = 0xFF0000FF;

    private IAccountService mService = null;
    private Object mReturn;

    public AccountServiceProxy(Context _context) {
        super(_context, new Intent(ACCOUNT_INTENT));
    }

    @Override
    public void onConnected(IBinder binder) {
        mService = IAccountService.Stub.asInterface(binder);
    }

    public IBinder asBinder() {
        return null;
    }

    @Override
    public void notifyLoginFailed(final long accountId) {
        setTask(new ProxyTask() {
            public void run() throws RemoteException {
                mService.notifyLoginFailed(accountId);
            }
        }, "notifyLoginFailed");
    }

    @Override
    public void notifyLoginSucceeded(final long accountId) {
        setTask(new ProxyTask() {
            public void run() throws RemoteException {
                mService.notifyLoginSucceeded(accountId);
            }
        }, "notifyLoginSucceeded");
    }

    @Override
    @SuppressWarnings("unchecked")
    public void notifyNewMessages(final long accountId, final List messageIdList) {
        setTask(new ProxyTask() {
            public void run() throws RemoteException {
                mService.notifyNewMessages(accountId, messageIdList);
            }
        }, "notifyNewMessages");
    }

    @Override
    public void accountDeleted() {
        setTask(new ProxyTask() {
            public void run() throws RemoteException {
                mService.accountDeleted();
            }
        }, "accountDeleted");
    }

    // The following call is synchronous, and should not be made from the UI thread
    @Override
    public void restoreAccountsIfNeeded() {
        setTask(new ProxyTask() {
            public void run() throws RemoteException {
                mService.restoreAccountsIfNeeded();
            }
        }, "restoreAccountsIfNeeded");
        waitForCompletion();
    }

    // The following call is synchronous, and should not be made from the UI thread
    @Override
    public int getAccountColor(final long accountId) {
        setTask(new ProxyTask() {
            public void run() throws RemoteException{
                mReturn = mService.getAccountColor(accountId);
            }
        }, "getAccountColor");
        waitForCompletion();
        if (mReturn == null) {
            return DEFAULT_ACCOUNT_COLOR;
        } else {
            return (Integer)mReturn;
        }
    }

    // The following call is synchronous, and should not be made from the UI thread
    public Bundle getConfigurationData(final String accountType) {
        setTask(new ProxyTask() {
            public void run() throws RemoteException{
                mReturn = mService.getConfigurationData(accountType);
            }
        }, "getConfigurationData");
        waitForCompletion();
        if (mReturn == null) {
            return null;
        } else {
            return (Bundle)mReturn;
        }
    }

    // The following call is synchronous, and should not be made from the UI thread
    public String getDeviceId() {
        setTask(new ProxyTask() {
            public void run() throws RemoteException{
                mReturn = mService.getDeviceId();
            }
        }, "getDeviceId");
        waitForCompletion();
        if (mReturn == null) {
            return null;
        } else {
            return (String)mReturn;
        }
    }
}