ice framework documentation ice doc v1.11.0
  1. namespace Ice\Log\Driver;
  2.  
  3. use Ice\Log\Driver;
  4. use Ice\Exception;
  5.  
  6. /**
  7. * File driver for the Logger.
  8. *
  9. * @package Ice/Log
  10. * @category Library
  11. * @author Ice Team
  12. * @copyright (c) 2014-2025 Ice Team
  13. * @license http://iceframework.org/license
  14. */
  15. class File extends Driver
  16. {
  17. protected file;
  18.  
  19. /**
  20. * Logger file constructor.
  21. *
  22. * @param string file Filename to log messages to (complete path)
  23. * @throws Exception When logfile cannot be created or is not writeable
  24. */
  25. public function __construct(string file)
  26. {
  27. if !file_exists(file) {
  28. if !touch(file) {
  29. throw new Exception("Log file " . file . " cannot be created");
  30. }
  31. }
  32. if !is_writable(file) {
  33. throw new Exception("Log file " . file . " is not writeable");
  34. }
  35.  
  36. let this->file = file;
  37. }
  38.  
  39. /**
  40. * Logs with an arbitrary level.
  41. *
  42. * @param mixed level
  43. * @param string message
  44. * @param array context
  45. * @return void
  46. */
  47. public function log(var level, string message, array context = []) -> void
  48. {
  49. var line;
  50.  
  51. let line = "[" . date("Y-m-d H:i:s") . "] " . strtoupper(level) . ": " . this->interpolate(message, context) . PHP_EOL;
  52.  
  53. file_put_contents(this->file, line, FILE_APPEND);
  54. }
  55.  
  56. /**
  57. * Interpolates context values into the message placeholders.
  58. *
  59. * @param string message
  60. * @param array context
  61. * @return string
  62. */
  63. protected function interpolate(string message, array context = []) -> string
  64. {
  65. var replace, key, value;
  66.  
  67. // Build a replacement array with braces around the context keys
  68. let replace = [];
  69.  
  70. for key, value in context {
  71. let replace["{" . key . "}"] = value;
  72. }
  73.  
  74. // Interpolate replacement values into the message and return
  75. return strtr(message, replace);
  76. }
  77. }