Process.java
Go to the documentation of this file.
00001 /*
00002  * Copyright (C) 2011 Google Inc.
00003  * 
00004  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
00005  * use this file except in compliance with the License. You may obtain a copy of
00006  * the License at
00007  * 
00008  * http://www.apache.org/licenses/LICENSE-2.0
00009  * 
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
00012  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
00013  * License for the specific language governing permissions and limitations under
00014  * the License.
00015  */
00016 
00017 package org.ros.internal.system;
00018 
00019 import java.lang.management.ManagementFactory;
00020 
00026 public class Process {
00027   
00028   private Process() {
00029     // Utility class.
00030   }
00031   
00036   public static int getPid() {
00037     // NOTE(kwc): Java has no standard way of getting PID. MF.getName()
00038     // returns '1234@localhost'.
00039     try {
00040       String mxName = ManagementFactory.getRuntimeMXBean().getName();
00041       int idx = mxName.indexOf('@');
00042       if (idx > 0) {
00043         try {
00044           return Integer.parseInt(mxName.substring(0, idx));
00045         } catch (NumberFormatException e) {
00046           return 0;
00047         }
00048       }
00049     } catch (NoClassDefFoundError unused) {
00050       // Android does not support ManagementFactory. Try to get the PID on
00051       // Android.
00052       try {
00053         return (Integer) Class.forName("android.os.Process").getMethod("myPid").invoke(null);
00054       } catch (Exception unused1) {
00055         // Ignore this exception and fall through to the
00056         // UnsupportedOperationException.
00057       }
00058     }
00059     throw new UnsupportedOperationException();
00060   }
00061 }


rosjava_core
Author(s):
autogenerated on Wed Aug 26 2015 16:06:49