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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rocksdb: move and reset sub-objects #33

Open
qqiangwu opened this issue Feb 10, 2024 · 1 comment
Open

rocksdb: move and reset sub-objects #33

qqiangwu opened this issue Feb 10, 2024 · 1 comment
Labels
false-positives warnings that are actually not warnings lifetime-pset pset building

Comments

@qqiangwu
Copy link
Owner

SmallestKeyHeap create_level_heap(Compaction* c, const Comparator* ucmp) {
  SmallestKeyHeap smallest_key_priority_q =
      SmallestKeyHeap(SmallestKeyHeapComparator(ucmp));

  InputFileInfo input_file;

  for (size_t l = 0; l < c->num_input_levels(); l++) {
    if (c->num_input_files(l) != 0) {
      if (l == 0 && c->start_level() == 0) {
        for (size_t i = 0; i < c->num_input_files(0); i++) {
          input_file.f = c->input(0, i);
          input_file.level = 0;
          input_file.index = i;
          smallest_key_priority_q.push(std::move(input_file));
        }
      } else {
        input_file.f = c->input(l, 0);
        input_file.level = l;
        input_file.index = 0;
        smallest_key_priority_q.push(std::move(input_file));
      }
    }
  }
  return smallest_key_priority_q;
}

yields

/Users/wuqq/dev/rocksdb-main/db/compaction/compaction_picker_universal.cc:301:48: warning: use a moved-from object
  301 |         smallest_key_priority_q.push(std::move(input_file));
      |                                                ^~~~~~~~~~
/Users/wuqq/dev/rocksdb-main/db/compaction/compaction_picker_universal.cc:301:38: note: moved here
  301 |         smallest_key_priority_q.push(std::move(input_file));
      |                                      ^~~~~~~~~~~~~~~~~~~~~
/Users/wuqq/dev/rocksdb-main/db/compaction/compaction_picker_universal.cc:295:50: warning: use a moved-from object
  295 |           smallest_key_priority_q.push(std::move(input_file));
      |                                                  ^~~~~~~~~~
/Users/wuqq/dev/rocksdb-main/db/compaction/compaction_picker_universal.cc:301:38: note: moved here
  301 |         smallest_key_priority_q.push(std::move(input_file));
      |                                      ^~~~~~~~~~~~~~~~~~~~~
/Users/wuqq/dev/rocksdb-main/db/compaction/compaction_picker_universal.cc:372:46: warning: use a moved-from object
  372 |       smallest_key_priority_q.push(std::move(next));
      |                                              ^~~~
/Users/wuqq/dev/rocksdb-main/db/compaction/compaction_picker_universal.cc:372:36: note: moved here
  372 |       smallest_key_priority_q.push(std::move(next));
      |                                    ^~~~~~~~~~~~~~~
3 warnings generated.
@qqiangwu qqiangwu added false-positives warnings that are actually not warnings lifetime-pset pset building labels Feb 10, 2024
@qqiangwu
Copy link
Owner Author

Aggr a;

eat(std::move(a.o));

// a should not be used anymore

a.o = {}
// a is okay to use

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
false-positives warnings that are actually not warnings lifetime-pset pset building
Projects
None yet
Development

No branches or pull requests

1 participant