summaryrefslogtreecommitdiff
path: root/python/ide/src/com/jetbrains/python/configuration/PyContentEntriesModuleConfigurable.java
blob: bcbebc3b26396a78c14e4da79775f8e74a02a2cc (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
package com.jetbrains.python.configuration;

import com.intellij.facet.impl.DefaultFacetsProvider;
import com.intellij.openapi.Disposable;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.CustomShortcutSet;
import com.intellij.openapi.actionSystem.Presentation;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.module.impl.ModuleConfigurationStateImpl;
import com.intellij.openapi.options.Configurable;
import com.intellij.openapi.options.ConfigurationException;
import com.intellij.openapi.options.SearchableConfigurable;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.roots.ContentEntry;
import com.intellij.openapi.roots.ContentFolder;
import com.intellij.openapi.roots.ModifiableRootModel;
import com.intellij.openapi.roots.ModuleRootManager;
import com.intellij.openapi.roots.impl.ContentEntryImpl;
import com.intellij.openapi.roots.impl.ContentFolderBaseImpl;
import com.intellij.openapi.roots.ui.configuration.*;
import com.intellij.openapi.roots.ui.configuration.actions.ContentEntryEditingAction;
import com.intellij.openapi.util.Comparing;
import com.intellij.openapi.util.Computable;
import com.intellij.openapi.util.Disposer;
import com.intellij.openapi.vfs.VfsUtilCore;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.openapi.vfs.pointers.VirtualFilePointer;
import com.intellij.openapi.vfs.pointers.VirtualFilePointerListener;
import com.intellij.openapi.vfs.pointers.VirtualFilePointerManager;
import com.intellij.ui.JBColor;
import com.intellij.util.EventDispatcher;
import com.intellij.util.containers.MultiMap;
import com.jetbrains.python.templateLanguages.TemplatesService;
import icons.PythonIcons;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.jps.model.java.JavaSourceRootType;
import org.jetbrains.jps.model.module.JpsModuleSourceRootType;

import javax.swing.*;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.tree.TreeCellRenderer;
import java.awt.*;
import java.awt.event.InputEvent;
import java.awt.event.KeyEvent;
import java.util.ArrayList;
import java.util.List;

public class PyContentEntriesModuleConfigurable extends SearchableConfigurable.Parent.Abstract {
  private static final Color TEMPLATES_COLOR = JBColor.MAGENTA;

  private final Module myModule;
  private final JPanel myTopPanel = new JPanel(new BorderLayout());
  protected ModifiableRootModel myModifiableModel;
  protected MyCommonContentEntriesEditor myEditor;

  public PyContentEntriesModuleConfigurable(final Module module) {
    myModule = module;
  }

  @Override
  public String getDisplayName() {
    return "Project Structure";
  }

  @Override
  public String getHelpTopic() {
    return "reference.settingsdialog.project.structure";
  }

  @Override
  public JComponent createComponent() {
    createEditor();
    return myTopPanel;
  }

  private void createEditor() {
    if (myModule == null) return;
    myModifiableModel = ApplicationManager.getApplication().runReadAction(new Computable<ModifiableRootModel>() {
      @Override
      public ModifiableRootModel compute() {
        return ModuleRootManager.getInstance(myModule).getModifiableModel();
      }
    });

    final ModuleConfigurationStateImpl moduleConfigurationState =
      new ModuleConfigurationStateImpl(myModule.getProject(), new DefaultModulesProvider(myModule.getProject())) {
        @Override
        public ModifiableRootModel getRootModel() {
          return myModifiableModel;
        }

        @Override
        public FacetsProvider getFacetsProvider() {
          return DefaultFacetsProvider.INSTANCE;
        }
      };
    myEditor = createEditor(myModule, moduleConfigurationState);

    JComponent component = ApplicationManager.getApplication().runReadAction(new Computable<JComponent>() {
      @Override
      public JComponent compute() {
        return myEditor.createComponent();
      }
    });
    myTopPanel.add(component, BorderLayout.CENTER);
  }

  protected MyCommonContentEntriesEditor createEditor(@NotNull Module module, @NotNull ModuleConfigurationStateImpl state) {
    return new MyCommonContentEntriesEditor(module, state, JavaSourceRootType.SOURCE);
  }

  @Override
  public boolean isModified() {
    return myEditor != null && myEditor.isModified();
  }

  @Override
  public void apply() throws ConfigurationException {
    if (myEditor == null) return;
    myEditor.apply();
    if (myModifiableModel.isChanged()) {
      ApplicationManager.getApplication().runWriteAction(new Runnable() {
        @Override
        public void run() {
          myModifiableModel.commit();
        }
      });
      resetEditor();
    }
  }

  @Override
  public void reset() {
    if (myEditor == null) return;
    if (myModifiableModel != null) {
      myModifiableModel.dispose();
    }
    resetEditor();
  }

  private void resetEditor() {
    myEditor.disposeUIResources();
    myTopPanel.remove(myEditor.getComponent());
    createEditor();
  }

  @Override
  public void disposeUIResources() {
    if (myEditor != null) {
      myEditor.disposeUIResources();
      myTopPanel.remove(myEditor.getComponent());
      myEditor = null;
    }
    if (myModifiableModel != null) {
      myModifiableModel.dispose();
      myModifiableModel = null;
    }
  }

  @Override
  protected Configurable[] buildConfigurables() {
    return new Configurable[0];
  }

  @Override
  @NotNull
  public String getId() {
    return "python.project.structure";
  }

  private static class MyContentEntryTreeEditor extends ContentEntryTreeEditor {

    private final ChangeListener myListener = new ChangeListener() {
      @Override
      public void stateChanged(ChangeEvent e) {
        update();
      }
    };

    public MyContentEntryTreeEditor(Project project, List<ModuleSourceRootEditHandler<?>> handlers) {
      super(project, handlers);
    }

    @Override
    public void setContentEntryEditor(ContentEntryEditor newEditor) {
      MyCommonContentEntriesEditor.MyContentEntryEditor existingEditor = getContentEntryEditor();
      if (Comparing.equal(existingEditor, newEditor)) {
        return;
      }
      if (existingEditor != null) {
        existingEditor.removeListener(myListener);
      }
      if (newEditor != null) {
        ((MyCommonContentEntriesEditor.MyContentEntryEditor)newEditor).addListener(myListener);
      }
      super.setContentEntryEditor(newEditor);
    }

    @Override
    public MyCommonContentEntriesEditor.MyContentEntryEditor getContentEntryEditor() {
      return (MyCommonContentEntriesEditor.MyContentEntryEditor)super.getContentEntryEditor();
    }

    @Override
    protected void createEditingActions() {
      super.createEditingActions();

      ContentEntryEditingAction a = new ContentEntryEditingAction(myTree) {
        {
          final Presentation templatePresentation = getTemplatePresentation();
          templatePresentation.setText("Templates");
          templatePresentation.setDescription("Template Folders");
          templatePresentation.setIcon(PythonIcons.Python.TemplateRoot);
        }

        @Override
        public boolean isSelected(AnActionEvent e) {
          final VirtualFile[] selectedFiles = getSelectedFiles();
          return selectedFiles.length != 0 && getContentEntryEditor().hasTemplateRoot(selectedFiles[0]);
        }

        @Override
        public void setSelected(AnActionEvent e, boolean isSelected) {
          final VirtualFile[] selectedFiles = getSelectedFiles();
          assert selectedFiles.length != 0;

          for (VirtualFile selectedFile : selectedFiles) {
            boolean wasSelected = getContentEntryEditor().hasTemplateRoot(selectedFile);
            if (isSelected) {
              if (!wasSelected) {
                getContentEntryEditor().addTemplateRoot(selectedFile);
              }
            }
            else {
              if (wasSelected) {
                getContentEntryEditor().removeTemplateRoot(selectedFile);
              }
            }
          }
        }
      };
      myEditingActionsGroup.add(a);
      a.registerCustomShortcutSet(new CustomShortcutSet(KeyStroke.getKeyStroke(KeyEvent.VK_R, InputEvent.ALT_MASK)), myTree);
    }

    @Override
    protected TreeCellRenderer getContentEntryCellRenderer() {
      return new ContentEntryTreeCellRenderer(this, getEditHandlers()) {
        @Override
        protected Icon updateIcon(final ContentEntry entry, final VirtualFile file, final Icon originalIcon) {
          if (getContentEntryEditor().hasTemplateRoot(file)) {
            return PythonIcons.Python.TemplateRoot;
          }
          return super.updateIcon(entry, file, originalIcon);
        }
      };
    }
  }

  protected static class MyCommonContentEntriesEditor extends CommonContentEntriesEditor {
    private final MultiMap<ContentEntry, VirtualFilePointer> myTemplateRoots = new MultiMap<ContentEntry, VirtualFilePointer>();
    private final Module myModule;
    private Disposable myFilePointersDisposable;

    private final VirtualFilePointerListener DUMMY_LISTENER = new VirtualFilePointerListener() {
      @Override
      public void beforeValidityChanged(@NotNull VirtualFilePointer[] pointers) {
      }

      @Override
      public void validityChanged(@NotNull VirtualFilePointer[] pointers) {
      }
    };

    public MyCommonContentEntriesEditor(Module module,
                                        ModuleConfigurationStateImpl moduleConfigurationState,
                                        JpsModuleSourceRootType<?>... rootTypes) {
      super(module.getName(), moduleConfigurationState, rootTypes);
      myModule = module;
      reset();
    }

    @Override
    protected ContentEntryTreeEditor createContentEntryTreeEditor(Project project) {
      return new MyContentEntryTreeEditor(project, getEditHandlers());
    }

    @Override
    protected List<ContentEntry> addContentEntries(VirtualFile[] files) {
      List<ContentEntry> entries = super.addContentEntries(files);
      addContentEntryPanels(entries.toArray(new ContentEntry[entries.size()]));
      return entries;
    }

    @Override
    public void reset() {
      if (myFilePointersDisposable != null) {
        Disposer.dispose(myFilePointersDisposable);
      }
      myTemplateRoots.clear();

      myFilePointersDisposable = Disposer.newDisposable();
      final TemplatesService instance = TemplatesService.getInstance(myModule);
      if (instance != null) {
        final List<VirtualFile> folders = instance.getTemplateFolders();
        for (VirtualFile folder : folders) {
          ContentEntry contentEntry = findContentEntryForFile(folder);
          if (contentEntry != null) {
            myTemplateRoots.putValue(contentEntry, VirtualFilePointerManager.getInstance().create(folder, myFilePointersDisposable,
                                                                                                   DUMMY_LISTENER));
          }
        }
      }

      if (myRootTreeEditor != null) {
        ContentEntryEditor editor = myRootTreeEditor.getContentEntryEditor();
        if(editor!=null) editor.update();
        myRootTreeEditor.update();
      }
    }

    @Nullable
    private ContentEntry findContentEntryForFile(VirtualFile virtualFile) {
      for (ContentEntry contentEntry : getModel().getContentEntries()) {
        final VirtualFile file = contentEntry.getFile();
        if (file != null && VfsUtilCore.isAncestor(file, virtualFile, false)) {
          return contentEntry;
        }
      }
      return null;
    }

    @Override
    public void disposeUIResources() {
      super.disposeUIResources();
      if (myFilePointersDisposable != null) {
        Disposer.dispose(myFilePointersDisposable);
      }
    }

    @Override
    public void apply() throws ConfigurationException {
      super.apply();
      List<VirtualFile> templateRoots = getCurrentState();
      TemplatesService.getInstance(myModule).setTemplateFolders(templateRoots.toArray(new VirtualFile[templateRoots.size()]));
    }

    private List<VirtualFile> getCurrentState() {
      List<VirtualFile> result = new ArrayList<VirtualFile>();
      for (ContentEntry entry : myTemplateRoots.keySet()) {
        for (VirtualFilePointer filePointer : myTemplateRoots.get(entry)) {
          result.add(filePointer.getFile());
        }
      }
      return result;
    }

    @Override
    public boolean isModified() {
      if (super.isModified()) return true;
      final TemplatesService templatesService = TemplatesService.getInstance(myModule);
      if (templatesService != null) {
        List<VirtualFile> original = templatesService.getTemplateFolders();
        List<VirtualFile> current = getCurrentState();

        if (!Comparing.haveEqualElements(original, current)) return true;

      }
      return false;
    }

    @Override
    protected MyContentEntryEditor createContentEntryEditor(String contentEntryUrl) {
      return new MyContentEntryEditor(contentEntryUrl, getEditHandlers());
    }

    protected class MyContentEntryEditor extends ContentEntryEditor {
      private final EventDispatcher<ChangeListener> myEventDispatcher = EventDispatcher.create(ChangeListener.class);

      public MyContentEntryEditor(String contentEntryUrl, List<ModuleSourceRootEditHandler<?>> handlers) {
        super(contentEntryUrl, handlers);
      }

      @Override
      protected ModifiableRootModel getModel() {
        return MyCommonContentEntriesEditor.this.getModel();
      }

      public void addListener(ChangeListener changeListener) {
        myEventDispatcher.addListener(changeListener);
      }

      public void removeListener(ChangeListener changeListener) {
        myEventDispatcher.removeListener(changeListener);
      }

      @Override
      protected ContentRootPanel createContentRootPane() {
        return new MyContentRootPanel();
      }

      @Override
      public void deleteContentFolder(ContentEntry contentEntry, ContentFolder folder) {
        if (folder instanceof TemplateRootFolder) {
          final VirtualFile file = folder.getFile();
          if (file != null) {
            removeTemplateRoot(file);
          }
        }
        else {
          super.deleteContentFolder(contentEntry, folder);
        }
      }

      public void addTemplateRoot(@NotNull final VirtualFile file) {
        final VirtualFilePointer root = VirtualFilePointerManager.getInstance().create(file, myFilePointersDisposable, DUMMY_LISTENER);
        myTemplateRoots.putValue(getContentEntry(), root);
        myEventDispatcher.getMulticaster().stateChanged(new ChangeEvent(this));
        update();
      }

      public void removeTemplateRoot(@NotNull final VirtualFile file) {
        final VirtualFilePointer root = getTemplateRoot(file);
        if (root != null) {
          myTemplateRoots.remove(getContentEntry(), root);
          myEventDispatcher.getMulticaster().stateChanged(new ChangeEvent(this));
          update();
        }
      }

      public boolean hasTemplateRoot(@NotNull final VirtualFile file) {
        return getTemplateRoot(file) != null;
      }

      @Nullable
      public VirtualFilePointer getTemplateRoot(@NotNull final VirtualFile file) {
        for (VirtualFilePointer filePointer : myTemplateRoots.get(getContentEntry())) {
          if (Comparing.equal(filePointer.getFile(), file)) {
            return filePointer;
          }
        }
        return null;
      }

      protected class MyContentRootPanel extends ContentRootPanel {
        public MyContentRootPanel() {
          super(MyContentEntryEditor.this, getEditHandlers());
        }

        @Override
        @NotNull
        protected ContentEntryImpl getContentEntry() {
          //noinspection ConstantConditions
          return (ContentEntryImpl)MyContentEntryEditor.this.getContentEntry();
        }

        @Override
        protected void addFolderGroupComponents() {
          super.addFolderGroupComponents();
          if (!myTemplateRoots.get(getContentEntry()).isEmpty()) {
            final List<TemplateRootFolder> folders = new ArrayList<TemplateRootFolder>(myTemplateRoots.size());
            for (VirtualFilePointer root : myTemplateRoots.get(getContentEntry())) {
              folders.add(new TemplateRootFolder(root, getContentEntry()));
            }
            final JComponent sourcesComponent = createFolderGroupComponent("Template Folders",
                                                                           folders.toArray(new ContentFolder[folders.size()]),
                                                                           TEMPLATES_COLOR, null);
            this.add(sourcesComponent, new GridBagConstraints(0, GridBagConstraints.RELATIVE, 1, 1, 1.0, 0.0, GridBagConstraints.NORTH,
                                                              GridBagConstraints.HORIZONTAL, new Insets(0, 0, 10, 0), 0, 0));
          }
        }
      }
    }
  }

  private static class TemplateRootFolder extends ContentFolderBaseImpl {
    protected TemplateRootFolder(@NotNull VirtualFilePointer filePointer, @NotNull ContentEntryImpl contentEntry) {
      super(filePointer, contentEntry);
    }
  }
}