Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect behavior of OrdMap::range() for certain inputs #152

Closed
danielhenrymantilla opened this issue Oct 14, 2020 · 0 comments 路 Fixed by #154
Closed

Incorrect behavior of OrdMap::range() for certain inputs #152

danielhenrymantilla opened this issue Oct 14, 2020 · 0 comments 路 Fixed by #154

Comments

@danielhenrymantilla
Copy link

danielhenrymantilla commented Oct 14, 2020

Sometimes, when using the .range(prefix_key ..) pattern with an OrdMap, we don't get back the expected keys (sometimes less, sometimes more!).

  • I've tried to reduce the failure case, unsuccessfully 馃槥, so here it comes: Gist

  • By looking at the code, I suspect there is something wrong with the way Node::path_next() and friends work (sometimes a Vec::new() is returned when recursing, which leads to an empty path when it shouldn't). Sadly, I haven't been able to pin-point the exact error since I don't know well the way the Nodes logic works, and I don't have the time to dwelve into learning it 馃槄.

    • If you are seeing this, and do know what the exact logic behind the Nodes and the paths is, sprinkling a few comments here and there within those functions would already be quite helpful in order to debug the issue 馃檪

    • Trick I have used to help me debug this

      my_dbg! macro that works in a generic context

      • requires +nightly or RUSTC_BOOTSTRAP=1 to work.
      // Add this to the `lib.rs` file, after the inner attrs
      #![feature(specialization)]
      trait MyDebug {
          fn to_debug_string (this: &'_ Self) -> String;
      }
      impl<T : ?Sized> MyDebug for T {
          default
          fn to_debug_string (_: &'_ Self) -> String
          {
              "<No debug impl>".into()
          }
      }
      impl<T : ?Sized + ::core::fmt::Debug> MyDebug for T {
          fn to_debug_string (this: &'_ Self) -> String
          {
              format!("{:?}", this)
          }
      }
      macro_rules! my_dbg {( $expr:expr $(,)? ) => (
          match $expr { expr => {
              eprintln!("[{}:{}:{}] {} = {:#?}",
                  file!(),
                  line!(),
                  column!(),
                  stringify!($expr),
                  crate::MyDebug::to_debug_string(&expr),
              );
              expr
          }}
      )}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant