-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove global configuration resolver (#1118)
Exposing it through Globals can cause a race condition. If something (eg, a contrib module) retrieves the configuration resolver from Globals too early during autoloading, then it causes the rest of the objects from Globals to be initialized. This can happen before all required modules have been registered (depending on autoload->files execution order, which is variable). Instead, create a simple API config resolver which does the basics of what the SDK one does (without all the type checking and validation).
- Loading branch information
Showing
12 changed files
with
205 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace OpenTelemetry\API\Instrumentation; | ||
|
||
class ConfigurationResolver implements ConfigurationResolverInterface | ||
{ | ||
public function has(string $name): bool | ||
{ | ||
return $this->getVariable($name) !== null; | ||
} | ||
|
||
public function getString(string $name): ?string | ||
{ | ||
return $this->getVariable($name); | ||
} | ||
|
||
public function getBoolean(string $name): ?bool | ||
{ | ||
$value = $this->getVariable($name); | ||
if ($value === null) { | ||
return null; | ||
} | ||
|
||
return ($value === 'true'); | ||
} | ||
|
||
public function getInt(string $name): ?int | ||
{ | ||
$value = $this->getVariable($name); | ||
if ($value === null) { | ||
return null; | ||
} | ||
if (filter_var($value, FILTER_VALIDATE_INT) === false) { | ||
//log warning | ||
return null; | ||
} | ||
|
||
return (int) $value; | ||
} | ||
|
||
public function getList(string $name): array | ||
{ | ||
$value = $this->getVariable($name); | ||
if ($value === null) { | ||
return []; | ||
} | ||
|
||
return explode(',', $value); | ||
} | ||
|
||
private function getVariable(string $name): ?string | ||
{ | ||
$value = $_SERVER[$name] ?? null; | ||
if ($value !== false && !self::isEmpty($value)) { | ||
assert(is_string($value)); | ||
|
||
return $value; | ||
} | ||
$value = getenv($name); | ||
if ($value !== false && !self::isEmpty($value)) { | ||
return $value; | ||
} | ||
$value = ini_get($name); | ||
if ($value !== false && !self::isEmpty($value)) { | ||
return $value; | ||
} | ||
|
||
return null; | ||
} | ||
|
||
private static function isEmpty($value): bool | ||
{ | ||
return $value === false || $value === null || $value === ''; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.