summaryrefslogtreecommitdiff
path: root/src/plugins/logger.collector/src/com/motorola/studio/android/logger/collector/util/WidgetsUtil.java
blob: caa7f54ccd7b4c6822d6cb75e490d99a594ba0ca (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
/*
 * 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.logger.collector.util;

import java.io.File;
import java.util.ArrayList;
import java.util.List;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.preference.FileFieldEditor;
import org.eclipse.jface.preference.PreferenceDialog;
import org.eclipse.jface.preference.PreferenceManager;
import org.eclipse.jface.preference.StringFieldEditor;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Monitor;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableItem;
import org.eclipse.swt.widgets.Text;
import org.eclipse.swt.widgets.Tree;
import org.eclipse.swt.widgets.TreeItem;
import org.eclipse.ui.PlatformUI;

/**
 * Class with useful methods for widgets.
 */
public class WidgetsUtil
{

    /**
     * This method test if a given String is null or empty.
     * 
     * @param s The String
     * @return <code>true</code> if the String is null or empty,
     *         <code>false</code> otherwise.
     */
    private static boolean isNullOrEmpty(String s)
    {
        return ((s != null) && s.trim().equals("")); //$NON-NLS-1$
    }

    /**
     * The method verify if the file exist.
     * 
     * @param fileName The full path for file.
     * @return <code>true</code> if the file exist, <code>false</code>
     *         otherwise.
     */
    public static boolean fileExist(String fileName)
    {
        return !isNullOrEmpty(fileName) && new File(fileName).exists();
    }

    /**
     * This method test if some StringFieldEditor value of the given collection
     * is null or empty.
     * 
     * @param editors
     * @return <code>true</code> if some StringFieldEditor value is null or
     *         empty, <code>false</code> otherwise.
     */
    public static boolean isNullOrEmpty(StringFieldEditor... editors)
    {
        for (StringFieldEditor editor : editors)
        {
            if (isNullOrEmpty(editor))
            {
                return false;
            }
        }
        return true;
    }

    /**
     * This method test if a StringFieldEditor value is null or empty.
     * 
     * @param editor The StringFieldEditor
     * @return <code>true</code> if the StringFieldEditor value is null or
     *         empty, <code>false</code> otherwise.
     */
    public static boolean isNullOrEmpty(StringFieldEditor editor)
    {
        return ((editor != null) && isNullOrEmpty(editor.getStringValue()));
    }

    /**
     * This method test if a StringFieldEditor value contains a invalid
     * character.
     * 
     * @param editor The StringFieldEditor
     * @return <code>true</code> if the StringFieldEditor value contains invalid
     *         character, <code>false</code> otherwise.
     */
    public static boolean checkExistInvalidCharacter(StringFieldEditor editor, String invalidChars)
    {
        for (int i = 0; i < invalidChars.length(); i++)
        {
            String invalidChar = invalidChars.substring(i, i + 1);
            if (editor.getStringValue().contains(invalidChar))
            {
                return true;
            }
        }
        return false;
    }

    /**
     * This method test if a Text value is null or empty.
     * 
     * @param text The Text
     * @return <code>true</code> if the Text value is null or empty,
     *         <code>false</code> otherwise.
     */
    public static boolean isNullOrEmpty(Text text)
    {
        return ((text != null) && isNullOrEmpty(text.getText()));
    }

    /**
     * This method test if a FileFieldEditor value is null or empty.
     * 
     * @param editor The FileFieldEditor
     * @return <code>true</code> if the FileFieldEditor value is null or empty,
     *         <code>false</code> otherwise.
     */
    public static boolean isEmpty(FileFieldEditor editor)
    {
        return isNullOrEmpty(editor.getStringValue());
    }

    /**
     * This method test if a Combo value is null or empty.
     * 
     * @param combo The Combo
     * @return <code>true</code> if the Combo value is null or not selected,
     *         <code>false</code> otherwise.
     */
    public static boolean isNullOrDeselected(Combo combo)
    {
        return ((combo != null) && (combo.getSelectionIndex() == -1));
    }

    /**
     * Returns the size of file.
     * 
     * @param fileName The file name.
     * @return The size of file.
     */
    public static long fileSize(String fileName)
    {
        return new File(fileName).length();
    }

    /**
     * This method test if a Table has one or more lines.
     * 
     * @param table The table
     * @return <code>true</code> if the Table has one or more lines,
     *         <code>false</code> otherwise.
     */
    public static boolean isNullOrEmpty(Table table)
    {
        return table.getItemCount() > 0;
    }

    /**
     * Executes a wizard.
     * 
     * @param wizard The wizard.
     * @return <code>true</code> if the Wizard dialog has constant OK,
     *         <code>false</code> otherwise .
     */
    public static boolean runWizard(IWizard wizard)
    {
        Shell activeShell = Display.getCurrent().getActiveShell();
        WizardDialog dialog = new WizardDialog(activeShell, wizard);

        try
        {
            dialog.create();
        }
        catch (Throwable e)
        {
            e.printStackTrace();
        }
        centerDialog(dialog);
        return dialog.open() == WizardDialog.OK;
    }

    /**
     * Opens the Eclipse preferences dialog and selects the page of the given
     * id.
     * 
     * @param shell The shell.
     * @param selectedNode The preferences page to selec.
     * @return <code>true</code> if the Wizard dialog has constant OK,
     *         <code>false</code> otherwise .
     */
    public static boolean runPreferencePage(Shell shell, String selectedNode)
    {
        PreferenceManager manager = PlatformUI.getWorkbench().getPreferenceManager();
        PreferenceDialog dialog = new PreferenceDialog(shell, manager);
        dialog.setSelectedNode(selectedNode);
        WidgetsUtil.centerDialog(shell);
        return dialog.open() == PreferenceDialog.OK;
    }

    /**
     * Center the dialog.
     * 
     * @param shell The shell.
     */
    public static void centerDialog(Shell shell)
    {
        Monitor primary = shell.getDisplay().getPrimaryMonitor();
        Rectangle bounds = primary.getBounds();
        Rectangle rect = shell.getBounds();
        int x = bounds.x + (bounds.width - rect.width) / 2;
        int y = bounds.y + (bounds.height - rect.height) / 2;
        shell.setLocation(x, y);
    }

    /**
     * Center the dialog.
     * 
     * @param dialog The dialog.
     */
    public static void centerDialog(Dialog dialog)
    {
        centerDialog(dialog.getShell());
    }

    /**
     * Check the leaf items of the given tree.
     * 
     * @param tree The tree.
     * @return A collection containing the leaf tree items.
     */
    public static List<TreeItem> getCheckedLeafItems(Tree tree)
    {
        List<TreeItem> toReturn = new ArrayList<TreeItem>();
        selectCheckedLeafItems(tree.getItems(), toReturn);
        return toReturn;
    }

    /**
     * Returns a list of the leaf nodes that are checked.
     * 
     * @param items The parent items.
     * @param list A list of the leaf nodes that are checked.
     */
    private static void selectCheckedLeafItems(TreeItem[] items, List<TreeItem> list)
    {
        int len = items.length;
        for (int i = 0; i < len; i++)
        {
            if (items[i].getItemCount() > 0)
            {
                selectCheckedLeafItems(items[i].getItems(), list);
            }
            else if (items[i].getChecked())
            {
                list.add(items[i]);
            }
        }
    }

    /**
     * Expand all the given tree items.
     * 
     * @param items The tree items.
     */
    public static void expandAll(TreeItem[] items)
    {
        for (int i = 0; i < items.length; i++)
        {
            if (items[i].getItems().length > 0)
            {
                items[i].setExpanded(true);
                expandAll(items[i].getItems());
            }
        }
    }

    /**
     * Returns the full path of a given tree item.
     * 
     * @param item The tree item.
     * @return The full path of a given tree item.
     */
    public static String getFullPathTreeItem(TreeItem item)
    {
        String toReturn = item.getText();
        if (item != null)
        {
            if (item.getParentItem() != null)
            {
                toReturn = getFullPathTreeItem(item.getParentItem()) + "." + toReturn; //$NON-NLS-1$
            }
        }
        return toReturn;
    }

    /**
     * This method verifies if a given file can be read.
     * 
     * @param fileName the full file path.
     * @return <code>true</code> if read permission is granted,
     *         <code>false</code> otherwise.
     */
    public static boolean canRead(String fileName)
    {
        return !isNullOrEmpty(fileName) && new File(fileName).canRead();
    }

    /**
     * This method verifies if a given file has the read and write permissions
     * granted.
     * 
     * @param fileName The file
     * @return <code>true</code> if permissions are granted, <code>false</code>
     *         otherwise.
     */
    public static boolean canReadWrite(String fileName)
    {
        File file = new File(fileName);
        return file.canRead() && file.canWrite();
    }

    /**
     * This method simulates a refresh in a Composite object.
     * 
     * @param composite A composite object.
     */
    public static void refreshComposite(Composite composite)
    {
        for (Composite parent = composite.getParent(); parent != null; parent = parent.getParent())
        {
            parent.layout();
        }
    }

    /**
     * Check the leaf items of the given table.
     * 
     * @param table The table.
     * @return A collection containing the leaf table items.
     */
    public static List<TableItem> getCheckedLeafItems(Table table)
    {
        List<TableItem> toReturn = new ArrayList<TableItem>();
        selectCheckedLeafItems(table.getItems(), toReturn);
        return toReturn;
    }

    /**
     * Returns a list of the leaf nodes that are checked.
     * 
     * @param items The parent items.
     * @param list A list of the leaf nodes that are checked.
     */
    private static void selectCheckedLeafItems(TableItem[] items, List<TableItem> list)
    {
        int len = items.length;
        for (int i = 0; i < len; i++)
        {
            if (items[i].getChecked())
            {
                list.add(items[i]);
            }
        }
    }
}