Author: Christoph Ziegenberg (christoph@ziegenberg.com)
Author: Thomas Müller (t_mueller_stolzenhain@yahoo.de)
Esempio n. 1
0
 /**
  * Gets the relevant part (array of settings) of the ini file for a given pattern.
  *
  * @param  string $pattern
  * @return array
  */
 private function getIniPart($pattern)
 {
     $pattern = strtolower($pattern);
     $patternhash = Pattern::getHashForParts($pattern);
     $subkey = SubKey::getIniPartCacheSubKey($patternhash);
     if (!$this->cache->hasItem('browscap.iniparts.' . $subkey, true)) {
         $this->logger->debug('cache key "browscap.iniparts.' . $subkey . '" not found');
         return [];
     }
     $success = null;
     $file = $this->cache->getItem('browscap.iniparts.' . $subkey, true, $success);
     if (!$success) {
         $this->logger->debug('cache key "browscap.iniparts.' . $subkey . '" not found');
         return [];
     }
     if (!is_array($file) || !count($file)) {
         $this->logger->debug('cache key "browscap.iniparts.' . $subkey . '" was empty');
         return [];
     }
     $propertyFormatter = new PropertyFormatter(new PropertyHolder());
     $return = [];
     foreach ($file as $buffer) {
         list($tmpBuffer, $patterns) = explode("\t", $buffer, 2);
         if ($tmpBuffer === $patternhash) {
             $return = json_decode($patterns, true);
             foreach (array_keys($return) as $property) {
                 $return[$property] = $propertyFormatter->formatPropertyValue($return[$property], $property);
             }
             break;
         }
     }
     return $return;
 }
Esempio n. 2
0
 /**
  *
  */
 public function testGetAllPatternCacheSubkeys()
 {
     $result = SubKey::getAllPatternCacheSubkeys();
     self::assertInternalType('array', $result);
     self::assertSame(256, count($result));
 }
