All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.intellij.vcsUtil.XmlVcsSelectionProvider Maven / Gradle / Ivy

Go to download

A packaging of the IntelliJ Community Edition xml library. This is release number 1 of trunk branch 142.

The newest version!
/*
 * Copyright 2000-2014 JetBrains s.r.o.
 *
 * 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.intellij.vcsUtil;

import com.intellij.codeInsight.TargetElementUtil;
import com.intellij.openapi.editor.Document;
import com.intellij.openapi.editor.Editor;
import com.intellij.openapi.fileEditor.FileDocumentManager;
import com.intellij.openapi.util.TextRange;
import com.intellij.openapi.vcs.VcsBundle;
import com.intellij.openapi.vcs.actions.VcsContext;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.psi.PsiElement;
import com.intellij.psi.xml.XmlTag;
import com.intellij.psi.xml.XmlText;

/**
 * @author yole
 */
public class XmlVcsSelectionProvider implements VcsSelectionProvider {
  @Override
  public VcsSelection getSelection(VcsContext context) {
    final Editor editor = context.getEditor();
      if (editor == null) return null;
      PsiElement psiElement = TargetElementUtil.findTargetElement(editor, TargetElementUtil.ELEMENT_NAME_ACCEPTED);
      if (psiElement == null || !psiElement.isValid()) {
        return null;
      }

      final String actionName;

      if (psiElement instanceof XmlTag) {
        actionName = VcsBundle.message("action.name.show.history.for.tag");
      }
      else if (psiElement instanceof XmlText) {
        actionName = VcsBundle.message("action.name.show.history.for.text");
      }
      else {
        return null;
      }

      TextRange textRange = psiElement.getTextRange();
      if (textRange == null) {
        return null;
      }

      VirtualFile virtualFile = psiElement.getContainingFile().getVirtualFile();
      if (virtualFile == null) {
        return null;
      }
      if (!virtualFile.isValid()) {
        return null;
      }

      Document document = FileDocumentManager.getInstance().getDocument(virtualFile);
      return new VcsSelection(document, textRange, actionName);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy