summaryrefslogtreecommitdiff
path: root/src/plugins/emulator/src/com/motorola/studio/android/emulator/device/definition/AndroidEmuDefMgr.java
blob: a1eeada24757958f2634a62fb2a02b8da559a32c (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
/*
* Copyright (C) 2012 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.motorola.studio.android.emulator.device.definition;

import static com.motorola.studio.android.common.log.StudioLogger.error;

import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.Map;

import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExtension;
import org.eclipse.sequoyah.device.common.utilities.PluginUtils;

import com.motorola.studio.android.common.utilities.EclipseUtils;
import com.motorola.studio.android.emulator.core.model.IAndroidEmulatorInstance;
import com.motorola.studio.android.emulator.core.model.IInputLogic;
import com.motorola.studio.android.emulator.logic.AbstractStartAndroidEmulatorLogic;

/**
 * Contains methods for managing Android emulator definitions
 * 
 */
public class AndroidEmuDefMgr implements IAndroidEmuDefConstants
{
    // emulator definitions
    private static final Map<String, AndroidEmuDefBean> emuDefs =
            new LinkedHashMap<String, AndroidEmuDefBean>();

    private final static AndroidEmuDefMgr instance = new AndroidEmuDefMgr();

    /**
     * Initialize class
     */
    private AndroidEmuDefMgr()
    {
        readExtensions();
    }

    /**
     * Return class instance
     * 
     * @return AndroidEmuDefMgr instance
     */
    public static AndroidEmuDefMgr getInstance()
    {
        return instance;
    }

    /**
     * Read extension points to add emulator definitions
     */
    private static void readExtensions()
    {
        IExtension[] emuDefExtensions =
                EclipseUtils.getInstalledPlugins(EMULATOR_DEFINITION_EXTENSION_POINT);

        for (IExtension emuDefExtension : emuDefExtensions)
        {
            String id = emuDefExtension.getUniqueIdentifier();

            // elements
            IConfigurationElement[] elements = emuDefExtension.getConfigurationElements();

            AndroidEmuDefBean bean = null;

            boolean extensionOk = true;
            for (IConfigurationElement element : elements)
            {
                if (element.getName().equals(ELEMENT_SKIN))
                {
                    String skinId = element.getAttribute(ATT_SKIN_ID);
                    String skinSize = element.getAttribute(ATT_SKIN_SIZE);

                    if (!skinId.equals("") && !skinSize.equals(""))
                    {
                        bean = new AndroidEmuDefBean(emuDefExtension.getLabel(), skinId, skinSize);
                    }
                    else
                    {
                        extensionOk = false;
                    }
                }
            }

            if (extensionOk)
            {
                emuDefs.put(id, bean);
            }
        }
    }

    /**
     * Get all emulator IDs
     * 
     * @return all emulator IDs
     */
    public Collection<String> getAllIds()
    {
        return emuDefs.keySet();
    }

    /**
     * Retrieves the default emulator definition id, which should be initially set 
     * to the emulator devices being created  
     * 
     * @return The default emulator definition id
     */
    public String getDefaultId()
    {
        String defaultId = "";

        Collection<String> ids = getAllIds();

        /* 
         * NOTE: This is not considering more than one type of device
         */
        if (!ids.isEmpty())
        {
            Object[] idsArray = ids.toArray();
            defaultId = idsArray[0].toString();
        }

        return defaultId;
    }

    /**
     * Get all emulator names
     * 
     * @return all emulator names
     */
    public String[] getAllNames()
    {
        String[] allNames = new String[emuDefs.size()];

        int i = 0;
        for (AndroidEmuDefBean bean : emuDefs.values())
        {
            allNames[i++] = bean.getName();
        }

        return allNames;
    }

    /**
     * Get emulator name given its ID
     * 
     * @param emuDefId  emulator ID
     * @return emulator name
     */
    public String getName(String emuDefId)
    {
        String name = emuDefId;
        AndroidEmuDefBean bean = emuDefs.get(emuDefId);

        if (bean != null)
        {
            name = bean.getName();
        }

        return name;
    }

    /**
     * Get emulator skin ID given its ID
     * 
     * @param emuDefId emulator ID
     * @return emulator skin ID
     */
    public String getSkinId(String emuDefId)
    {
        String skinId = "";
        AndroidEmuDefBean bean = emuDefs.get(emuDefId);

        if (bean != null)
        {
            skinId = bean.getSkinId();
        }

        return skinId;
    }

    /**
     * Get startup emulator command arguments
     * 
     * @param emuDefId emulator ID
     * @return emulator command line arguments
     */
    public String getCommandLineArgumentsForEmuDefinition(String emuDefId)
    {
        String arguments = "";
        AndroidEmuDefBean bean = emuDefs.get(emuDefId);

        if (bean != null)
        {
            arguments = bean.getCommandLineArguments();
        }

        return arguments;
    }

    /**
     * Retrieve the input logic of the given emulator definition
     * @param emuDefId id of the extension that declare emulator definitions.
     * @return the IAndroidLogic associated to the given emulator definitions
     */
    public IInputLogic getInputLogic(String emuDefId, IAndroidEmulatorInstance instance)
    {

        IInputLogic inputLogic = null;

        try
        {
            inputLogic = (IInputLogic) PluginUtils.getExecutable(emuDefId, "inputLogic");
            inputLogic.init(instance);
        }
        catch (Exception e)
        {
            error("Could not retrieve the input logic from definition " + emuDefId);
        }

        return inputLogic;
    }

    /**
     * Get the start logic for the given emulator definition
     * @param emuDefId id of the extension that declare emulator definitions.
     * @return the IAndroidLogic associated to the given emulator definitions
     */
    public AbstractStartAndroidEmulatorLogic getStartLogic(String emuDefId)
    {

        AbstractStartAndroidEmulatorLogic startLogic = null;
        AndroidEmuDefBean bean = emuDefs.get(emuDefId);

        try
        {
            if (bean.getStartLogic() == null)
            {
                bean.setStartLogic((AbstractStartAndroidEmulatorLogic) PluginUtils.getExecutable(
                        emuDefId, "startLogic"));
            }
            startLogic = bean.getStartLogic();
        }
        catch (Exception e)
        {
            error("Could not retrieve the Start logic for " + emuDefId);
        }

        return startLogic;
    }
}