tracing_backend_posix.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (c) 2018 Oticon A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <soc.h>
  7. #include <stdio.h>
  8. #include <kernel.h>
  9. #include <cmdline.h>
  10. #include <sys/__assert.h>
  11. #include <tracing_backend.h>
  12. static void *out_stream;
  13. static const char *file_name;
  14. static void tracing_backend_posix_init(void)
  15. {
  16. if (file_name == NULL) {
  17. file_name = "channel0_0";
  18. }
  19. out_stream = (void *)fopen(file_name, "wb");
  20. __ASSERT(out_stream != NULL, "posix backend init failed");
  21. }
  22. static void tracing_backend_posix_output(
  23. const struct tracing_backend *backend,
  24. uint8_t *data, uint32_t length)
  25. {
  26. fwrite(data, length, 1, (FILE *)out_stream);
  27. if (!k_is_in_isr()) {
  28. fflush((FILE *)out_stream);
  29. }
  30. }
  31. const struct tracing_backend_api tracing_backend_posix_api = {
  32. .init = tracing_backend_posix_init,
  33. .output = tracing_backend_posix_output
  34. };
  35. TRACING_BACKEND_DEFINE(tracing_backend_posix, tracing_backend_posix_api);
  36. void tracing_backend_posix_option(void)
  37. {
  38. static struct args_struct_t tracing_backend_option[] = {
  39. {
  40. .manual = false,
  41. .is_mandatory = false,
  42. .is_switch = false,
  43. .option = "trace-file",
  44. .name = "file_name",
  45. .type = 's',
  46. .dest = (void *)&file_name,
  47. .call_when_found = NULL,
  48. .descript = "File name for tracing output.",
  49. },
  50. ARG_TABLE_ENDMARKER
  51. };
  52. native_add_command_line_opts(tracing_backend_option);
  53. }
  54. NATIVE_TASK(tracing_backend_posix_option, PRE_BOOT_1, 1);