aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/NdkCommandLauncher.java
blob: 0a1f7dc818d425bb0a8b4863ecb548bf1a39141c (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
/*
 * Copyright (C) 2011 The Android Open Source Project
 *
 * Licensed under the Eclipse Public License, Version 1.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.eclipse.org/org/documents/epl-v10.php
 *
 * 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.android.ide.eclipse.ndk.internal.build;

import com.android.ide.eclipse.adt.AdtPlugin;
import com.android.ide.eclipse.ndk.internal.NdkManager;

import org.eclipse.cdt.core.CommandLauncher;
import org.eclipse.cdt.utils.CygPath;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Platform;

import java.io.File;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;

@SuppressWarnings("restriction") // for AdtPlugin internal classes
public class NdkCommandLauncher extends CommandLauncher {
    private static CygPath sCygPath = null;

    private static final List<String> WINDOWS_NATIVE_EXECUTABLES = Arrays.asList(
            "exe",      //$NON-NLS-1$
            "cmd",      //$NON-NLS-1$
            "bat"       //$NON-NLS-1$
            );

    static {
        if (Platform.OS_WIN32.equals(Platform.getOS())) {
            try {
                sCygPath = new CygPath();
            } catch (IOException e) {
                AdtPlugin.printErrorToConsole("Unable to launch cygpath. Is Cygwin on the path?",
                        e);
            }
        }
    }

    @Override
    public Process execute(IPath commandPath, String[] args, String[] env, IPath changeToDirectory,
            IProgressMonitor monitor)
            throws CoreException {
        if (!commandPath.isAbsolute())
            commandPath = new Path(NdkManager.getNdkLocation()).append(commandPath);

        if (Platform.getOS().equals(Platform.OS_WIN32)) {
            // convert cygwin paths to standard paths
            if (sCygPath != null && commandPath.toString().startsWith("/cygdrive")) { //$NON-NLS-1$
                try {
                    String path = sCygPath.getFileName(commandPath.toString());
                    commandPath = new Path(path);
                } catch (IOException e) {
                    AdtPlugin.printErrorToConsole(
                            "Unexpected error while transforming cygwin path.", e);
                }
            }

            if (isWindowsExecutable(commandPath)) {
                // append necessary extension
                commandPath = appendExecutableExtension(commandPath);
            } else {
                // Invoke using Cygwin shell if this is not a native windows executable
                String[] newargs = new String[args.length + 1];
                newargs[0] = commandPath.toOSString();
                System.arraycopy(args, 0, newargs, 1, args.length);

                commandPath = new Path("sh"); //$NON-NLS-1$
                args = newargs;
            }
        }

        return super.execute(commandPath, args, env, changeToDirectory, monitor);
    }

    private boolean isWindowsExecutable(IPath commandPath) {
        String ext = commandPath.getFileExtension();
        if (isWindowsExecutableExtension(ext)) {
            return true;
        }

        ext = findWindowsExecutableExtension(commandPath);
        if (ext != null) {
            return true;
        }

        return false;
    }

    private IPath appendExecutableExtension(IPath commandPath) {
        if (isWindowsExecutableExtension(commandPath.getFileExtension())) {
            return commandPath;
        }

        String ext = findWindowsExecutableExtension(commandPath);
        if (ext != null) {
            return commandPath.addFileExtension(ext);
        }

        return commandPath;
    }

    private String findWindowsExecutableExtension(IPath command) {
        for (String e: WINDOWS_NATIVE_EXECUTABLES) {
            File exeFile = command.addFileExtension(e).toFile();
            if (exeFile.exists()) {
                return e;
            }
        }

        return null;
    }

    private boolean isWindowsExecutableExtension(String extension) {
        return extension != null && WINDOWS_NATIVE_EXECUTABLES.contains(extension);
    }
}