summaryrefslogtreecommitdiff
path: root/src/plugins/android.codeutils/src/com/motorola/studio/android/model/Launcher.java
blob: 98d5bff659b1d8881fa3680a5d83b1e10b86e879 (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
/*
 * 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.model;

import java.util.HashSet;
import java.util.Set;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.wizard.IWizardContainer;

import com.motorola.studio.android.codeutils.CodeUtilsActivator;
import com.motorola.studio.android.common.exception.AndroidException;
import com.motorola.studio.android.common.log.StudioLogger;
import com.motorola.studio.android.common.log.UsageDataConstants;

/**
 * Launcher Controller Model. As part of a MVC architecture, this class should
 * communicate with the Wizard UI to provide all needed information to create a
 * functional Launcher Building Block (Activity, Service or Broadcast Receiver).
 */
public abstract class Launcher extends BuildingBlockModel
{
    private final Set<String> intentFilterCategories = new HashSet<String>();

    private final Set<String> intentFilterActions = new HashSet<String>();

    private final Set<String> intentFilterPermissions = new HashSet<String>();

    /**
     * Constructor for the Launcher.
     * 
     * @param superClass
     *            The super class for this Launcher
     */
    public Launcher(String superClass)
    {
        super(superClass);
    }

    /**
     * Creates a Launcher with a Default Intent Filter
     * 
     * @param superClass
     *            the launcher superclass
     * @param category
     *            the intent filter category
     * @param action
     *            the intent filter action
     */
    public Launcher(String superClass, String category, String action)
    {
        super(superClass);
        intentFilterCategories.add(category);
        intentFilterActions.add(action);
    }

    /**
     * Adds an Intent Filter Action to this Launcher.
     * 
     * @param action
     */
    public void addIntentFilterAction(String action)
    {
        this.intentFilterActions.add(action);
    }

    /**
     * Adds an intent filter category to this launcher.
     * 
     * @param category
     */
    public void addIntentFilterCategories(String category)
    {
        intentFilterCategories.add(category);
    }

    /**
     * Adds an intent filter category to this launcher.
     * 
     * @param category
     */
    @Override
    public void addIntentFilterPermissions(String permission)
    {
        intentFilterPermissions.add(permission);
    }

    /**
     * Return all intent filter actions as Array.
     * 
     * @return
     */
    public String[] getIntentFilterActionsAsArray()
    {
        return intentFilterActions.toArray(new String[intentFilterActions.size()]);
    }

    /**
     * Returns all intent filter actions.
     * 
     * @return
     */
    public Set<String> getIntentFilterActions()
    {
        return intentFilterActions;
    }

    /**
     * Returns all intent filter categories.
     * 
     * @return
     */
    public Set<String> getIntentFilterCategories()
    {
        return intentFilterCategories;
    }

    /**
     * Returns all intent filter categories.
     * 
     * @return
     */
    @Override
    public Set<String> getIntentFilterPermissions()
    {
        return intentFilterPermissions;
    }

    /**
     * Return all Filter Categories as an Array.
     * 
     * @return
     */
    public String[] getIntentFilterCategoriesAsArray()
    {
        return intentFilterCategories.toArray(new String[intentFilterCategories.size()]);
    }

    /**
     * Return all Filter Permissions as an Array.
     * 
     * @return
     */
    @Override
    public String[] getIntentFilterPermissionsAsArray()
    {
        return intentFilterPermissions.toArray(new String[intentFilterPermissions.size()]);
    }

    /**
     * Remove the Intent filter action.
     * 
     * @param action
     */
    public void removeIntentFilterAction(String action)
    {
        intentFilterActions.remove(action);
    }

    /**
     * Remove intent filter category.
     * 
     * @param category
     */
    public void removeIntentFilterCategories(String category)
    {
        intentFilterCategories.remove(category);
    }

    /**
     * Remove intent filter category.
     * 
     * @param category
     */
    @Override
    public void removeIntentFilterPermissions(String permission)
    {
        intentFilterPermissions.remove(permission);
    }

    /**
     * Remove all Intent Filters action.
     */
    public void removeAllIntentFilterActions()
    {
        intentFilterActions.clear();
    }

    /**
     * Remove all intent filters categories.
     */
    public void removeAllIntentFilterCategories()
    {
        intentFilterCategories.clear();
    }

    /**
     * Logs to UDC all permissions used
     */
    public boolean save(IWizardContainer container, IProgressMonitor monitor)
            throws AndroidException
    {

        StringBuffer permissionList = new StringBuffer("Added building block permissions: ");
        int selectedPermissionsSize = getIntentFilterPermissionsAsArray().length;

        for (int i = 0; i < selectedPermissionsSize; i++)
        {

            String permission = getIntentFilterPermissionsAsArray()[i];
            permissionList.append(permission);

            if (i < (selectedPermissionsSize - 1))
            {
                permissionList.append(", ");
            }
        }

        if (selectedPermissionsSize > 0)
        {

            // Logs to UDC the permissions selected
            StudioLogger.collectUsageData(
                    UsageDataConstants.WHAT_BUILDINGBLOCK_PERMISSION, //$NON-NLS-1$
                    UsageDataConstants.KIND_BUILDINGBLOCK_PERMISSION,
                    "permissions: " + permissionList.toString(), //$NON-NLS-1$
                    CodeUtilsActivator.PLUGIN_ID, CodeUtilsActivator.getDefault().getBundle()
                            .getVersion().toString());
        }
        return true;
    }

}