summaryrefslogtreecommitdiff
path: root/src/plugins/android/src/com/motorola/studio/android/model/ProjectCreationSupport.java
blob: 8551e17aaec9cc9ea3cb7122bad3e48978f8b203 (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
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
/*
 * 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.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IResourceStatus;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.SubProgressMonitor;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.wizard.IWizardContainer;
import org.eclipse.osgi.util.NLS;
import org.eclipse.ui.actions.WorkspaceModifyOperation;

import com.android.ide.eclipse.adt.AdtPlugin;
import com.motorola.studio.android.AndroidPlugin;
import com.motorola.studio.android.adt.ProjectUtils;
import com.motorola.studio.android.adt.SdkUtils;
import com.motorola.studio.android.common.IAndroidConstants;
import com.motorola.studio.android.common.exception.AndroidException;
import com.motorola.studio.android.common.log.StudioLogger;
import com.motorola.studio.android.common.utilities.AndroidStatus;
import com.motorola.studio.android.common.utilities.EclipseUtils;
import com.motorola.studio.android.common.utilities.FileUtil;
import com.motorola.studio.android.i18n.AndroidNLS;
import com.motorola.studio.android.model.AndroidProject.SourceTypes;

/**
 * Project Creation Support. 
 */
public class ProjectCreationSupport
{
    /**
     * Only static calls
     */
    private ProjectCreationSupport()
    {
    }

    private static final String PACKAGE_NAME = "PACKAGE"; //$NON-NLS-1$

    private static final String APP_NAME = "app_name"; //$NON-NLS-1$

    private static final String APPLICATION_NAME = "APPLICATION_NAME"; //$NON-NLS-1$

    private static final String STRING_RSRC_PREFIX = "@string/"; //$NON-NLS-1$

    private static final String MIN_SDK_VERSION = "MIN_SDK_VERSION"; //$NON-NLS-1$

    private static final String BIN_DIR = IAndroidConstants.FD_OUTPUT + IPath.SEPARATOR;

    private static final String RES_DIR = IAndroidConstants.FD_RESOURCES + IPath.SEPARATOR;

    private static final String ASSETS_DIR = IAndroidConstants.FD_ASSETS + IPath.SEPARATOR;

    private static final String DRAWABLE_DIR = IAndroidConstants.FD_DRAWABLE;

    private static final String LAYOUT_DIR = IAndroidConstants.FD_LAYOUT + IPath.SEPARATOR;

    private static final String VALUES_DIR = IAndroidConstants.FD_VALUES + IPath.SEPARATOR;

    private static final String GEN_DIR = IAndroidConstants.FD_GEN_SOURCES + IPath.SEPARATOR;

    private static final String XML_DIR = "xml" + IPath.SEPARATOR;

    private static final String TEMPLATES_DIRECTORY = "templates/"; //$NON-NLS-1$

    private static final String MANIFEST_TEMPLATE = TEMPLATES_DIRECTORY
            + "AndroidManifest.template"; //$NON-NLS-1$

    private static final String ACTIVITY_NAME = "ACTIVITY_NAME"; //$NON-NLS-1$

    private static final String ACTIVITY_TEMPLATE = TEMPLATES_DIRECTORY + "activity.template"; //$NON-NLS-1$

    private static final String LAUNCHER_INTENT_TEMPLATE = TEMPLATES_DIRECTORY
            + "launcher_intent_filter.template"; //$NON-NLS-1$

    private static final String INTENT_FILTERS = "INTENT_FILTERS"; //$NON-NLS-1$

    private static final String ACTIVITIES = "ACTIVITIES"; //$NON-NLS-1$

    private static final String USES_SDK_TEMPLATE = TEMPLATES_DIRECTORY + "uses-sdk.template"; //$NON-NLS-1$

    private static final String USES_SDK = "USES-SDK"; //$NON-NLS-1$

    private static final String ICON = "ic_launcher.png"; //$NON-NLS-1$

    private static final String JAVA_ACTIVITY_TEMPLATE = "java_file.template"; //$NON-NLS-1$

    private static final String MAIN_LAYOUT_XML = "main.xml"; //$NON-NLS-1$

    private static final String LAYOUT_TEMPLATE = "layout.template"; //$NON-NLS-1$

    private static final String STRING_HELLO_WORLD = "hello"; //$NON-NLS-1$    

    private static final String TEST_USES_LIBRARY = "TEST-USES-LIBRARY"; //$NON-NLS-1$

    private static final String TEST_INSTRUMENTATION = "TEST-INSTRUMENTATION"; //$NON-NLS-1$

    private static final String[] DPIS =
    {
            "hdpi", "ldpi", "mdpi"
    };

    /*
     * Widget Project manifest creation constants
     */

    private static final String WIDGET_TEMPLATE_FOLDER = "templates/widget_project/";

    private static final String WIDGET_MANIFEST_TEMPLATE_PATH =
            "templates/widget_project/AndroidWidgetManifest.template"; //$NON-NLS-1$

    private static final String WIDGET_ACTIVITY_TEMPLATE_PATH =
            "templates/widget_project/activity.template"; //$NON-NLS-1$

    private static final String WIDGET_RECEIVER_TEMPLATE_PATH =
            "templates/widget_project/receiver.template"; //$NON-NLS-1$

    private static final String WIDGET_USES_SDK_TEMPLATE_PATH =
            "templates/widget_project/uses-sdk.template"; //$NON-NLS-1$

    private static final String RECEIVERS = "RECEIVERS"; //$NON-NLS-1$

    private static final String WIDGET_INITIAL_LAYOUT_XML = "widget_initial_layout.xml"; //$NON-NLS-1$

    private static final String WIDGET_INFO_XML = "widget_info.xml"; //$NON-NLS-1$

    private static final String WIDGET_PROVIDER_SAMPLE_NAME = "WidgetProvider"; //$NON-NLS-1$

    private static final String WIDGET_PROVIDER_SAMPLE_TEMPLATE = "WidgetProvider.template"; //$NON-NLS-1$

    private static final String IMPORT_RESOURCE_CLASS = "IMPORT_RESOURCE_CLASS";

    /**
     * Create a new Android Project
     * @param androidProject
     * @param container
     * @return
     * @throws AndroidException
     */
    public static boolean createProject(final AndroidProject androidProject,
            IWizardContainer container) throws AndroidException
    {
        boolean created = true;

        IWorkspace workspace = ResourcesPlugin.getWorkspace();
        final IProject project = workspace.getRoot().getProject(androidProject.getName());

        if (!canCreateProject(workspace.getRoot(), androidProject.getName()))
        {
            throw new AndroidException(
                    AndroidNLS.EXC_ProjectCreationSupport_CannotCreateProjectReadOnlyWorkspace);
        }
        else
        {

            final IProjectDescription description =
                    workspace.newProjectDescription(project.getName());

            final Map<String, Object> parameters = new HashMap<String, Object>();
            parameters.put(MIN_SDK_VERSION, androidProject.getMinSdkVersion());

            if ((androidProject.getSourceType() == SourceTypes.NEW)
                    || (androidProject.getSourceType() == SourceTypes.WIDGET))
            {
                /*
                 * An activity name can be of the form ".package.Class" or ".Class".
                 * The initial dot is ignored, as it is always added later in the templates.
                 */
                String activityName = androidProject.getActivityName();
                if (activityName.startsWith(".")) { //$NON-NLS-1$
                    activityName = activityName.substring(1);
                }
                parameters.put(ACTIVITY_NAME, androidProject.getActivityName());
                parameters.put(PACKAGE_NAME, androidProject.getPackageName());
                parameters.put(APPLICATION_NAME, STRING_RSRC_PREFIX + APP_NAME);
                parameters.put(IMPORT_RESOURCE_CLASS, "");
            }

            /*
             * create a dictionary of string that will contain name+content.
             * we'll put all the strings into values/strings.xml
             */
            final HashMap<String, String> stringDictionary = new HashMap<String, String>();
            stringDictionary.put(APP_NAME, androidProject.getApplicationName());

            if (!androidProject.isUsingDefaultLocation() && androidProject.isNewProject())
            {
                Path destination = new Path(androidProject.getLocation());
                description.setLocation(destination);

                if (!FileUtil.canWrite(destination.toFile()))
                {
                    String errMsg =
                            NLS.bind(
                                    AndroidNLS.EXC_ProjectCreationSupport_CannotCreateProjectReadOnlyDestination,
                                    destination.toOSString());
                    throw new AndroidException(errMsg);
                }

                if (!validateNewProjectLocationIsEmpty(destination))
                {
                    throw new AndroidException(AndroidNLS.UI_ProjectCreationSupport_NonEmptyFolder);
                }
            }

            if (androidProject.getSourceType() == SourceTypes.EXISTING)
            {
                Path destination = new Path(androidProject.getLocation());
                description.setLocation(destination);
            }

            /*
             * Create a monitored operation to create the actual project
             */
            WorkspaceModifyOperation op = new WorkspaceModifyOperation()
            {
                @Override
                protected void execute(IProgressMonitor monitor) throws InvocationTargetException
                {

                    createProjectAsync(project, androidProject, description, monitor, parameters,
                            stringDictionary);
                }
            };

            /*
             * Run the operation in a different thread
             */
            created = runAsyncOperation(op, container);
        }

        return created;

    }

    /**
     * Create android project.
     * @param project
     * @param androidProject
     * @param description
     * @param monitor
     * @param parameters
     * @param stringDictionary
     * @throws InvocationTargetException
     */
    protected static void createProjectAsync(IProject project, AndroidProject androidProject,
            IProjectDescription description, IProgressMonitor monitor,
            Map<String, Object> parameters, Map<String, String> stringDictionary)
            throws InvocationTargetException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_CopyingSamplesMonitorTaskTitle, 1000);
        try
        {
            // Create project and open it
            project.create(description, new SubProgressMonitor(monitor, 100));
            if (monitor.isCanceled())
            {
                undoProjectCreation(project);
                throw new OperationCanceledException();
            }
            project.open(IResource.BACKGROUND_REFRESH, new SubProgressMonitor(monitor, 100));

            ProjectUtils.setupAndroidNatures(project, monitor);

            // Create folders in the project if they don't already exist
            createDefaultDir(project, IAndroidConstants.WS_ROOT, BIN_DIR, new SubProgressMonitor(
                    monitor, 40));
            createDefaultDir(project, IAndroidConstants.WS_ROOT, RES_DIR, new SubProgressMonitor(
                    monitor, 40));
            createDefaultDir(project, IAndroidConstants.WS_ROOT, ASSETS_DIR,
                    new SubProgressMonitor(monitor, 40));
            createDefaultDir(project, IAndroidConstants.WS_ROOT, GEN_DIR, new SubProgressMonitor(
                    monitor, 40));

            switch (androidProject.getSourceType())
            {
                case NEW:
                    // Create the source folders in the project if they don't already exist
                    List<String> sourceFolders = androidProject.getSourceFolders();
                    for (String sourceFolder : sourceFolders)
                    {
                        createDefaultDir(project, IAndroidConstants.WS_ROOT, sourceFolder,
                                new SubProgressMonitor(monitor, 40));
                    }

                    // Create the resource folders in the project if they don't already exist.
                    int apiLevel = androidProject.getSdkTarget().getVersion().getApiLevel();
                    if (apiLevel < 4)
                    {
                        createDefaultDir(project, RES_DIR, DRAWABLE_DIR + File.separator,
                                new SubProgressMonitor(monitor, 40));
                    }
                    else
                    {
                        for (String dpi : DPIS)
                        {
                            createDefaultDir(project, RES_DIR, DRAWABLE_DIR + "-" + dpi
                                    + File.separator, new SubProgressMonitor(monitor, 40));
                        }
                    }
                    createDefaultDir(project, RES_DIR, LAYOUT_DIR, new SubProgressMonitor(monitor,
                            40));
                    createDefaultDir(project, RES_DIR, VALUES_DIR, new SubProgressMonitor(monitor,
                            40));

                    // Create files in the project if they don't already exist
                    createManifest(project, parameters, stringDictionary, new SubProgressMonitor(
                            monitor, 80));
                    // add the default app icon
                    addIcon(project, apiLevel, new SubProgressMonitor(monitor, 100));
                    // Create the default package components
                    String primarySrcFolder = IAndroidConstants.FD_SOURCES;
                    if (!sourceFolders.contains(IAndroidConstants.FD_SOURCES))
                    {
                        primarySrcFolder = sourceFolders.get(0);
                    }
                    addInitialCode(project, primarySrcFolder, parameters, stringDictionary,
                            new SubProgressMonitor(monitor, 200));
                    // add the string definition file if needed
                    if (stringDictionary.size() > 0)
                    {
                        EclipseUtils.createOrUpdateDictionaryFile(project, stringDictionary, null,
                                new SubProgressMonitor(monitor, 100));
                    }

                    break;
                case EXISTING:
                    createDefaultDir(project, IAndroidConstants.WS_ROOT, GEN_DIR,
                            new SubProgressMonitor(monitor, 650));
                    break;
                case SAMPLE:
                    monitor.setTaskName(AndroidNLS.UI_ProjectCreationSupport_CopyingSamplesMonitorMessage);
                    FileUtil.copyDir(androidProject.getSample().getFolder(), project.getLocation()
                            .toFile());
                    project.refreshLocal(IResource.DEPTH_INFINITE, new SubProgressMonitor(monitor,
                            650));
                    break;
                case WIDGET:
                    // Create the source folders in the project if they don't already exist
                    List<String> widgetSourceFolders = androidProject.getSourceFolders();
                    for (String sourceFolder : widgetSourceFolders)
                    {
                        createDefaultDir(project, IAndroidConstants.WS_ROOT, sourceFolder,
                                new SubProgressMonitor(monitor, 40));
                    }

                    // Create the resource folders in the project if they don't already exist.
                    int widgetApiLevel = androidProject.getSdkTarget().getVersion().getApiLevel();
                    if (widgetApiLevel < 4)
                    {
                        createDefaultDir(project, RES_DIR, DRAWABLE_DIR + File.separator,
                                new SubProgressMonitor(monitor, 40));
                    }
                    else
                    {
                        for (String dpi : DPIS)
                        {
                            createDefaultDir(project, RES_DIR, DRAWABLE_DIR + "-" + dpi
                                    + File.separator, new SubProgressMonitor(monitor, 40));
                        }
                    }
                    createDefaultDir(project, RES_DIR, LAYOUT_DIR, new SubProgressMonitor(monitor,
                            40));
                    createDefaultDir(project, RES_DIR, VALUES_DIR, new SubProgressMonitor(monitor,
                            40));
                    createDefaultDir(project, RES_DIR, XML_DIR, new SubProgressMonitor(monitor, 40));

                    // Create files in the project if they don't already exist
                    createWidgetManifest(project, parameters, stringDictionary,
                            new SubProgressMonitor(monitor, 80));
                    // add the default app icon
                    addIcon(project, widgetApiLevel, new SubProgressMonitor(monitor, 100));
                    // Create the default package components
                    String widgetPrimarySrcFolder = IAndroidConstants.FD_SOURCES;
                    if (!widgetSourceFolders.contains(IAndroidConstants.FD_SOURCES))
                    {
                        primarySrcFolder = widgetSourceFolders.get(0);
                    }
                    addInitialWidgetCode(project, widgetPrimarySrcFolder, parameters,
                            stringDictionary, new SubProgressMonitor(monitor, 200));
                    // add the string definition file if needed
                    if (stringDictionary.size() > 0)
                    {
                        EclipseUtils.createOrUpdateDictionaryFile(project, stringDictionary, null,
                                new SubProgressMonitor(monitor, 100));
                    }

                    break;
            }

            // Setup class path
            IJavaProject javaProject = JavaCore.create(project);
            setupSourceFolders(javaProject, androidProject.getSourceFolders(),
                    new SubProgressMonitor(monitor, 40));

            // Set output location
            javaProject.setOutputLocation(project.getFolder(BIN_DIR).getFullPath(),
                    new SubProgressMonitor(monitor, 40));
            SdkUtils.associate(project, androidProject.getSdkTarget());
            ProjectUtils.fixProject(project);
        }
        catch (CoreException e)
        {
            undoProjectCreation(project);
            throw new InvocationTargetException(e);
        }
        catch (IOException e)
        {
            undoProjectCreation(project);
            throw new InvocationTargetException(e);
        }
        finally
        {
            monitor.done();
        }
    }

    /**
     * Add initial code
     * @param project
     * @param sourceFolder
     * @param parameters
     * @param stringDictionary
     * @param monitor
     * @throws CoreException
     * @throws IOException
     */
    private static void addInitialCode(IProject project, String sourceFolder,
            Map<String, Object> parameters, Map<String, String> stringDictionary,
            IProgressMonitor monitor) throws CoreException, IOException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Configuring_Sample_Source_Task, 700);

        try
        {
            IFolder pkgFolder = project.getFolder(sourceFolder);

            Map<String, Object> processed_parameters = processSampleActivity(parameters);
            String activityName = (String) processed_parameters.get(ACTIVITY_NAME);
            String packageName = (String) processed_parameters.get(PACKAGE_NAME);

            pkgFolder =
                    createPackageFolders(new SubProgressMonitor(monitor, 300), pkgFolder,
                            packageName);

            if (activityName != null)
            {
                createSampleActivity(new SubProgressMonitor(monitor, 200), pkgFolder,
                        processed_parameters, activityName);
            }

            IFolder layoutfolder = project.getFolder(RES_DIR + LAYOUT_DIR);
            IFile file = layoutfolder.getFile(MAIN_LAYOUT_XML);
            if (!file.exists())
            {
                copyTemplateFile(LAYOUT_TEMPLATE, file, parameters, new SubProgressMonitor(monitor,
                        100));
                if (activityName != null)
                {
                    stringDictionary
                            .put(STRING_HELLO_WORLD, NLS.bind(
                                    AndroidNLS.GEN_ProjectCreationSupport_HelloWorldWithName,
                                    activityName));
                }
                else
                {
                    stringDictionary.put(STRING_HELLO_WORLD,
                            AndroidNLS.GEN_ProjectCreationSupport_HelloWorldSimple);
                }
                monitor.worked(100);
            }
        }
        finally
        {
            monitor.done();
        }
    }

    /**
     * Add initial widget code
     * @param project
     * @param sourceFolder
     * @param parameters
     * @param stringDictionary
     * @param monitor
     * @throws CoreException
     * @throws IOException
     */
    private static void addInitialWidgetCode(IProject project, String sourceFolder,
            Map<String, Object> parameters, Map<String, String> stringDictionary,
            IProgressMonitor monitor) throws CoreException, IOException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Configuring_Sample_Source_Task, 800);

        try
        {
            IFolder pkgFolder = project.getFolder(sourceFolder);

            Map<String, Object> processed_parameters = processSampleActivity(parameters);
            String activityName = (String) processed_parameters.get(ACTIVITY_NAME);
            String packageName = (String) processed_parameters.get(PACKAGE_NAME);

            pkgFolder =
                    createPackageFolders(new SubProgressMonitor(monitor, 200), pkgFolder,
                            packageName);

            // Create sample activity
            if (activityName != null)
            {
                createSampleActivity(new SubProgressMonitor(monitor, 100), pkgFolder,
                        processed_parameters, activityName);
            }

            // Create sample widget provider
            createSampleWidgetProvider(new SubProgressMonitor(monitor, 100), pkgFolder,
                    processed_parameters);

            // Layout xml file
            IFolder layoutfolder = project.getFolder(RES_DIR + LAYOUT_DIR);

            IFile file = layoutfolder.getFile(MAIN_LAYOUT_XML);
            if (!file.exists())
            {
                copyTemplateFile(LAYOUT_TEMPLATE, file, parameters, new SubProgressMonitor(monitor,
                        100));
                if (activityName != null)
                {
                    stringDictionary
                            .put(STRING_HELLO_WORLD, NLS.bind(
                                    AndroidNLS.GEN_ProjectCreationSupport_HelloWorldWithName,
                                    activityName));
                }
                else
                {
                    stringDictionary.put(STRING_HELLO_WORLD,
                            AndroidNLS.GEN_ProjectCreationSupport_HelloWorldSimple);
                }
                monitor.worked(100);
            }

            // Widget initial layout xml file
            IFile initial_layout_file = layoutfolder.getFile(WIDGET_INITIAL_LAYOUT_XML);
            if (!initial_layout_file.exists())
            {
                copyWidgetTemplateFile(WIDGET_INITIAL_LAYOUT_XML, initial_layout_file,
                        processed_parameters, new SubProgressMonitor(monitor, 100));
                monitor.worked(100);
            }

            // Widget info xml file
            IFolder xmlFolder = project.getFolder(RES_DIR + XML_DIR);

            IFile widget_info_file = xmlFolder.getFile(WIDGET_INFO_XML);
            if (!widget_info_file.exists())
            {
                copyWidgetTemplateFile(WIDGET_INFO_XML, widget_info_file, processed_parameters,
                        new SubProgressMonitor(monitor, 100));
                monitor.worked(100);
            }

        }
        finally
        {
            monitor.done();
        }
    }

    private static void createSampleActivity(IProgressMonitor monitor, IFolder pkgFolder,
            Map<String, Object> processed_parameters, String activityName) throws CoreException,
            IOException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Configuring_Sample_Activity_Task,
                100);
        try
        {
            IFile file = pkgFolder.getFile(activityName + IAndroidConstants.DOT_JAVA);
            if (!file.exists())
            {
                monitor.worked(10);
                copyTemplateFile(JAVA_ACTIVITY_TEMPLATE, file, processed_parameters,
                        new SubProgressMonitor(monitor, 90));
            }
        }
        finally
        {
            monitor.done();
        }
    }

    private static void createSampleWidgetProvider(IProgressMonitor monitor, IFolder pkgFolder,
            Map<String, Object> processed_parameters) throws CoreException, IOException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Configuring_Sample_Widget_Provider,
                100);
        try
        {
            IFile file =
                    pkgFolder.getFile(WIDGET_PROVIDER_SAMPLE_NAME + IAndroidConstants.DOT_JAVA);
            if (!file.exists())
            {
                monitor.worked(10);
                copyWidgetTemplateFile(WIDGET_PROVIDER_SAMPLE_TEMPLATE, file, processed_parameters,
                        new SubProgressMonitor(monitor, 90));
            }
        }
        finally
        {
            monitor.done();
        }
    }

    private static IFolder createPackageFolders(IProgressMonitor monitor, IFolder pkgFolder,
            String packageName) throws CoreException
    {
        String[] components = packageName.split(IAndroidConstants.RE_DOT);
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Preparing_Java_Packages_Task,
                components.length * 100);
        try
        {
            for (String component : components)
            {
                pkgFolder = pkgFolder.getFolder(component);
                if (!pkgFolder.exists())
                {
                    pkgFolder.create(true, true, new SubProgressMonitor(monitor, 100));
                }
            }
        }
        finally
        {
            monitor.done();
        }

        return pkgFolder;
    }

    private static Map<String, Object> processSampleActivity(Map<String, Object> parameters)
    {
        String activityName = (String) parameters.get(ACTIVITY_NAME);

        Map<String, Object> processed_parameters = new HashMap<String, Object>(parameters);
        if ((activityName != null) && activityName.contains(".")) //$NON-NLS-1$
        {
            String packageName = (String) parameters.get(PACKAGE_NAME);
            packageName += "." + activityName.substring(0, activityName.lastIndexOf('.')); //$NON-NLS-1$
            activityName = activityName.substring(activityName.lastIndexOf('.'));

            processed_parameters.put(PACKAGE_NAME, packageName);
            processed_parameters.put(ACTIVITY_NAME, activityName);
        }

        return processed_parameters;
    }

    /**
     * Copy template files
     * @param resourceFilename
     * @param destFile
     * @param parameters
     * @param monitor
     * @throws CoreException
     * @throws IOException
     */
    private static void copyTemplateFile(String resourceFilename, IFile destFile,
            Map<String, Object> parameters, IProgressMonitor monitor) throws CoreException,
            IOException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Preparing_Template_File_Task, 150);
        InputStream stream = null;
        try
        {
            String template =
                    readEmbeddedTextFileADT(TEMPLATES_DIRECTORY + resourceFilename, parameters);
            monitor.worked(50);
            stream = new ByteArrayInputStream(template.getBytes("UTF-8")); //$NON-NLS-1$
            destFile.create(stream, false, new SubProgressMonitor(monitor, 100));

        }
        finally
        {
            if (stream != null)
            {
                stream.close();
            }
            monitor.done();
        }
    }

    /**
     * Copy widget template files
     * @param resourceFilename
     * @param destFile
     * @param parameters
     * @param monitor
     * @throws CoreException
     * @throws IOException
     */
    private static void copyWidgetTemplateFile(String resourceFilename, IFile destFile,
            Map<String, Object> parameters, IProgressMonitor monitor) throws CoreException,
            IOException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Preparing_Template_File_Task, 150);
        InputStream stream = null;
        try
        {
            String template =
                    readEmbeddedTextFileStudio(WIDGET_TEMPLATE_FOLDER + resourceFilename,
                            parameters);
            monitor.worked(50);
            stream = new ByteArrayInputStream(template.getBytes("UTF-8")); //$NON-NLS-1$
            destFile.create(stream, false, new SubProgressMonitor(monitor, 100));

        }
        finally
        {
            if (stream != null)
            {
                stream.close();
            }
            monitor.done();
        }
    }

    /**
     * Add Icon to the project
     * @param project
     * @param apiLevel 
     * @param monitor
     * @throws CoreException
     */
    private static void addIcon(IProject project, int apiLevel, IProgressMonitor monitor)
            throws CoreException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Configuring_Project_Icon_Task, 1000);
        try
        {
            if (apiLevel < 4)
            {
                IFile imageFile =
                        project.getFile(RES_DIR + IPath.SEPARATOR + DRAWABLE_DIR + IPath.SEPARATOR
                                + ICON);
                if (!imageFile.exists())
                {
                    String fileName =
                            ICON.substring(0, ICON.length() - 4) + "_" + DPIS[2]
                                    + ICON.substring(ICON.length() - 4);
                    createImageFromTemplate(monitor, imageFile, fileName);
                }
            }
            else
            {
                for (String dpi : DPIS)
                {
                    IFile imageFile =
                            project.getFile(RES_DIR + IPath.SEPARATOR + DRAWABLE_DIR + "-" + dpi
                                    + IPath.SEPARATOR + ICON);
                    if (!imageFile.exists())
                    {
                        String fileName =
                                ICON.substring(0, ICON.length() - 4) + "_" + dpi
                                        + ICON.substring(ICON.length() - 4);
                        createImageFromTemplate(monitor, imageFile, fileName);
                    }
                }
            }
        }
        finally
        {
            monitor.done();
        }

    }

    private static void createImageFromTemplate(IProgressMonitor monitor, IFile imageFile,
            String fileName) throws CoreException
    {
        byte[] buffer = AdtPlugin.readEmbeddedFile(TEMPLATES_DIRECTORY + fileName);

        if (buffer != null)
        {
            InputStream stream = null;
            try
            {
                stream = new ByteArrayInputStream(buffer);
                imageFile.create(stream, IResource.NONE, new SubProgressMonitor(monitor, 1000));
            }
            finally
            {
                try
                {
                    stream.close();
                }
                catch (IOException e)
                {
                    StudioLogger.info("Create image from template could not close stream. "
                            + e.getMessage());
                }
            }
        }
    }

    /**
     * Adds the manifest to the project.
     * @param project
     * @param parameters
     * @param stringDictionary
     * @param monitor
     * @throws CoreException
     * @throws IOException
     */
    private static void createManifest(IProject project, Map<String, Object> parameters,
            Map<String, String> stringDictionary, IProgressMonitor monitor) throws CoreException,
            IOException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Creating_Manifest_File_Task, 300);
        try
        {
            IFile manifestFile = project.getFile(IAndroidConstants.FN_ANDROID_MANIFEST);
            if (!manifestFile.exists())
            {
                monitor.setTaskName(AndroidNLS.UI_ProjectCreationSupport_Reading_Template_File_Task);
                String manifestTemplate = readEmbeddedTextFileADT(MANIFEST_TEMPLATE, parameters);
                monitor.worked(10);
                if (parameters.containsKey(ACTIVITY_NAME))
                {
                    String activities = readEmbeddedTextFileADT(ACTIVITY_TEMPLATE, parameters);
                    String intent = AdtPlugin.readEmbeddedTextFile(LAUNCHER_INTENT_TEMPLATE);
                    activities = activities.replaceAll(INTENT_FILTERS, intent);
                    manifestTemplate = manifestTemplate.replaceAll(ACTIVITIES, activities);
                    monitor.worked(90);
                }
                else
                {
                    manifestTemplate = manifestTemplate.replaceAll(ACTIVITIES, ""); //$NON-NLS-1$
                    monitor.worked(90);
                }

                //We don't currently supports the TEST parameters. So let's just remove the unused tags.
                manifestTemplate = manifestTemplate.replaceAll(TEST_USES_LIBRARY, ""); //$NON-NLS-1$
                manifestTemplate = manifestTemplate.replaceAll(TEST_INSTRUMENTATION, ""); //$NON-NLS-1$

                String minSdkVersion = (String) parameters.get(MIN_SDK_VERSION);
                if ((minSdkVersion != null) && (minSdkVersion.length() > 0))
                {
                    String usesSdk = readEmbeddedTextFileADT(USES_SDK_TEMPLATE, parameters);
                    manifestTemplate = manifestTemplate.replaceAll(USES_SDK, usesSdk);
                    monitor.worked(50);
                }
                else
                {
                    manifestTemplate = manifestTemplate.replaceAll(USES_SDK, ""); //$NON-NLS-1$
                    monitor.worked(50);
                }

                InputStream stream = null;
                try
                {
                    stream = new ByteArrayInputStream(manifestTemplate.getBytes("UTF-8")); //$NON-NLS-1$
                    manifestFile.create(stream, IResource.NONE,
                            new SubProgressMonitor(monitor, 150));
                }
                finally
                {
                    try
                    {
                        if (stream != null)
                        {
                            stream.close();
                        }
                    }
                    catch (IOException e)
                    {
                        StudioLogger.info("Could not close stream while creating manifest",
                                e.getMessage());
                    }
                }
            }
        }
        finally
        {
            monitor.done();
        }
    }

    /**
     * Adds the widget manifest to the project.
     * @param project
     * @param parameters
     * @param stringDictionary
     * @param monitor
     * @throws CoreException
     * @throws IOException
     */
    private static void createWidgetManifest(IProject project, Map<String, Object> parameters,
            Map<String, String> stringDictionary, IProgressMonitor monitor) throws CoreException,
            IOException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Creating_Manifest_File_Task, 300);
        try
        {
            IFile manifestFile = project.getFile(IAndroidConstants.FN_ANDROID_MANIFEST);
            if (!manifestFile.exists())
            {
                monitor.setTaskName(AndroidNLS.UI_ProjectCreationSupport_Reading_Template_File_Task);

                // Manifest skeleton
                String manifestTemplate =
                        readEmbeddedTextFileStudio(WIDGET_MANIFEST_TEMPLATE_PATH, parameters);
                monitor.worked(10);
                // Activity information
                if (parameters.containsKey(ACTIVITY_NAME))
                {
                    String activities =
                            readEmbeddedTextFileStudio(WIDGET_ACTIVITY_TEMPLATE_PATH, parameters);
                    manifestTemplate = manifestTemplate.replaceAll(ACTIVITIES, activities);
                    monitor.worked(70);
                }
                else
                {
                    manifestTemplate = manifestTemplate.replaceAll(ACTIVITIES, ""); //$NON-NLS-1$
                    monitor.worked(70);
                }

                // Receiver information
                String receivers =
                        readEmbeddedTextFileStudio(WIDGET_RECEIVER_TEMPLATE_PATH, parameters);
                manifestTemplate = manifestTemplate.replaceAll(RECEIVERS, receivers);
                monitor.worked(70);

                // Min Sdk information
                String minSdkVersion = (String) parameters.get(MIN_SDK_VERSION);
                if ((minSdkVersion != null) && (minSdkVersion.length() > 0))
                {
                    String usesSdk =
                            readEmbeddedTextFileStudio(WIDGET_USES_SDK_TEMPLATE_PATH, parameters);
                    manifestTemplate = manifestTemplate.replaceAll(USES_SDK, usesSdk);
                    monitor.worked(50);
                }
                else
                {
                    manifestTemplate = manifestTemplate.replaceAll(USES_SDK, ""); //$NON-NLS-1$
                    monitor.worked(50);
                }

                InputStream stream = null;

                try
                {
                    stream = new ByteArrayInputStream(manifestTemplate.getBytes("UTF-8")); //$NON-NLS-1$
                    manifestFile.create(stream, IResource.NONE,
                            new SubProgressMonitor(monitor, 100));
                }
                finally
                {
                    try
                    {
                        if (stream != null)
                        {
                            stream.close();
                        }
                    }
                    catch (IOException e)
                    {
                        StudioLogger.info(
                                "Could not close stream while creating manifest for widget",
                                e.getMessage());
                    }
                }
            }
        }
        finally
        {
            monitor.done();
        }
    }

    private static String readEmbeddedTextFileADT(String template, Map<String, Object> parameters)
    {
        String loadedTemplate = AdtPlugin.readEmbeddedTextFile(template);

        for (String key : parameters.keySet())
        {
            if (parameters.get(key) instanceof String)
            {
                loadedTemplate = loadedTemplate.replaceAll(key, (String) parameters.get(key));
            }
        }

        return loadedTemplate;
    }

    private static String readEmbeddedTextFileStudio(String template, Map<String, Object> parameters)
    {
        String loadedTemplate =
                EclipseUtils.readEmbeddedResource(AndroidPlugin.getDefault().getBundle(), template);

        for (String key : parameters.keySet())
        {
            if (parameters.get(key) instanceof String)
            {
                loadedTemplate = loadedTemplate.replaceAll(key, (String) parameters.get(key));
            }
        }

        return loadedTemplate;
    }

    /**
     * Setup src folders
     * @param javaProject
     * @param sourceFolder
     * @param monitor
     * @throws JavaModelException
     */
    private static void setupSourceFolders(IJavaProject javaProject, List<String> sourceFolders,
            IProgressMonitor monitor) throws JavaModelException
    {
        monitor.beginTask(AndroidNLS.UI_ProjectCreationSupport_Preparing_Source_Folders_Task,
                (sourceFolders.size() * 100) + 100);
        try
        {
            IProject project = javaProject.getProject();
            IClasspathEntry[] entries = javaProject.getRawClasspath();

            for (String sourceFolder : sourceFolders)
            {
                IFolder srcFolder = project.getFolder(sourceFolder);
                entries = removeClasspathEntry(entries, srcFolder);
                entries = removeClasspathEntry(entries, srcFolder.getParent());
                entries =
                        ProjectUtils.addEntryToClasspath(entries,
                                JavaCore.newSourceEntry(srcFolder.getFullPath()));
                monitor.worked(100);
            }

            javaProject.setRawClasspath(entries, new SubProgressMonitor(monitor, 100));
        }
        finally
        {
            monitor.done();
        }
    }

    /**
     * Remove source folder from classpath 
     * @param entries
     * @param folder
     * @return
     */
    private static IClasspathEntry[] removeClasspathEntry(IClasspathEntry[] entries,
            IContainer folder)
    {

        IClasspathEntry[] newClassPath = null;

        if (folder != null)
        {
            IClasspathEntry removeEntry = JavaCore.newSourceEntry(folder.getFullPath());
            List<IClasspathEntry> entriesList = Arrays.asList(entries);

            if (entriesList.contains(removeEntry))
            {
                newClassPath = new IClasspathEntry[entries.length - 1];
                int i = 0;
                for (IClasspathEntry entry : entriesList)
                {
                    if (!entry.equals(removeEntry))
                    {
                        newClassPath[i] = entry;
                        i++;
                    }
                }
            }
            else
            {
                newClassPath = entries;
            }
        }
        else
        {
            newClassPath = entries;
        }
        return newClassPath;
    }

    /**
     * Add default directory to Project
     * @param project
     * @param parentFolder
     * @param folderName
     * @param monitor
     * @throws CoreException
     */
    private static void createDefaultDir(IProject project, String parentFolder, String folderName,
            IProgressMonitor monitor) throws CoreException
    {
        monitor.beginTask(
                AndroidNLS.UI_ProjectCreationSupport_Creating_Directory_Task + folderName, 100);

        try
        {
            monitor.setTaskName(AndroidNLS.UI_ProjectCreationSupport_Verifying_Directory_Task);
            if (folderName.length() > 0)
            {
                monitor.worked(10);
                IFolder folder = project.getFolder(parentFolder + folderName);
                monitor.worked(10);
                if (!folder.exists())
                {
                    monitor.worked(10);
                    if (FileUtil.canWrite(folder.getLocation().toFile()))
                    {
                        monitor.worked(10);
                        monitor.setTaskName(AndroidNLS.UI_ProjectCreationSupport_Creating_Directory_Task);
                        folder.create(true, true, new SubProgressMonitor(monitor, 60));
                    }
                    else
                    {
                        String errMsg =
                                NLS.bind(
                                        AndroidNLS.EXC_ProjectCreationSupport_CannotCreateFolderReadOnlyWorkspace,
                                        folder.getLocation().toFile().toString());
                        IStatus status = new AndroidStatus(IStatus.ERROR, errMsg);
                        throw new CoreException(status);
                    }
                }
            }
        }
        finally
        {
            monitor.done();
        }
    }

    /**
     * Validate new Project Location.
     * @param destination
     * @param display
     * @return
     */
    public static boolean validateNewProjectLocationIsEmpty(IPath destination)
    {
        File f = new File(destination.toOSString());
        if (f.isDirectory() && (f.list().length > 0))
        {
            //            EclipseUtils.showErrorDialog(
            //                    AndroidNLS.UI_ProjectCreationSupport_NonEmptyFolderQuestionDialogTitle,
            //                    AndroidNLS.UI_ProjectCreationSupport_NonEmptyFolderQuestion);
            return false;
        }
        return true;
    }

    /**
     * Run the operation in async thread.
     * @param op
     * @param container
     * 
     * @return true if no errors occur during the operation or false otherwise
     */
    private static boolean runAsyncOperation(WorkspaceModifyOperation op, IWizardContainer container)
    {
        boolean created = false;

        try
        {
            container.run(true, true, op);
            created = true;
        }
        catch (InvocationTargetException ite)
        {
            Throwable t = ite.getTargetException();
            if (t instanceof CoreException)
            {
                CoreException core = (CoreException) t;
                if (core.getStatus().getCode() == IResourceStatus.CASE_VARIANT_EXISTS)
                {
                    MessageDialog.openError(container.getShell(),
                            AndroidNLS.UI_GenericErrorDialogTitle,
                            AndroidNLS.ERR_ProjectCreationSupport_CaseVariantExistsError);
                }
                else
                {
                    ErrorDialog.openError(container.getShell(),
                            AndroidNLS.UI_GenericErrorDialogTitle, null, core.getStatus());
                }
            }
            else
            {
                MessageDialog.openError(container.getShell(),
                        AndroidNLS.UI_GenericErrorDialogTitle, t.getMessage());
            }
        }
        catch (InterruptedException e)
        {
            StudioLogger.error(ProjectCreationSupport.class, "Error creating project.", e); //$NON-NLS-1$
        }

        return created;
    }

    /**
     * Checks if a project can be created on workspace
     * 
     * @param root The workspace root
     * @param projectName The project name
     * 
     * @return true if the project can be created or false otherwise
     */
    private static boolean canCreateProject(IWorkspaceRoot root, String projectName)
    {
        File rootFolder = root.getLocation().toFile();
        File projectFolder = new File(rootFolder, projectName);

        return FileUtil.canWrite(projectFolder);
    }

    /**
     * Undoes a project creation. Removes all files created by the project creation process
     * and keeps any other previous files
     * 
     * @param project The failed project
     * @param existingResources A set containing the path of pre-existing resources before creating
     *                          the project
     */
    private static void undoProjectCreation(IProject project)
    {
        File projectPath =
                new File(project.getWorkspace().getRoot().getLocation().toFile(), project.getName());
        Set<String> existingResources = getExistingResources(projectPath);

        try
        {
            project.delete(false, true, new NullProgressMonitor());
        }
        catch (CoreException e1)
        {
            // Do nothing
            StudioLogger.error(ProjectCreationSupport.class, e1.getLocalizedMessage(), e1);
        }

        if (existingResources.isEmpty())
        {
            try
            {
                FileUtil.deleteDirRecursively(project.getLocation().toFile());
            }
            catch (IOException e)
            {
                // Do nothing
                StudioLogger.error(ProjectCreationSupport.class, e.getLocalizedMessage(), e);
            }
        }
        else
        {
            File root =
                    new File(project.getWorkspace().getRoot().getLocation().toFile(),
                            project.getName());
            removeCreatedResources(root, existingResources);
        }
    }

    /**
     * Retrieves a list of existing sub-resources from a folder
     *  
     * @param folder the File object representing the folder
     * 
     * @return a list of existing sub-resources from the folder
     */
    private static Set<String> getExistingResources(File folder)
    {
        Set<String> existing = new HashSet<String>();

        if ((folder != null) && folder.exists() && folder.isDirectory())
        {
            existing.add(folder.toString());

            File[] children = folder.listFiles();

            if (children != null)
            {
                for (File child : children)
                {
                    if (child.isDirectory())
                    {
                        existing.addAll(getExistingResources(child));
                    }
                    else
                    {
                        existing.add(child.toString());
                    }
                }
            }
        }

        return existing;
    }

    /**
     * Removes the created resources by a failed project creation process
     * 
     * @param startingPoint The project root folder (File object)
     * @param existingResources The set containing the previous existing resources in the project root folder
     */
    private static void removeCreatedResources(File startingPoint, Set<String> existingResources)
    {
        File[] members = startingPoint.listFiles();

        if (members != null)
        {
            for (File child : members)
            {
                if (child.isFile())
                {
                    if (!existingResources.contains(child.toString()))
                    {
                        child.delete();
                    }
                }
                else
                {
                    removeCreatedResources(child, existingResources);
                }
            }
        }

        if (!existingResources.contains(startingPoint.toString()))
        {
            startingPoint.delete();
        }
    }
}