
com.github.os72.protocjar.Protoc Maven / Gradle / Ivy
/*
* Copyright 2014 protoc-jar developers
*
* 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.github.os72.protocjar;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Protoc
{
public static void main(String[] args) {
try {
runProtoc(args);
}
catch (Exception e) {
e.printStackTrace();
}
}
public static int runProtoc(String[] args) throws IOException, InterruptedException {
log("protoc version: " + ProtocVersion.PROTOC_VERSION + ", detected platform: " + getPlatform());
File protocTemp = extractProtoc();
int exitCode = runProtoc(protocTemp.getAbsolutePath(), args);
protocTemp.delete();
return exitCode;
}
public static int runProtoc(String cmd, String[] args) throws IOException, InterruptedException {
List protocCmd = new ArrayList();
protocCmd.add(cmd);
protocCmd.addAll(Arrays.asList(args));
ProcessBuilder pb = new ProcessBuilder(protocCmd);
log("executing: " + protocCmd);
Process protoc = pb.start();
new Thread(new StreamCopier(protoc.getInputStream(), System.out)).start();
new Thread(new StreamCopier(protoc.getErrorStream(), System.err)).start();
int exitCode = protoc.waitFor();
return exitCode;
}
static File extractProtoc() throws IOException {
String resourcePath = null; // for jar
String filePath = null; // for test
String osName = System.getProperty("os.name").toLowerCase();
String osArch = System.getProperty("os.arch").toLowerCase();
if (osName.startsWith("win")) {
filePath = sProtocFilePath + "/win32/protoc.exe";
}
else if (osName.startsWith("linux") && osArch.contains("64")) {
filePath = sProtocFilePath + "/linux/protoc";
}
else if (osName.startsWith("mac") && osArch.contains("64")) {
filePath = sProtocFilePath + "/mac/protoc";
}
else {
throw new IOException("Unsupported platform: " + getPlatform());
}
resourcePath = "/" + filePath;
Class clazz = Protoc.class;
InputStream is = clazz.getResourceAsStream(resourcePath);
if (is == null) is = new FileInputStream(filePath);
File temp = File.createTempFile("protoc", ".exe");
temp.setExecutable(true);
FileOutputStream os = new FileOutputStream(temp);
streamCopy(is, os);
is.close();
os.close();
return temp;
}
static void streamCopy(InputStream in, OutputStream out) throws IOException {
int read = 0;
byte[] buf = new byte[4096];
while ((read = in.read(buf)) > 0) out.write(buf, 0, read);
}
static String getPlatform() {
return System.getProperty("os.name").toLowerCase() + "/" + System.getProperty("os.arch").toLowerCase();
}
static void log(String msg) {
System.out.println("protoc-jar: " + msg);
}
static class StreamCopier implements Runnable
{
public StreamCopier(InputStream in, OutputStream out) {
mIn = in;
mOut = out;
}
public void run() {
try {
streamCopy(mIn, mOut);
}
catch (IOException e) {
e.printStackTrace();
}
}
private InputStream mIn;
private OutputStream mOut;
}
static final String sProtocFilePath = "bin_" + ProtocVersion.PROTOC_VERSION;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy