Search in sources :

Example 11 with Specfile

use of org.eclipse.linuxtools.rpm.ui.editor.parser.Specfile in project linuxtools by eclipse.

the class SpecfileSource method changeDeclaration.

public void changeDeclaration(int oldPatchNumber) {
    Specfile specfile = this.getSpecfile();
    Pattern patchPattern;
    if (oldPatchNumber == 0) {
        // $NON-NLS-1$ //$NON-NLS-2$
        patchPattern = Pattern.compile("Patch" + oldPatchNumber + "|Patch");
    } else {
        // $NON-NLS-1$
        patchPattern = Pattern.compile("Patch" + oldPatchNumber);
    }
    String line;
    try {
        line = specfile.getLine(lineNumber);
        Matcher patchMatcher = patchPattern.matcher(line);
        if (!patchMatcher.find()) {
            // TODO: Maybe we can throw a exception here.
            // $NON-NLS-1$
            System.out.println(Messages.getString("SpecfileSource.2") + patchPattern.pattern());
        }
        // $NON-NLS-1$
        specfile.changeLine(lineNumber, line.replaceAll(patchPattern.pattern(), "Patch" + number));
    } catch (BadLocationException e) {
        SpecfileLog.logError(e);
    }
}
Also used : Specfile(org.eclipse.linuxtools.rpm.ui.editor.parser.Specfile) Pattern(java.util.regex.Pattern) Matcher(java.util.regex.Matcher) BadLocationException(org.eclipse.jface.text.BadLocationException)

Example 12 with Specfile

use of org.eclipse.linuxtools.rpm.ui.editor.parser.Specfile 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();
}
Also used : Specfile(org.eclipse.linuxtools.rpm.ui.editor.parser.Specfile) SpecfileEditor(org.eclipse.linuxtools.internal.rpm.ui.editor.SpecfileEditor) SpecfileParser(org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfileParser) Before(org.junit.Before)

Example 13 with Specfile

use of org.eclipse.linuxtools.rpm.ui.editor.parser.Specfile 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;
}
Also used : Specfile(org.eclipse.linuxtools.rpm.ui.editor.parser.Specfile) Path(org.eclipse.core.runtime.Path) MalformedURLException(java.net.MalformedURLException) IFile(org.eclipse.core.resources.IFile) RPMProject(org.eclipse.linuxtools.rpm.core.RPMProject) IOException(java.io.IOException) SpecfileParser(org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfileParser) DownloadJob(org.eclipse.linuxtools.rpm.core.utils.DownloadJob) URL(java.net.URL) HttpURLConnection(java.net.HttpURLConnection) URLConnection(java.net.URLConnection) Shell(org.eclipse.swt.widgets.Shell) SpecfileSource(org.eclipse.linuxtools.internal.rpm.ui.editor.parser.SpecfileSource) HttpURLConnection(java.net.HttpURLConnection) DownloadJob(org.eclipse.linuxtools.rpm.core.utils.DownloadJob) Job(org.eclipse.core.runtime.jobs.Job) IResource(org.eclipse.core.resources.IResource)

Aggregations

Specfile (org.eclipse.linuxtools.rpm.ui.editor.parser.Specfile)13 BadLocationException (org.eclipse.jface.text.BadLocationException)6 SpecfileParser (org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfileParser)6 Matcher (java.util.regex.Matcher)2 Pattern (java.util.regex.Pattern)2 IFile (org.eclipse.core.resources.IFile)2 IResource (org.eclipse.core.resources.IResource)2 CoreException (org.eclipse.core.runtime.CoreException)2 Job (org.eclipse.core.runtime.jobs.Job)2 IDocument (org.eclipse.jface.text.IDocument)2 RPMProject (org.eclipse.linuxtools.rpm.core.RPMProject)2 DownloadJob (org.eclipse.linuxtools.rpm.core.utils.DownloadJob)2 SpecfileDefine (org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfileDefine)2 SpecfilePackage (org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfilePackage)2 SpecfileSection (org.eclipse.linuxtools.rpm.ui.editor.parser.SpecfileSection)2 Shell (org.eclipse.swt.widgets.Shell)2 IOException (java.io.IOException)1 HttpURLConnection (java.net.HttpURLConnection)1 MalformedURLException (java.net.MalformedURLException)1 URL (java.net.URL)1