StringKeyedCommon.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright 2015-present Facebook, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. // Copyright 2013-present Facebook. All Rights Reserved.
  17. // @author: Pavlo Kushnir (pavlo)
  18. #pragma once
  19. #include <memory>
  20. #include <folly/Range.h>
  21. namespace folly {
  22. template <class Alloc>
  23. StringPiece stringPieceDup(StringPiece piece, const Alloc& alloc) {
  24. auto size = piece.size();
  25. auto keyDup =
  26. typename Alloc::template rebind<char>::other(alloc).allocate(size);
  27. if (size) {
  28. memcpy(
  29. keyDup, piece.data(), size * sizeof(typename StringPiece::value_type));
  30. }
  31. return StringPiece(keyDup, size);
  32. }
  33. template <class Alloc>
  34. void stringPieceDel(StringPiece piece, const Alloc& alloc) {
  35. typename Alloc::template rebind<char>::other(alloc).deallocate(
  36. const_cast<char*>(piece.data()), piece.size());
  37. }
  38. } // namespace folly