d3a25d37创建于 2024年6月4日历史提交
open Core
open Magic_trace_lib

let compressed_test_string =
  {|(
      ((new_symbols())(callstack()))
      ((new_symbols())(callstack()))
      ((new_symbols())(callstack()))
      ((new_symbols(((From_perf _start)0)))(callstack((0 0))))
      ((new_symbols((Untraced 1)))(callstack((1 0)(0 0))))
      ((new_symbols())(callstack((0 0))))
      ((new_symbols(((From_perf _dl_start)2)))(callstack((2 0)(0 0))))
      ((new_symbols())(callstack((1 1)(0 0))))
      ((new_symbols())(callstack((2 1))))
      ((new_symbols())(callstack((1 2))))
      ((new_symbols())(callstack((2 1))))
    )|}
;;

let decompressed_test_string =
  {|(
      ()
      ()
      ()
      ((From_perf _start))
      (Untraced (From_perf _start))
      ((From_perf _start))
      ((From_perf _dl_start) (From_perf _start))
      (Untraced (From_perf _start) (From_perf _start))
      ((From_perf _dl_start) (From_perf _start))
      (Untraced (From_perf _start) (From_perf _start))
      ((From_perf _dl_start) (From_perf _start))
    )|}
;;

let%expect_test "decompress" =
  let compression_events =
    [%of_sexp: Callstack_compression.compression_event list]
      (Sexp.of_string compressed_test_string)
  in
  let state = Callstack_compression.init () in
  List.iter compression_events ~f:(fun comp_event ->
    let callstack = Callstack_compression.decompress_callstack state comp_event in
    print_s [%sexp (callstack : Symbol.t list)]);
  [%expect
    {|
      ()
      ()
      ()
      ((From_perf _start))
      (Untraced (From_perf _start))
      ((From_perf _start))
      ((From_perf _dl_start) (From_perf _start))
      (Untraced (From_perf _start) (From_perf _start))
      ((From_perf _dl_start) (From_perf _start))
      (Untraced (From_perf _start) (From_perf _start))
      ((From_perf _dl_start) (From_perf _start))|}]
;;

let%expect_test "compress" =
  let compression_events =
    [%of_sexp: Symbol.t list list] (Sexp.of_string decompressed_test_string)
  in
  let state = Callstack_compression.init () in
  List.iter compression_events ~f:(fun callstack ->
    let comp_event = Callstack_compression.compress_callstack state callstack in
    print_s [%sexp (comp_event : Callstack_compression.compression_event)]);
  [%expect
    {|
    ((new_symbols ()) (callstack ()))
    ((new_symbols ()) (callstack ()))
    ((new_symbols ()) (callstack ()))
    ((new_symbols (((From_perf _start) 0))) (callstack ((0 0))))
    ((new_symbols ((Untraced 1))) (callstack ((1 0) (0 0))))
    ((new_symbols ()) (callstack ((0 0))))
    ((new_symbols (((From_perf _dl_start) 2))) (callstack ((2 0) (0 0))))
    ((new_symbols ()) (callstack ((1 1) (0 0))))
    ((new_symbols ()) (callstack ((2 1))))
    ((new_symbols ()) (callstack ((1 2))))
    ((new_symbols ()) (callstack ((2 1))))|}]
;;