Mega Code Archive

 
Categories / Android / Hardware
 

Get Memory Total

//package org.anddev.andengine.util; import java.io.IOException; import java.io.InputStream; import java.lang.reflect.Method; import java.util.Scanner; import java.util.regex.MatchResult; import android.content.Context; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; import android.content.pm.PackageManager.NameNotFoundException; import android.os.Build; /**  * (c) 2010 Nicolas Gramlich   * (c) 2011 Zynga Inc.  *   * @author Nicolas Gramlich  * @since 15:50:31 - 14.07.2010  */ class SystemUtils {   private static final String BOGOMIPS_PATTERN = "BogoMIPS[\\s]*:[\\s]*(\\d+\\.\\d+)[\\s]*\n";   private static final String MEMTOTAL_PATTERN = "MemTotal[\\s]*:[\\s]*(\\d+)[\\s]*kB\n";   private static final String MEMFREE_PATTERN = "MemFree[\\s]*:[\\s]*(\\d+)[\\s]*kB\n";   /**    * @return in kiloBytes.    * @throws SystemUtilsException    */   public static int getMemoryTotal() throws Exception {     final MatchResult matchResult = SystemUtils.matchSystemFile("/proc/meminfo", MEMTOTAL_PATTERN, 1000);     try {       if(matchResult.groupCount() > 0) {         return Integer.parseInt(matchResult.group(1));       } else {         throw new Exception();       }     } catch (final NumberFormatException e) {       throw new Exception(e);     }   }   private static MatchResult matchSystemFile(final String pSystemFile, final String pPattern, final int pHorizon) throws Exception {     InputStream in = null;     try {       final Process process = new ProcessBuilder(new String[] { "/system/bin/cat", pSystemFile }).start();       in = process.getInputStream();       final Scanner scanner = new Scanner(in);       final boolean matchFound = scanner.findWithinHorizon(pPattern, pHorizon) != null;       if(matchFound) {         return scanner.match();       } else {         throw new Exception();       }     } catch (final IOException e) {       throw new Exception(e);     }           } }