1 package com.jetbrains.edu.learning;
3 import com.intellij.execution.RunContentExecutor;
4 import com.intellij.execution.configurations.GeneralCommandLine;
5 import com.intellij.execution.process.ProcessHandler;
6 import com.intellij.lang.Language;
7 import com.intellij.openapi.actionSystem.AnActionEvent;
8 import com.intellij.openapi.actionSystem.CommonDataKeys;
9 import com.intellij.openapi.actionSystem.DataContext;
10 import com.intellij.openapi.actionSystem.Presentation;
11 import com.intellij.openapi.application.ApplicationManager;
12 import com.intellij.openapi.diagnostic.Logger;
13 import com.intellij.openapi.editor.Document;
14 import com.intellij.openapi.editor.Editor;
15 import com.intellij.openapi.editor.RangeMarker;
16 import com.intellij.openapi.editor.actionSystem.EditorActionManager;
17 import com.intellij.openapi.editor.colors.EditorColors;
18 import com.intellij.openapi.editor.colors.EditorColorsManager;
19 import com.intellij.openapi.editor.impl.DocumentImpl;
20 import com.intellij.openapi.fileEditor.FileDocumentManager;
21 import com.intellij.openapi.fileEditor.FileEditor;
22 import com.intellij.openapi.fileEditor.FileEditorManager;
23 import com.intellij.openapi.fileEditor.ex.FileEditorManagerEx;
24 import com.intellij.openapi.fileEditor.impl.LoadTextUtil;
25 import com.intellij.openapi.progress.ProgressManager;
26 import com.intellij.openapi.project.Project;
27 import com.intellij.openapi.project.ProjectManager;
28 import com.intellij.openapi.projectRoots.Sdk;
29 import com.intellij.openapi.ui.MessageType;
30 import com.intellij.openapi.ui.popup.Balloon;
31 import com.intellij.openapi.ui.popup.JBPopupFactory;
32 import com.intellij.openapi.util.Disposer;
33 import com.intellij.openapi.util.io.FileUtil;
34 import com.intellij.openapi.util.text.StringUtil;
35 import com.intellij.openapi.vfs.LocalFileSystem;
36 import com.intellij.openapi.vfs.VfsUtil;
37 import com.intellij.openapi.vfs.VirtualFile;
38 import com.intellij.openapi.wm.IdeFocusManager;
39 import com.intellij.openapi.wm.ToolWindow;
40 import com.intellij.openapi.wm.ToolWindowAnchor;
41 import com.intellij.openapi.wm.ToolWindowManager;
42 import com.intellij.psi.PsiDirectory;
43 import com.intellij.psi.PsiElement;
44 import com.intellij.psi.PsiFile;
45 import com.intellij.ui.JBColor;
46 import com.intellij.ui.awt.RelativePoint;
47 import com.intellij.ui.content.Content;
48 import com.intellij.util.ObjectUtils;
49 import com.intellij.util.TimeoutUtil;
50 import com.intellij.util.containers.ContainerUtil;
51 import com.intellij.util.text.MarkdownUtil;
52 import com.intellij.util.ui.UIUtil;
53 import com.jetbrains.edu.learning.checker.StudyExecutor;
54 import com.jetbrains.edu.learning.checker.StudyTestRunner;
55 import com.jetbrains.edu.learning.core.EduAnswerPlaceholderDeleteHandler;
56 import com.jetbrains.edu.learning.core.EduAnswerPlaceholderPainter;
57 import com.jetbrains.edu.learning.core.EduNames;
58 import com.jetbrains.edu.learning.core.EduUtils;
59 import com.jetbrains.edu.learning.courseFormat.*;
60 import com.jetbrains.edu.learning.courseGeneration.StudyProjectGenerator;
61 import com.jetbrains.edu.learning.editor.StudyEditor;
62 import com.jetbrains.edu.learning.ui.StudyToolWindow;
63 import com.jetbrains.edu.learning.ui.StudyToolWindowFactory;
64 import com.petebevin.markdown.MarkdownProcessor;
65 import org.jetbrains.annotations.NotNull;
66 import org.jetbrains.annotations.Nullable;
71 import java.util.ArrayList;
72 import java.util.Collection;
73 import java.util.Iterator;
74 import java.util.List;
75 import java.util.concurrent.Callable;
76 import java.util.concurrent.ExecutionException;
77 import java.util.concurrent.Future;
79 public class StudyUtils {
80 private StudyUtils() {
83 private static final Logger LOG = Logger.getInstance(StudyUtils.class.getName());
84 private static final String EMPTY_TASK_TEXT = "Please, open any task to see task description";
85 private static final String ourPrefix = "<html><head><script type=\"text/x-mathjax-config\">\n" +
86 " MathJax.Hub.Config({\n" +
88 " inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n" +
89 " displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n" +
90 " processEscapes: true,\n" +
91 " processEnvironments: true\n" +
93 " displayAlign: 'center',\n" +
94 " \"HTML-CSS\": {\n" +
95 " styles: {'#mydiv': {\"font-size\": %s}},\n" +
96 " preferredFont: null,\n" +
97 " linebreaks: { automatic: true }\n" +
100 "</script><script type=\"text/javascript\"\n" +
101 " src=\"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML-full\">\n" +
102 " </script></head><body><div id=\"mydiv\">";
104 private static final String ourPostfix = "</div></body></html>";
106 public static void closeSilently(@Nullable final Closeable stream) {
107 if (stream != null) {
111 catch (IOException e) {
117 public static boolean isZip(String fileName) {
118 return fileName.contains(".zip");
122 public static <T> T getFirst(@NotNull final Iterable<T> container) {
123 Iterator<T> iterator = container.iterator();
124 if (!iterator.hasNext()) {
127 return iterator.next();
130 public static boolean indexIsValid(int index, @NotNull final Collection collection) {
131 int size = collection.size();
132 return index >= 0 && index < size;
135 @SuppressWarnings("IOResourceOpenedButNotSafelyClosed")
137 public static String getFileText(@Nullable final String parentDir, @NotNull final String fileName, boolean wrapHTML,
138 @NotNull final String encoding) {
139 final File inputFile = parentDir != null ? new File(parentDir, fileName) : new File(fileName);
140 if (!inputFile.exists()) return null;
141 final StringBuilder taskText = new StringBuilder();
142 BufferedReader reader = null;
144 reader = new BufferedReader(new InputStreamReader(new FileInputStream(inputFile), encoding));
146 while ((line = reader.readLine()) != null) {
147 taskText.append(line).append("\n");
149 taskText.append("<br>");
152 return wrapHTML ? UIUtil.toHtml(taskText.toString()) : taskText.toString();
154 catch (IOException e) {
155 LOG.info("Failed to get file text from file " + fileName, e);
158 closeSilently(reader);
163 public static void updateAction(@NotNull final AnActionEvent e) {
164 final Presentation presentation = e.getPresentation();
165 presentation.setEnabled(false);
166 final Project project = e.getProject();
167 if (project != null) {
168 final StudyEditor studyEditor = getSelectedStudyEditor(project);
169 if (studyEditor != null) {
170 presentation.setEnabledAndVisible(true);
175 public static void updateToolWindows(@NotNull final Project project) {
176 final StudyToolWindow studyToolWindow = getStudyToolWindow(project);
177 if (studyToolWindow != null) {
178 String taskText = getTaskText(project);
179 if (taskText != null) {
180 studyToolWindow.setTaskText(taskText, null, project);
183 LOG.warn("Task text is null");
185 studyToolWindow.updateCourseProgress(project);
189 public static void initToolWindows(@NotNull final Project project) {
190 final ToolWindowManager windowManager = ToolWindowManager.getInstance(project);
191 windowManager.getToolWindow(StudyToolWindowFactory.STUDY_TOOL_WINDOW).getContentManager().removeAllContents(false);
192 StudyToolWindowFactory factory = new StudyToolWindowFactory();
193 factory.createToolWindowContent(project, windowManager.getToolWindow(StudyToolWindowFactory.STUDY_TOOL_WINDOW));
198 public static StudyToolWindow getStudyToolWindow(@NotNull final Project project) {
199 if (project.isDisposed()) return null;
201 ToolWindow toolWindow = ToolWindowManager.getInstance(project).getToolWindow(StudyToolWindowFactory.STUDY_TOOL_WINDOW);
202 if (toolWindow != null) {
203 Content[] contents = toolWindow.getContentManager().getContents();
204 for (Content content: contents) {
205 JComponent component = content.getComponent();
206 if (component != null && component instanceof StudyToolWindow) {
207 return (StudyToolWindow)component;
214 public static void deleteFile(@NotNull final VirtualFile file) {
216 file.delete(StudyUtils.class);
218 catch (IOException e) {
223 public static File copyResourceFile(@NotNull final String sourceName, @NotNull final String copyName, @NotNull final Project project,
224 @NotNull final Task task)
226 final StudyTaskManager taskManager = StudyTaskManager.getInstance(project);
227 final Course course = taskManager.getCourse();
228 int taskNum = task.getIndex();
229 int lessonNum = task.getLesson().getIndex();
230 assert course != null;
231 final String pathToResource = FileUtil.join(course.getCourseDirectory(), EduNames.LESSON + lessonNum, EduNames.TASK + taskNum);
232 final File resourceFile = new File(pathToResource, copyName);
233 FileUtil.copy(new File(pathToResource, sourceName), resourceFile);
238 public static Sdk findSdk(@NotNull final Task task, @NotNull final Project project) {
239 final Language language = task.getLesson().getCourse().getLanguageById();
240 return StudyExecutor.INSTANCE.forLanguage(language).findSdk(project);
244 public static StudyTestRunner getTestRunner(@NotNull final Task task, @NotNull final VirtualFile taskDir) {
245 final Language language = task.getLesson().getCourse().getLanguageById();
246 return StudyExecutor.INSTANCE.forLanguage(language).getTestRunner(task, taskDir);
249 public static RunContentExecutor getExecutor(@NotNull final Project project, @NotNull final Task currentTask,
250 @NotNull final ProcessHandler handler) {
251 final Language language = currentTask.getLesson().getCourse().getLanguageById();
252 return StudyExecutor.INSTANCE.forLanguage(language).getExecutor(project, handler);
255 public static void setCommandLineParameters(@NotNull final GeneralCommandLine cmd,
256 @NotNull final Project project,
257 @NotNull final String filePath,
258 @NotNull final String sdkPath,
259 @NotNull final Task currentTask) {
260 final Language language = currentTask.getLesson().getCourse().getLanguageById();
261 StudyExecutor.INSTANCE.forLanguage(language).setCommandLineParameters(cmd, project, filePath, sdkPath, currentTask);
264 public static void showNoSdkNotification(@NotNull final Task currentTask, @NotNull final Project project) {
265 final Language language = currentTask.getLesson().getCourse().getLanguageById();
266 StudyExecutor.INSTANCE.forLanguage(language).showNoSdkNotification(project);
271 * shows pop up in the center of "check task" button in study editor
273 public static void showCheckPopUp(@NotNull final Project project, @NotNull final Balloon balloon) {
274 final StudyEditor studyEditor = getSelectedStudyEditor(project);
275 assert studyEditor != null;
277 balloon.show(computeLocation(studyEditor.getEditor()), Balloon.Position.above);
278 Disposer.register(project, balloon);
281 public static RelativePoint computeLocation(Editor editor){
283 final Rectangle visibleRect = editor.getComponent().getVisibleRect();
284 Point point = new Point(visibleRect.x + visibleRect.width + 10,
286 return new RelativePoint(editor.getComponent(), point);
291 * returns language manager which contains all the information about language specific file names
294 public static StudyLanguageManager getLanguageManager(@NotNull final Course course) {
295 Language language = course.getLanguageById();
296 return language == null ? null : StudyLanguageManager.INSTANCE.forLanguage(language);
299 public static boolean isTestsFile(@NotNull Project project, @NotNull final String name) {
300 Course course = StudyTaskManager.getInstance(project).getCourse();
301 if (course == null) {
304 StudyLanguageManager manager = getLanguageManager(course);
305 if (manager == null) {
308 return manager.getTestFileName().equals(name);
312 public static TaskFile getTaskFile(@NotNull final Project project, @NotNull final VirtualFile file) {
313 final Course course = StudyTaskManager.getInstance(project).getCourse();
314 if (course == null) {
317 VirtualFile taskDir = file.getParent();
318 if (taskDir == null) {
321 //need this because of multi-module generation
322 if (EduNames.SRC.equals(taskDir.getName())) {
323 taskDir = taskDir.getParent();
324 if (taskDir == null) {
328 final String taskDirName = taskDir.getName();
329 if (taskDirName.contains(EduNames.TASK)) {
330 final VirtualFile lessonDir = taskDir.getParent();
331 if (lessonDir != null) {
332 int lessonIndex = EduUtils.getIndex(lessonDir.getName(), EduNames.LESSON);
333 List<Lesson> lessons = course.getLessons();
334 if (!indexIsValid(lessonIndex, lessons)) {
337 final Lesson lesson = lessons.get(lessonIndex);
338 int taskIndex = EduUtils.getIndex(taskDirName, EduNames.TASK);
339 final List<Task> tasks = lesson.getTaskList();
340 if (!indexIsValid(taskIndex, tasks)) {
343 final Task task = tasks.get(taskIndex);
344 return task.getFile(file.getName());
350 public static void drawAllWindows(Editor editor, TaskFile taskFile) {
351 editor.getMarkupModel().removeAllHighlighters();
352 final Project project = editor.getProject();
353 if (project == null) return;
354 final StudyTaskManager taskManager = StudyTaskManager.getInstance(project);
355 for (AnswerPlaceholder answerPlaceholder : taskFile.getAnswerPlaceholders()) {
356 final JBColor color = taskManager.getColor(answerPlaceholder);
357 EduAnswerPlaceholderPainter.drawAnswerPlaceholder(editor, answerPlaceholder, color);
359 final Document document = editor.getDocument();
360 EditorActionManager.getInstance()
361 .setReadonlyFragmentModificationHandler(document, new EduAnswerPlaceholderDeleteHandler(editor));
362 EduAnswerPlaceholderPainter.createGuardedBlocks(editor, taskFile);
363 editor.getColorsScheme().setColor(EditorColors.READONLY_FRAGMENT_BACKGROUND_COLOR, null);
367 public static StudyEditor getSelectedStudyEditor(@NotNull final Project project) {
369 final FileEditor fileEditor = FileEditorManagerEx.getInstanceEx(project).getSplitters().getCurrentWindow().
370 getSelectedEditor().getSelectedEditorWithProvider().getFirst();
371 if (fileEditor instanceof StudyEditor) {
372 return (StudyEditor)fileEditor;
375 catch (Exception e) {
382 public static Editor getSelectedEditor(@NotNull final Project project) {
383 final StudyEditor studyEditor = getSelectedStudyEditor(project);
384 if (studyEditor != null) {
385 return studyEditor.getEditor();
390 public static void deleteGuardedBlocks(@NotNull final Document document) {
391 if (document instanceof DocumentImpl) {
392 final DocumentImpl documentImpl = (DocumentImpl)document;
393 List<RangeMarker> blocks = documentImpl.getGuardedBlocks();
394 for (final RangeMarker block : blocks) {
395 ApplicationManager.getApplication().invokeLater(() -> ApplicationManager.getApplication().runWriteAction(() -> document.removeGuardedBlock(block)));
402 public static VirtualFile getPatternFile(@NotNull TaskFile taskFile, String name) {
403 Task task = taskFile.getTask();
404 String lessonDir = EduNames.LESSON + String.valueOf(task.getLesson().getIndex());
405 String taskDir = EduNames.TASK + String.valueOf(task.getIndex());
406 Course course = task.getLesson().getCourse();
407 File resourceFile = new File(course.getCourseDirectory());
408 if (!resourceFile.exists()) {
411 String patternPath = FileUtil.join(resourceFile.getPath(), lessonDir, taskDir, name);
412 VirtualFile patternFile = VfsUtil.findFileByIoFile(new File(patternPath), true);
413 if (patternFile == null) {
420 public static Document getPatternDocument(@NotNull final TaskFile taskFile, String name) {
421 VirtualFile patternFile = getPatternFile(taskFile, name);
422 if (patternFile == null) {
425 return FileDocumentManager.getInstance().getDocument(patternFile);
428 public static boolean isRenameableOrMoveable(@NotNull final Project project, @NotNull final Course course, @NotNull final PsiElement element) {
429 if (element instanceof PsiFile) {
430 VirtualFile virtualFile = ((PsiFile)element).getVirtualFile();
431 if (project.getBaseDir().equals(virtualFile.getParent())) {
434 TaskFile file = getTaskFile(project, virtualFile);
438 String name = virtualFile.getName();
439 return !isTestsFile(project, name) && !isTaskDescriptionFile(name);
441 if (element instanceof PsiDirectory) {
442 VirtualFile virtualFile = ((PsiDirectory)element).getVirtualFile();
443 VirtualFile parent = virtualFile.getParent();
444 if (parent == null) {
447 if (project.getBaseDir().equals(parent)) {
450 Lesson lesson = course.getLesson(parent.getName());
451 if (lesson != null) {
452 Task task = lesson.getTask(virtualFile.getName());
461 public static boolean canRenameOrMove(DataContext dataContext) {
462 Project project = CommonDataKeys.PROJECT.getData(dataContext);
463 PsiElement element = CommonDataKeys.PSI_ELEMENT.getData(dataContext);
464 if (element == null || project == null) {
467 Course course = StudyTaskManager.getInstance(project).getCourse();
468 if (course == null || !EduNames.STUDY.equals(course.getCourseMode())) {
472 if (!isRenameableOrMoveable(project, course, element)) {
479 public static String getTaskTextFromTask(@Nullable final VirtualFile taskDirectory, @Nullable final Task task) {
485 String text = task.getText();
486 if (text != null && !text.isEmpty()) {
487 return wrapTextToDisplayLatex(text);
489 if (taskDirectory != null) {
490 final String taskTextFileHtml = getTaskTextFromTaskName(taskDirectory, EduNames.TASK_HTML);
491 if (taskTextFileHtml != null) return wrapTextToDisplayLatex(taskTextFileHtml);
493 final String taskTextFileMd = getTaskTextFromTaskName(taskDirectory, EduNames.TASK_MD);
494 if (taskTextFileMd != null) return wrapTextToDisplayLatex(convertToHtml(taskTextFileMd));
499 public static String wrapTextToDisplayLatex(String taskTextFileHtml) {
500 final String prefix = String.format(ourPrefix, EditorColorsManager.getInstance().getGlobalScheme().getEditorFontSize());
501 return prefix + taskTextFileHtml + ourPostfix;
505 private static String getTaskTextFromTaskName(@NotNull VirtualFile taskDirectory, @NotNull String taskTextFilename) {
506 taskDirectory.refresh(false, true);
507 VirtualFile taskTextFile = taskDirectory.findChild(taskTextFilename);
508 if (taskTextFile == null) {
509 VirtualFile srcDir = taskDirectory.findChild(EduNames.SRC);
510 if (srcDir != null) {
511 taskTextFile = srcDir.findChild(taskTextFilename);
514 if (taskTextFile != null) {
515 return String.valueOf(LoadTextUtil.loadText(taskTextFile));
521 public static StudyPluginConfigurator getConfigurator(@NotNull final Project project) {
522 StudyPluginConfigurator[] extensions = StudyPluginConfigurator.EP_NAME.getExtensions();
523 for (StudyPluginConfigurator extension: extensions) {
524 if (extension.accept(project)) {
532 public static StudyTwitterPluginConfigurator getTwitterConfigurator(@NotNull final Project project) {
533 StudyTwitterPluginConfigurator[] extensions = StudyTwitterPluginConfigurator.EP_NAME.getExtensions();
534 for (StudyTwitterPluginConfigurator extension: extensions) {
535 if (extension.accept(project)) {
543 public static String getTaskText(@NotNull final Project project) {
544 TaskFile taskFile = getSelectedTaskFile(project);
545 if (taskFile == null) {
546 return EMPTY_TASK_TEXT;
548 final Task task = taskFile.getTask();
550 return getTaskTextFromTask(task.getTaskDir(project), task);
555 public static TaskFile getSelectedTaskFile(@NotNull Project project) {
556 VirtualFile[] files = FileEditorManager.getInstance(project).getSelectedFiles();
557 TaskFile taskFile = null;
558 for (VirtualFile file : files) {
559 taskFile = getTaskFile(project, file);
560 if (taskFile != null) {
568 public static Task getCurrentTask(@NotNull final Project project) {
569 final TaskFile taskFile = getSelectedTaskFile(project);
570 return taskFile != null ? taskFile.getTask() : null;
573 public static boolean isStudyProject(@NotNull Project project) {
574 return StudyTaskManager.getInstance(project).getCourse() != null;
578 public static Project getStudyProject() {
579 Project studyProject = null;
580 Project[] openProjects = ProjectManager.getInstance().getOpenProjects();
581 for (Project project : openProjects) {
582 if (StudyTaskManager.getInstance(project).getCourse() != null) {
583 studyProject = project;
590 public static File getCourseDirectory(@NotNull Project project, Course course) {
591 final File courseDirectory;
592 if (course.isAdaptive()) {
593 courseDirectory = new File(StudyProjectGenerator.OUR_COURSES_DIR,
594 StudyProjectGenerator.ADAPTIVE_COURSE_PREFIX + course.getName()
595 + "_" + StudyTaskManager.getInstance(project).getUser().getEmail());
598 courseDirectory = new File(StudyProjectGenerator.OUR_COURSES_DIR, course.getName());
600 return courseDirectory;
603 public static boolean hasJavaFx() {
605 Class.forName("javafx.application.Platform");
608 catch (ClassNotFoundException e) {
614 public static Task getTask(@NotNull Project project, @NotNull VirtualFile taskVF) {
615 Course course = StudyTaskManager.getInstance(project).getCourse();
616 if (course == null) {
619 VirtualFile lessonVF = taskVF.getParent();
620 if (lessonVF == null) {
623 Lesson lesson = course.getLesson(lessonVF.getName());
624 if (lesson == null) {
627 return lesson.getTask(taskVF.getName());
631 public static VirtualFile getTaskDir(@NotNull VirtualFile taskFile) {
632 VirtualFile parent = taskFile.getParent();
633 if (parent == null) {
636 String name = parent.getName();
637 if (name.contains(EduNames.TASK)) {
640 if (EduNames.SRC.equals(name)) {
641 return parent.getParent();
647 public static Task getTaskForFile(@NotNull Project project, @NotNull VirtualFile taskFile) {
648 VirtualFile taskDir = getTaskDir(taskFile);
649 if (taskDir == null) {
652 return getTask(project, taskDir);
655 // supposed to be called under progress
657 public static <T> T execCancelable(@NotNull final Callable<T> callable) {
658 final Future<T> future = ApplicationManager.getApplication().executeOnPooledThread(callable);
660 while (!future.isCancelled() && !future.isDone()) {
661 ProgressManager.checkCanceled();
662 TimeoutUtil.sleep(500);
666 result = future.get();
668 catch (InterruptedException | ExecutionException e) {
669 LOG.warn(e.getMessage());
675 public static Task getTaskFromSelectedEditor(Project project) {
676 final StudyEditor editor = getSelectedStudyEditor(project);
678 if (editor != null) {
679 final TaskFile file = editor.getTaskFile();
680 task = file.getTask();
685 private static String convertToHtml(@NotNull final String content) {
686 ArrayList<String> lines = ContainerUtil.newArrayList(content.split("\n|\r|\r\n"));
687 MarkdownUtil.replaceHeaders(lines);
688 MarkdownUtil.replaceCodeBlock(lines);
690 return new MarkdownProcessor().markdown(StringUtil.join(lines, "\n"));
693 public static boolean isTaskDescriptionFile(@NotNull final String fileName) {
694 return EduNames.TASK_HTML.equals(fileName) || EduNames.TASK_MD.equals(fileName);
698 public static VirtualFile findTaskDescriptionVirtualFile(@NotNull VirtualFile taskDir) {
699 return ObjectUtils.chooseNotNull(taskDir.findChild(EduNames.TASK_HTML), taskDir.findChild(EduNames.TASK_MD));
703 public static String getTaskDescriptionFileName(final boolean useHtml) {
704 return useHtml ? EduNames.TASK_HTML : EduNames.TASK_MD;
708 public static Document getDocument(String basePath, int lessonIndex, int taskIndex, String fileName) {
709 String taskPath = FileUtil.join(basePath, EduNames.LESSON + lessonIndex, EduNames.TASK + taskIndex);
710 VirtualFile taskFile = LocalFileSystem.getInstance().findFileByPath(FileUtil.join(taskPath, fileName));
711 if (taskFile == null) {
712 taskFile = LocalFileSystem.getInstance().findFileByPath(FileUtil.join(taskPath, EduNames.SRC, fileName));
714 if (taskFile == null) {
717 return FileDocumentManager.getInstance().getDocument(taskFile);
720 public static void showErrorPopupOnToolbar(@NotNull Project project) {
721 final Balloon balloon =
722 JBPopupFactory.getInstance().createHtmlTextBalloonBuilder("Couldn't post your reaction", MessageType.ERROR, null).createBalloon();
723 showCheckPopUp(project, balloon);
726 public static void selectFirstAnswerPlaceholder(@Nullable final StudyEditor studyEditor, @NotNull final Project project) {
727 if (studyEditor == null) return;
728 final Editor editor = studyEditor.getEditor();
729 IdeFocusManager.getInstance(project).requestFocus(editor.getContentComponent(), true);
730 final List<AnswerPlaceholder> placeholders = studyEditor.getTaskFile().getAnswerPlaceholders();
731 if (placeholders.isEmpty()) return;
732 final AnswerPlaceholder placeholder = placeholders.get(0);
733 int startOffset = placeholder.getOffset();
734 editor.getSelectionModel().setSelection(startOffset, startOffset + placeholder.getRealLength());
737 public static void registerStudyToolWindow(@Nullable final Course course, Project project) {
738 if (course != null && "PyCharm".equals(course.getCourseType())) {
739 final ToolWindowManager toolWindowManager = ToolWindowManager.getInstance(project);
740 registerToolWindows(toolWindowManager, project);
741 final ToolWindow studyToolWindow = toolWindowManager.getToolWindow(StudyToolWindowFactory.STUDY_TOOL_WINDOW);
742 if (studyToolWindow != null) {
743 studyToolWindow.show(null);
744 initToolWindows(project);
749 private static void registerToolWindows(@NotNull final ToolWindowManager toolWindowManager, Project project) {
750 final ToolWindow toolWindow = toolWindowManager.getToolWindow(StudyToolWindowFactory.STUDY_TOOL_WINDOW);
751 if (toolWindow == null) {
752 toolWindowManager.registerToolWindow(StudyToolWindowFactory.STUDY_TOOL_WINDOW, true, ToolWindowAnchor.RIGHT, project, true);