Esempio n. 3
0
 /**
  * Creates new pattern cache files
  *
  * @param string $content
  *
  * @return \Generator
  */
 public function createPatterns($content)
 {
     // get all relevant patterns from the INI file
     // - containing "*" or "?"
     // - not containing "*" or "?", but not having a comment
     preg_match_all('/(?<=\\[)(?:[^\\r\\n]*[?*][^\\r\\n]*)(?=\\])|(?<=\\[)(?:[^\\r\\n*?]+)(?=\\])(?![^\\[]*Comment=)/m', $content, $matches);
     if (empty($matches[0]) || !is_array($matches[0])) {
         (yield []);
         return;
     }
     $quoterHelper = new Quoter();
     $matches = $matches[0];
     usort($matches, [$this, 'compareBcStrings']);
     // build an array to structure the data. this requires some memory, but we need this step to be able to
     // sort the data in the way we need it (see below).
     $data = [];
     foreach ($matches as $pattern) {
         if ('GJK_Browscap_Version' === $pattern) {
             continue;
         }
         $pattern = strtolower($pattern);
         $patternhash = Pattern::getHashForPattern($pattern, false);
         $tmpLength = Pattern::getPatternLength($pattern);
         // special handling of default entry
         if ($tmpLength === 0) {
             $patternhash = str_repeat('z', 32);
         }
         if (!isset($data[$patternhash])) {
             $data[$patternhash] = [];
         }
         if (!isset($data[$patternhash][$tmpLength])) {
             $data[$patternhash][$tmpLength] = [];
         }
         $pattern = $quoterHelper->pregQuote($pattern);
         // Check if the pattern contains digits - in this case we replace them with a digit regular expression,
         // so that very similar patterns (e.g. only with different browser version numbers) can be compressed.
         // This helps to speed up the first (and most expensive) part of the pattern search a lot.
         if (strpbrk($pattern, '0123456789') !== false) {
             $compressedPattern = preg_replace('/\\d/', '[\\d]', $pattern);
             if (!in_array($compressedPattern, $data[$patternhash][$tmpLength])) {
                 $data[$patternhash][$tmpLength][] = $compressedPattern;
             }
         } else {
             $data[$patternhash][$tmpLength][] = $pattern;
         }
     }
     unset($matches);
     // sorting of the data is important to check the patterns later in the correct order, because
     // we need to check the most specific (=longest) patterns first, and the least specific
     // (".*" for "Default Browser")  last.
     //
     // sort by pattern start to group them
     ksort($data);
     // and then by pattern length (longest first)
     foreach (array_keys($data) as $key) {
         krsort($data[$key]);
     }
     // write optimized file (grouped by the first character of the has, generated from the pattern
     // start) with multiple patterns joined by tabs. this is to speed up loading of the data (small
     // array with pattern strings instead of an large array with single patterns) and also enables
     // us to search for multiple patterns in one preg_match call for a fast first search
     // (3-10 faster), followed by a detailed search for each single pattern.
     $contents = [];
     foreach ($data as $patternhash => $tmpEntries) {
         if (empty($tmpEntries)) {
             continue;
         }
         $subkey = SubKey::getPatternCacheSubkey($patternhash);
         if (!isset($contents[$subkey])) {
             $contents[$subkey] = [];
         }
         foreach ($tmpEntries as $tmpLength => $tmpPatterns) {
             if (empty($tmpPatterns)) {
                 continue;
             }
             $chunks = array_chunk($tmpPatterns, self::COUNT_PATTERN);
             foreach ($chunks as $chunk) {
                 $contents[$subkey][] = $patternhash . "\t" . $tmpLength . "\t" . implode("\t", $chunk);
             }
         }
     }
     unset($data);
     $subkeys = SubKey::getAllPatternCacheSubkeys();
     foreach ($contents as $subkey => $content) {
         $subkey = (string) $subkey;
         (yield [$subkey => $content]);
         unset($subkeys[$subkey]);
     }
     foreach (array_keys($subkeys) as $subkey) {
         $subkey = (string) $subkey;
         (yield [$subkey => []]);
     }
 }
Esempio n. 4
0
 /**
  * Gets some possible patterns that have to be matched against the user agent. With the given
  * user agent string, we can optimize the search for potential patterns:
  * - We check the first characters of the user agent (or better: a hash, generated from it)
  * - We compare the length of the pattern with the length of the user agent
  *   (the pattern cannot be longer than the user agent!)
  *
  * @param string $userAgent
  *
  * @return \Generator
  */
 public function getPatterns($userAgent)
 {
     $starts = Pattern::getHashForPattern($userAgent, true);
     $length = strlen($userAgent);
     // add special key to fall back to the default browser
     $starts[] = str_repeat('z', 32);
     // get patterns, first for the given browser and if that is not found,
     // for the default browser (with a special key)
     foreach ($starts as $tmpStart) {
         $tmpSubkey = SubKey::getPatternCacheSubkey($tmpStart);
         if (!$this->cache->hasItem('browscap.patterns.' . $tmpSubkey, true)) {
             $this->logger->debug('cache key "browscap.patterns.' . $tmpSubkey . '" not found');
             continue;
         }
         $success = null;
         $file = $this->cache->getItem('browscap.patterns.' . $tmpSubkey, true, $success);
         if (!$success) {
             $this->logger->debug('cache key "browscap.patterns.' . $tmpSubkey . '" not found');
             continue;
         }
         if (!is_array($file) || !count($file)) {
             $this->logger->debug('cache key "browscap.patterns.' . $tmpSubkey . '" was empty');
             continue;
         }
         $found = false;
         foreach ($file as $buffer) {
             list($tmpBuffer, $len, $patterns) = explode("\t", $buffer, 3);
             if ($tmpBuffer === $tmpStart) {
                 if ($len <= $length) {
                     (yield trim($patterns));
                 }
                 $found = true;
             } elseif ($found === true) {
                 break;
             }
         }
     }
     (yield '');
 }