use of org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfileParser in project linuxtools by eclipse.
the class SpecfileContentProvider method inputChanged.
@Override
public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
if (oldInput != null) {
IDocument document = documentProvider.getDocument(oldInput);
if (document != null) {
try {
document.removePositionCategory(SECTION_POSITIONS);
} catch (BadPositionCategoryException x) {
}
document.removePositionUpdater(positionUpdater);
}
}
if (newInput != null) {
IDocument document = documentProvider.getDocument(newInput);
if (document != null) {
document.addPositionCategory(SECTION_POSITIONS);
document.addPositionUpdater(positionUpdater);
specfile = new SpecfileParser().parse(document);
}
}
}
use of org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfileParser in project linuxtools by eclipse.
the class AReplaceTextResolution method run.
@Override
public void run(IMarker marker) {
IEditorPart editor = getEditor(marker);
if (editor == null) {
return;
}
IDocument doc = editor.getAdapter(IDocument.class);
try {
int lineNumber = marker.getAttribute(IMarker.LINE_NUMBER, 0);
int index = doc.getLineOffset(lineNumber);
String line = new SpecfileParser().parse(doc).getLine(lineNumber);
int rowIndex = line.indexOf(getOriginalString());
if (rowIndex > -1) {
doc.replace(index + rowIndex, getOriginalString().length(), getReplaceString());
}
} catch (BadLocationException e) {
RpmlintLog.logError(e);
}
}
use of org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfileParser in project linuxtools by eclipse.
the class FileTestCase method setUp.
@Before
public void setUp() throws CoreException {
testProject = new SpecfileTestProject();
String fileName = "test" + this.getClass().getSimpleName() + ".spec";
testFile = testProject.createFile(fileName);
editor = new SpecfileEditor();
parser = new SpecfileParser();
specfile = new Specfile();
}
use of org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfileParser in project linuxtools by eclipse.
the class AInsertLineResolution method run.
/**
* Inserts an entire line at a given position as a resolution for a problem.
*
* @see org.eclipse.ui.IMarkerResolution#run(org.eclipse.core.resources.IMarker)
*/
@Override
public void run(IMarker marker) {
IEditorPart editor = getEditor(marker);
if (editor == null) {
return;
}
// Get the document
IDocument doc = editor.getAdapter(IDocument.class);
try {
int index = doc.getLineOffset(getLineNumberForInsert(new SpecfileParser().parse(doc)));
doc.replace(index, 0, getLineToInsert());
} catch (BadLocationException e) {
RpmlintLog.logError(e);
}
}
use of org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfileParser in project linuxtools by eclipse.
the class SpecfileEditorDownloadSourcesActionDelegate method execute.
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
final Shell shell = HandlerUtil.getActiveShellChecked(event);
final SpecfileParser specparser = new SpecfileParser();
final IResource resource = RPMHandlerUtils.getResource(event);
final RPMProject rpj = RPMHandlerUtils.getRPMProject(resource);
final IFile workFile = (IFile) rpj.getSpecFile();
final Specfile specfile = workFile != null ? specparser.parse(workFile) : null;
// retrieve source(s) from specfile
final List<SpecfileSource> sourceURLList = specfile != null ? (List<SpecfileSource>) specfile.getSources() : null;
// currently stops immediately once an invalid source URL is encountered
for (final SpecfileSource sourceurls : sourceURLList) {
try {
String rawURL = sourceurls.getFileName();
String resolvedURL = UiUtils.resolveDefines(specfile, rawURL);
URL url = null;
try {
url = new URL(resolvedURL);
} catch (MalformedURLException e) {
SpecfileLog.logError(NLS.bind(Messages.DownloadSources_malformedURL, resolvedURL), e);
// $NON-NLS-1$
RPMUtils.showErrorDialog(// $NON-NLS-1$
shell, // $NON-NLS-1$
"Error", NLS.bind(Messages.DownloadSources_malformedURL, resolvedURL));
return null;
}
URLConnection connection = url.openConnection();
if (!(connection instanceof HttpURLConnection) || ((HttpURLConnection) connection).getResponseCode() != HttpURLConnection.HTTP_NOT_FOUND) {
connection.connect();
// grab the name of the file from the URL
// $NON-NLS-1$
int offset = url.toString().lastIndexOf("/");
String filename = url.toString().substring(offset + 1);
// create the path to the "to be downloaded" file
IFile file = rpj.getConfiguration().getSourcesFolder().getFile(new Path(filename));
Job downloadJob = new DownloadJob(file, connection);
downloadJob.setUser(true);
downloadJob.schedule();
}
} catch (IOException e) {
SpecfileLog.logError(Messages.DownloadSources_cannotConnectToURL, e);
// $NON-NLS-1$
RPMUtils.showErrorDialog(// $NON-NLS-1$
shell, // $NON-NLS-1$
"Error", Messages.DownloadSources_cannotConnectToURL);
return null;
}
}
return null;
}
Aggregations