bloritsch 02/05/02 09:10:24
Added: util/src/java/org/apache/avalon/excalibur/util/system
WindowsXP.java WindowsXP.java~
Log:
new type of CPU Parser
Revision Changes Path
1.1
jakarta-avalon-excalibur/util/src/java/org/apache/avalon/excalibur/util/system/WindowsXP.java
Index: WindowsXP.java
===================================================================
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.avalon.excalibur.util.system;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import org.apache.avalon.excalibur.util.CPUParser;
/**
* Parses the Windows 2000 environment--the same class should work for other
* Windows versions, but I only have one to test.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Berin Loritsch</a>
* @version CVS $Revision: 1.1 $ $Date: 2002/05/02 16:10:23 $
*/
public final class WindowsXP implements CPUParser
{
private final int m_processors;
private final String m_cpuInfo;
public WindowsXP()
{
int procs = 1;
String info = "";
try
{
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec( "cmd.exe /C echo %NUMBER_OF_PROCESSORS%"
);
BufferedReader reader = new BufferedReader( new InputStreamReader(
proc.getInputStream() ) );
String numProcs = reader.readLine();
proc = rt.exec( "cmd.exe /C echo %PROCESSOR_IDENTIFIER%" );
reader = new BufferedReader( new InputStreamReader(
proc.getInputStream() ) );
info = reader.readLine();
procs = Integer.parseInt( numProcs );
}
catch( Exception e )
{
}
m_processors = procs;
m_cpuInfo = info;
}
/**
* Return the number of processors available on the machine
*/
public int numProcessors()
{
return m_processors;
}
/**
* Return the cpu info for the processors (assuming symetric
multiprocessing
* which means that all CPUs are identical). The format is:
*
* ${arch} family ${family} Model ${model} Stepping ${stepping},
${identifier}
*/
public String cpuInfo()
{
return m_cpuInfo;
}
}
1.1
jakarta-avalon-excalibur/util/src/java/org/apache/avalon/excalibur/util/system/WindowsXP.java~
Index: WindowsXP.java~
===================================================================
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.avalon.excalibur.util.system;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import org.apache.avalon.excalibur.util.CPUParser;
/**
* Parses the Windows 2000 environment--the same class should work for other
* Windows versions, but I only have one to test.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Berin Loritsch</a>
* @version CVS $Revision: 1.1 $ $Date: 2002/05/02 16:10:23 $
*/
public final class WindowsNT implements CPUParser
{
private final int m_processors;
private final String m_cpuInfo;
public WindowsNT()
{
int procs = 1;
String info = "";
try
{
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec( "cmd.exe /C echo %NUMBER_OF_PROCESSORS%"
);
BufferedReader reader = new BufferedReader( new InputStreamReader(
proc.getInputStream() ) );
String numProcs = reader.readLine();
proc = rt.exec( "cmd.exe /C echo %PROCESSOR_IDENTIFIER%" );
reader = new BufferedReader( new InputStreamReader(
proc.getInputStream() ) );
info = reader.readLine();
procs = Integer.parseInt( numProcs );
}
catch( Exception e )
{
}
m_processors = procs;
m_cpuInfo = info;
}
/**
* Return the number of processors available on the machine
*/
public int numProcessors()
{
return m_processors;
}
/**
* Return the cpu info for the processors (assuming symetric
multiprocessing
* which means that all CPUs are identical). The format is:
*
* ${arch} family ${family} Model ${model} Stepping ${stepping},
${identifier}
*/
public String cpuInfo()
{
return m_cpuInfo;
}
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>