Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2010-2013 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. 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 at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* 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]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.enterprise.registration.impl.environment;
// The Service Tags team maintains the latest version of the implementation
// for system environment data collection. JDK will include a copy of
// the most recent released version for a JDK release. We rename
// the package to com.sun.servicetag so that the Sun Connection
// product always uses the latest version from the com.sun.scn.servicetags
// package. JDK and users of the com.sun.servicetag API
// (e.g. NetBeans and SunStudio) will use the version in JDK.
import java.io.*;
import java.util.Set;
import java.util.HashSet;
import java.util.Locale;
/**
* Solaris implementation of the SystemEnvironment class.
*/
class SolarisSystemEnvironment extends SystemEnvironment {
private static final int SN = 1;
private static final int SYS = 2;
private static final int CPU = 3;
private static final int MODEL = 4;
private String kstatCpuInfo = null;
SolarisSystemEnvironment() {
setHostId(getCommandOutput("/usr/bin/hostid"));
setSystemModel(getSolarisModel());
setSystemManufacturer(getSolarisSystemManufacturer());
setCpuManufacturer(getSolarisCpuManufacturer());
setSerialNumber(getSolarisSN());
setPhysMem(getSolarisPhysMem());
setSockets(getSolarisSockets());
setCores(getSolarisCores());
setVirtCpus(getSolarisVirtCpus());
setCpuName(getSolarisCpuName());
setClockRate(getSolarisClockRate());
}
private String getSolarisClockRate() {
String data = getSolarisKstatCpuInfo();
String lines[] = data.split("\n");
String token = "clock_MHz";
for (int i=0; i set = new HashSet();
String lines[] = data.split("\n");
String coreIdToken = "core_id";
String coreId = "";
String chipIdToken = "chip_id";
String chipId = "";
for (int i=0; i set = new HashSet();
String lines[] = data.split("\n");
String token = "chip_id";
for (int i=0; i 0) {
String[] lines = tmp.split("\n");
if (MODEL <= lines.length) {
return lines[MODEL-1] + "::"
+ getCommandOutput("/usr/bin/uname", "-v");
}
}
if ("sparc".equalsIgnoreCase(System.getProperty("os.arch"))) {
return getCommandOutput("/usr/bin/uname", "-i") + "::"
+ getCommandOutput("/usr/bin/uname", "-v");
} else {
String model = getSmbiosData("1", "Product: ");
if (model == null || model.trim().equals("")) {
model = getCommandOutput("/usr/bin/uname", "-i");
}
if (model == null) {
model = "";
}
return model.trim() + "::"
+ getCommandOutput("/usr/bin/uname", "-v");
}
}
/**
* Tries to obtain the cpu manufacturer.
* @return The cpu manufacturer (an empty string if not found or an error occurred)
*/
private String getSolarisCpuManufacturer() {
String tmp = getFileContent("/var/run/psn");
if (tmp.length() > 0) {
String[] lines = tmp.split("\n");
if (CPU <= lines.length) {
return lines[CPU-1];
}
}
// not fully accurate, this could be another manufacturer (fujitsu for example)
if ("sparc".equalsIgnoreCase(System.getProperty("os.arch"))) {
return "Sun Microsystems, Inc";
}
// if we're here, then we'll try smbios (type 4)
return getSmbiosData("4", "Manufacturer: ");
}
/**
* Tries to obtain the system manufacturer.
* @return The system manufacturer (an empty string if not found or an error occurred)
*/
private String getSolarisSystemManufacturer() {
String tmp = getFileContent("/var/run/psn");
if (tmp.length() > 0) {
String[] lines = tmp.split("\n");
if (SYS <= lines.length) {
return lines[SYS-1];
}
}
// not fully accurate, this could be another manufacturer (fujitsu for example)
if ("sparc".equalsIgnoreCase(System.getProperty("os.arch"))) {
if (getCommandOutput("/usr/bin/uname", "-m").equals("sun4us")) {
return "Fujitsu";
}
return "Sun Microsystems, Inc";
}
// if we're here, then we'll try smbios (type 1)
return getSmbiosData("1", "Manufacturer: ");
}
/**
* Tries to obtain the serial number.
* @return The serial number (empty string if not found or an error occurred)
*/
private String getSolarisSN() {
// try to read from the psn file if it exists
String tmp = getFileContent("/var/run/psn");
if (tmp.length() > 0) {
String[] lines = tmp.split("\n");
if (SN <= lines.length) {
return lines[SN-1];
}
}
// if we're here, then we'll try sneep
String tmpSN = getSneepSN();
if (tmpSN.length() > 0) {
return tmpSN;
}
// if we're here, then we'll try smbios (type 1)
tmpSN = getSmbiosData("1", "Serial Number: ");
if (tmpSN.length() > 0) {
return tmpSN;
}
// if we're here, then we'll try smbios (type 3)
tmpSN = getSmbiosData("3", "Serial Number: ");
if (tmpSN.length() > 0) {
return tmpSN;
}
if ("sparc".equalsIgnoreCase(System.getProperty("os.arch"))) {
tmpSN = getSNViaPrtfruX();
if (tmpSN.length() > 0) {
return tmpSN;
}
tmpSN = getSNViaPrtfru();
if (tmpSN.length() > 0) {
return tmpSN;
}
}
// give up and return
return "";
}
// Sample smbios output segment:
// ID SIZE TYPE
// 1 150 SMB_TYPE_SYSTEM (system information)
//
// Manufacturer: Sun Microsystems
// Product: Sun Fire X4600
// Version: To Be Filled By O.E.M.
// Serial Number: 00:14:4F:45:0C:2A
private String getSmbiosData(String type, String target) {
String output = getCommandOutput("/usr/sbin/smbios", "-t", type);
for (String s : output.split("\n")) {
if (s.contains(target)) {
int indx = s.indexOf(target) + target.length();
if (indx < s.length()) {
String tmp = s.substring(indx).trim();
String lowerCaseStr = tmp.toLowerCase(Locale.US);
if (!lowerCaseStr.startsWith("not available")
&& !lowerCaseStr.startsWith("to be filled by o.e.m")) {
return tmp;
}
}
}
}
return "";
}
private String getSneepSN() {
String basedir = getCommandOutput("pkgparam","SUNWsneep","BASEDIR");
File f = new File(basedir + "/bin/sneep");
if (f.exists()) {
String sneepSN = getCommandOutput(basedir + "/bin/sneep");
if (sneepSN.equalsIgnoreCase("unknown")) {
return "";
} else {
return sneepSN;
}
} else {
return "";
}
}
private String getSNViaPrtfruX() {
String data = getCommandOutput("/usr/sbin/prtfru", "-x");
boolean FRUTREE_FLAG = false;
boolean FRUNAME_FLAG = false;
boolean MB_LABEL_FLAG = false;
boolean SYSTEM_BOARD_FLAG = false;
String lines[] = data.split("\n");
for (int i=0; i 0) {
return vals[0].trim();
}
break;
}
}
if (line.indexOf("") != -1) {
FRUTREE_FLAG = false;
FRUNAME_FLAG = false;
SYSTEM_BOARD_FLAG = false;
}
if (FRUNAME_FLAG && line.indexOf("") != -1 ) {
SYSTEM_BOARD_FLAG = true;
}
if (FRUTREE_FLAG && line.indexOf("") != -1 ) {
FRUNAME_FLAG = true;
}
if (line.indexOf("") != -1) {
FRUTREE_FLAG = true;
}
}
return "";
}
private String getSNViaPrtfru() {
String data = getCommandOutput("/usr/sbin/prtfru");
boolean CHASSIS_FLAG = false;
String lines[] = data.split("\n");
for (int i=0; i