How to use phodevi_osx_parser class

Best Phoronix-test-suite code snippet using phodevi_osx_parser

phodevi_memory.php

Source: phodevi_memory.php Github

copy

Full Screen

...41 $mem_manufacturer = false;42 $mem_part = false;43 if(phodevi::is_macosx())44 {45 $mem_size = phodevi_osx_parser::read_osx_system_profiler('SPMemoryDataType', 'Size', true, array('Empty'));46 $mem_speed = phodevi_osx_parser::read_osx_system_profiler('SPMemoryDataType', 'Speed');47 $mem_type = phodevi_osx_parser::read_osx_system_profiler('SPMemoryDataType', 'Type');48 }49 else if(phodevi::is_solaris())50 {51 $mem_size = phodevi_solaris_parser::read_sun_ddu_dmi_info('MemoryDevice*,InstalledSize');52 $mem_speed = phodevi_solaris_parser::read_sun_ddu_dmi_info('MemoryDevice*,Speed');53 $mem_type = phodevi_solaris_parser::read_sun_ddu_dmi_info('MemoryDevice*,MemoryDeviceType');54 if(is_array($mem_speed) && count($mem_speed) > 0)55 {56 $mem_speed = array_shift($mem_speed);57 }58 $mem_speed = str_replace('MHZ', 'MHz', $mem_speed);59 }60 else if(phodevi::is_windows())61 {62 $mem_size = phodevi_windows_parser::read_cpuz('DIMM #', 'Size', true);63 foreach($mem_size as $key => &$individual_size)64 {65 $individual_size = pts_arrays::first_element(explode(' ', $individual_size));66 if(!is_numeric($individual_size))67 {68 unset($mem_size[$key]);69 } 70 }71 $mem_type = phodevi_windows_parser::read_cpuz('Memory Type', null);72 $mem_speed = intval(phodevi_windows_parser::read_cpuz('Memory Frequency', null)) . 'MHz';73 }74 else if(phodevi::is_linux())75 {76 $mem_size = phodevi_linux_parser::read_dmidecode('memory', 'Memory Device', 'Size', false, array('Not Installed', 'No Module Installed', 'Undefined'));77 $mem_speed = phodevi_linux_parser::read_dmidecode('memory', 'Memory Device', 'Configured Clock Speed', true, array('Unknown', 'Undefined'));78 if($mem_speed == false)79 {80 /​/​ "Speed" only reports stock frequency where "Configured Clock Speed" should report the over/​underclocked memory81 $mem_speed = phodevi_linux_parser::read_dmidecode('memory', 'Memory Device', 'Speed', true, array('Unknown', 'Undefined'));82 }83 $mem_type = phodevi_linux_parser::read_dmidecode('memory', 'Memory Device', 'Type', true, array('Unknown', 'Other', 'Flash', 'Undefined'));84 $mem_manufacturer = phodevi_linux_parser::read_dmidecode('memory', 'Memory Device', 'Manufacturer', true, array('Unknown', 'Undefined'));85 $mem_part = phodevi_linux_parser::read_dmidecode('memory', 'Memory Device', 'Part Number', true, array('Unknown', 'Undefined'));86 }87 if(is_array($mem_type))88 {89 $mem_type = array_pop($mem_type);90 }91 if($mem_size != false && (!is_array($mem_size) || count($mem_size) != 0))92 {93 for($i = 0; $i < count($mem_size); $i++)94 {95 switch(substr($mem_size[$i], -1))96 {97 case 'K':98 /​/​ looks like sometimes Solaris now reports flash chip as memory. its string ends with K99 unset($mem_size[$i]);100 unset($mem_speed[$i]);101 unset($mem_type[$i]);102 break;103 case 'M':104 /​/​ report megabytes as MB, just not M, as on Solaris105 $mem_size[$i] .= 'B';106 break;107 case 'B':108 if(strtolower(substr($mem_size[$i], -2, 1)) == 'k')109 {110 /​/​ some hardware on Linux via dmidecode reports flash chips111 unset($mem_size[$i]);112 /​/​unset($mem_speed[$i]);113 /​/​unset($mem_type[$i]);114 }115 break;116 }117 }118 foreach($mem_size as $i => $mem_stick)119 {120 if(!is_numeric(substr($mem_stick, 0, 3)) && stripos($mem_stick, 'GB') == false)121 {122 /​/​ If the memory size isn't at least three digits (basically 128MB+), chances are something is wrong, i.e. reporting flash chip from dmidecode, so get rid of it.123 unset($mem_size[$i]);124 }125 }126 $mem_count = count($mem_size);127 if(!empty($mem_type))128 {129 if(($cut = strpos($mem_type, ' ')) > 0)130 {131 $mem_type = substr($mem_type, 0, $cut);132 }133 if(!in_array($mem_type, array('Other')) && (pts_strings::keep_in_string($mem_type, pts_strings::CHAR_NUMERIC | pts_strings::CHAR_LETTER) == $mem_type || phodevi::is_windows()))134 {135 $mem_prefix = $mem_type;136 }137 }138 else139 {140 $mem_prefix = null;141 }142 if(!empty($mem_speed))143 {144 if(($cut = strpos($mem_speed, ' (')) > 0)145 {146 $mem_speed = substr($mem_speed, 0, $cut);147 }148 if(!empty($mem_prefix))149 {150 $mem_prefix .= '-';151 }152 $mem_prefix .= str_replace(' ', null, $mem_speed);153 }154 /​/​ TODO: Allow a combination of both functions below, so like 2 x 2GB + 3 x 1GB DDR2-800155 if($mem_count > 1 && count(array_unique($mem_size)) > 1)156 {157 $mem_string = implode(' + ', $mem_size) . ' ' . $mem_prefix;158 }159 else160 {161 if(($mem_count * $mem_size[0]) != phodevi::read_property('memory', 'capacity') && phodevi::read_property('memory', 'capacity') % $mem_size[0] == 0)162 {163 /​/​ This makes sure the correct number of RAM modules is reported...164 /​/​ On at least Linux with dmidecode on an AMD Opteron multi-socket setup it's only showing the data for one socket165 if($mem_size[0] < 1024)166 {167 $mem_size[0] *= 1024;168 }169 $mem_count = phodevi::read_property('memory', 'capacity') /​ $mem_size[0];170 }171 $product_string = null;172 if(isset($mem_manufacturer[2]) && pts_strings::is_alpha($mem_manufacturer[0]) && stripos($mem_manufacturer, 'manufacturer') === false && stripos($mem_manufacturer, 'part') === false && stripos($mem_manufacturer, 'module') === false && stripos($mem_manufacturer, 'dimm') === false && isset($mem_manufacturer[2]) && pts_strings::is_alpha($mem_manufacturer))173 {174 $product_string .= ' ' . $mem_manufacturer;175 }176 if(($x = strpos($mem_part, '/​')) !== false)177 {178 /​/​ Cleanup/​shorten strings like KHX2133C13S4/​4G179 $mem_part = substr($mem_part, 0, $x);180 }181 if(isset($mem_part[2]) && stripos($mem_part, 'part') === false && stripos($mem_part, 'module') === false && stripos($mem_part, 'dimm') === false && substr($mem_part, 0, 2) != '0x' && !isset($mem_part[24]) && pts_strings::is_alnum($mem_part))182 {183 $product_string .= ' ' . $mem_part;184 }185 if(is_numeric($mem_size[0]) && stripos($mem_size[0], 'b') === false)186 {187 if($mem_size >= 1024)188 {189 $mem_size[0] .= ' MB';190 }191 else192 {193 $mem_size[0] .= ' GB';194 }195 }196 $mem_string = $mem_count . ' x ' . $mem_size[0] . ' ' . $mem_prefix . $product_string;197 }198 }199 if(empty($mem_string))200 {201 $mem_string = phodevi::read_property('memory', 'capacity');202 if($mem_string != null)203 {204 $mem_string .= 'MB';205 }206 }207 return trim($mem_string);208 }209 public static function memory_capacity()210 {211 /​/​ Returns physical memory capacity212 if(isset(phodevi::$vfs->meminfo))213 {214 $info = phodevi::$vfs->meminfo;215 $info = substr($info, strpos($info, 'MemTotal:') + 9);216 $info = intval(trim(substr($info, 0, strpos($info, 'kB'))));217 $info = floor($info /​ 1024);218 if(is_numeric($info) && $info > 950)219 {220 if($info > 4608)221 {222 $info = ceil($info /​ 1024) * 1024;223 }224 else if($info > 1536)225 {226 $info = ceil($info /​ 512) * 512;227 }228 else229 {230 $info = ceil($info /​ 256) * 256;231 }232 }233 }234 else if(phodevi::is_solaris())235 {236 $info = shell_exec('prtconf 2>&1 | grep Memory');237 $info = substr($info, strpos($info, ':') + 2);238 $info = substr($info, 0, strpos($info, 'Megabytes'));239 }240 else if(phodevi::is_bsd())241 {242 $mem_size = phodevi_bsd_parser::read_sysctl('hw.physmem');243 if($mem_size == false)244 {245 $mem_size = phodevi_bsd_parser::read_sysctl('hw.realmem');246 }247 $info = ceil(floor($mem_size /​ 1048576) /​ 256) * 256;248 }249 else if(phodevi::is_macosx())250 {251 $info = phodevi_osx_parser::read_osx_system_profiler('SPHardwareDataType', 'Memory');252 $info = explode(' ', $info);253 $info = (isset($info[1]) && $info[1] == 'GB' ? $info[0] * 1024 : $info[0]);254 }255 else if(phodevi::is_windows())256 {257 $info = phodevi_windows_parser::read_cpuz('Memory Size', null);258 if($info != null)259 {260 if(($e = strpos($info, ' MBytes')) !== false)261 {262 $info = substr($info, 0, $e);263 }264 $info = trim($info);265 }...

Full Screen

Full Screen

phodevi_osx_parser.php

Source: phodevi_osx_parser.php Github

copy

Full Screen

...3 Phoronix Test Suite4 URLs: http:/​/​www.phoronix.com, http:/​/​www.phoronix-test-suite.com/​5 Copyright (C) 2009 - 2010, Phoronix Media6 Copyright (C) 2009 - 2010, Michael Larabel7 phodevi_osx_parser.php: General parsing functions specific to Mac OS X8 This program is free software; you can redistribute it and/​or modify9 it under the terms of the GNU General Public License as published by10 the Free Software Foundation; either version 3 of the License, or11 (at your option) any later version.12 This program is distributed in the hope that it will be useful,13 but WITHOUT ANY WARRANTY; without even the implied warranty of14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15 GNU General Public License for more details.16 You should have received a copy of the GNU General Public License17 along with this program. If not, see <http:/​/​www.gnu.org/​licenses/​>.18*/​19class phodevi_osx_parser20{21 public static function read_osx_system_profiler($data_type, $object, $multiple_objects = false, $ignore_values = array())22 {23 $value = ($multiple_objects ? array() : false);24 if(pts_client::executable_in_path('system_profiler'))25 {26 $info = trim(shell_exec('system_profiler ' . $data_type . ' 2>&1'));27 $lines = explode("\n", $info);28 for($i = 0; $i < count($lines) && ($value == false || $multiple_objects); $i++)29 {30 $line = pts_strings::colon_explode($lines[$i]);31 if(isset($line[0]) == false)32 {33 continue;...

Full Screen

Full Screen

Blogs

Check out the latest blogs from LambdaTest on this topic:

Pair testing strategy in an Agile environment

Pair testing can help you complete your testing tasks faster and with higher quality. But who can do pair testing, and when should it be done? And what form of pair testing is best for your circumstance? Check out this blog for more information on how to conduct pair testing to optimize its benefits.

Best 23 Web Design Trends To Follow In 2023

Having a good web design can empower business and make your brand stand out. According to a survey by Top Design Firms, 50% of users believe that website design is crucial to an organization’s overall brand. Therefore, businesses should prioritize website design to meet customer expectations and build their brand identity. Your website is the face of your business, so it’s important that it’s updated regularly as per the current web design trends.

An Interactive Guide To CSS Hover Effects

Building a website is all about keeping the user experience in mind. Ultimately, it’s about providing visitors with a mind-blowing experience so they’ll keep coming back. One way to ensure visitors have a great time on your site is to add some eye-catching text or image animations.

How To Use Playwright For Web Scraping with Python

In today’s data-driven world, the ability to access and analyze large amounts of data can give researchers, businesses & organizations a competitive edge. One of the most important & free sources of this data is the Internet, which can be accessed and mined through web scraping.

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Phoronix-test-suite automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used methods in phodevi_osx_parser

Run Selenium Automation Tests on LambdaTest Cloud Grid

Trigger Selenium automation tests on a cloud-based Grid of 3000+ real browsers and operating systems.

Test now for Free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful