print_string.cpp 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /**************************************************************************/
  2. /* print_string.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "print_string.h"
  31. #include "core/os/os.h"
  32. #include <stdio.h>
  33. static PrintHandlerList *print_handler_list = nullptr;
  34. bool _print_line_enabled = true;
  35. bool _print_error_enabled = true;
  36. void add_print_handler(PrintHandlerList *p_handler) {
  37. _global_lock();
  38. p_handler->next = print_handler_list;
  39. print_handler_list = p_handler;
  40. _global_unlock();
  41. }
  42. void remove_print_handler(PrintHandlerList *p_handler) {
  43. _global_lock();
  44. PrintHandlerList *prev = nullptr;
  45. PrintHandlerList *l = print_handler_list;
  46. while (l) {
  47. if (l == p_handler) {
  48. if (prev) {
  49. prev->next = l->next;
  50. } else {
  51. print_handler_list = l->next;
  52. }
  53. break;
  54. }
  55. prev = l;
  56. l = l->next;
  57. }
  58. //OS::get_singleton()->print("print handler list is %p\n",print_handler_list);
  59. _global_unlock();
  60. ERR_FAIL_COND(l == nullptr);
  61. }
  62. void print_line(String p_string) {
  63. if (!_print_line_enabled) {
  64. return;
  65. }
  66. OS::get_singleton()->print("%s\n", p_string.utf8().get_data());
  67. _global_lock();
  68. PrintHandlerList *l = print_handler_list;
  69. while (l) {
  70. l->printfunc(l->userdata, p_string, false);
  71. l = l->next;
  72. }
  73. _global_unlock();
  74. }
  75. void print_error(String p_string) {
  76. if (!_print_error_enabled) {
  77. return;
  78. }
  79. OS::get_singleton()->printerr("%s\n", p_string.utf8().get_data());
  80. _global_lock();
  81. PrintHandlerList *l = print_handler_list;
  82. while (l) {
  83. l->printfunc(l->userdata, p_string, true);
  84. l = l->next;
  85. }
  86. _global_unlock();
  87. }
  88. void print_verbose(String p_string) {
  89. if (OS::get_singleton()->is_stdout_verbose()) {
  90. print_line(p_string);
  91. }
  92. }