![JAR search and dependency download from the Maven repository](/logo.png)
com.oracle.tools.runtime.NativeApplicationProcess Maven / Gradle / Ivy
Show all versions of oracle-tools-all Show documentation
/*
* File: NativeApplicationProcess.java
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* The contents of this file are subject to the terms and conditions of
* the Common Development and Distribution License 1.0 (the "License").
*
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the License by consulting the LICENSE.txt file
* distributed with this file, or by consulting https://oss.oracle.com/licenses/CDDL
*
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file LICENSE.txt.
*
* MODIFICATIONS:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*/
package com.oracle.tools.runtime;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;
import java.lang.reflect.Field;
/**
* An {@link ApplicationProcess} that represents a locally executing, native
* operating system process.
*
* Copyright (c) 2013. All Rights Reserved. Oracle Corporation.
* Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
*
* @author Brian Oliver
*/
public class NativeApplicationProcess implements ApplicationProcess
{
/**
* The underlying representation of the {@link ApplicationProcess}.
*/
protected Process m_process;
/**
* Construct a {@link NativeApplicationProcess} based on a Java {@link Process}.
*
* @param process the Java {@link Process}
*/
public NativeApplicationProcess(Process process)
{
if (process == null)
{
throw new NullPointerException("The provided process can't be null");
}
else
{
m_process = process;
}
}
/**
* {@inheritDoc}
*/
@Override
public void destroy()
{
m_process.destroy();
}
/**
* {@inheritDoc}
*/
@Override
public long getId()
{
long id = -1;
try
{
if (m_process.getClass().getSimpleName().equals("UNIXProcess"))
{
final Class> clazz = m_process.getClass();
final Field field = clazz.getDeclaredField("pid");
field.setAccessible(true);
Object oPid = field.get(m_process);
if (oPid instanceof Number)
{
id = ((Number) oPid).longValue();
}
else if (oPid instanceof String)
{
id = Long.parseLong((String) oPid);
}
}
// Windows processes, i.e. Win32Process or ProcessImpl
else
{
RuntimeMXBean runtimeMXBean = ManagementFactory.getRuntimeMXBean();
final String sProcess = runtimeMXBean.getName();
final int iPID = sProcess.indexOf('@');
if (iPID > 0)
{
String sPID = sProcess.substring(0, iPID);
id = Long.parseLong(sPID);
}
}
}
catch (SecurityException e)
{
}
catch (NoSuchFieldException e)
{
}
catch (IllegalArgumentException e)
{
}
catch (IllegalAccessException e)
{
}
return id;
}
/**
* {@inheritDoc}
*/
@Override
public int exitValue()
{
return m_process.exitValue();
}
/**
* {@inheritDoc}
*/
@Override
public InputStream getErrorStream()
{
return m_process.getErrorStream();
}
/**
* {@inheritDoc}
*/
@Override
public InputStream getInputStream()
{
return m_process.getInputStream();
}
/**
* {@inheritDoc}
*/
@Override
public OutputStream getOutputStream()
{
return m_process.getOutputStream();
}
/**
* {@inheritDoc}
*/
@Override
public int waitFor() throws InterruptedException
{
return m_process.waitFor();
}
}