<?php

namespace App\Sensor;

use App\SensorConfig;
use App\ServerInfo;

/**
 * Uses DMI info to extract CPU name.
 *
 * @author tibo
 */
class ServerInfoCPUName extends ServerInfoParser
{
    public function analyzeString(string $string, ServerInfo $info)
    {
        $cpuinfo = $info->cpuinfo;
        
        $REGEX = "/\tVersion: (.*)/m";
        $matches = [];
        if (preg_match($REGEX, $string, $matches) === 1) {
            $cpuinfo["name"] = $matches[1];
        }
        
        $info->cpuinfo = $cpuinfo;
    }

    public function config(): SensorConfig
    {
        return new SensorConfig("cpu-name", "cpu-dmi");
    }
}