提供基本的ttl测试用例
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

104 linhas
3.7 KiB

  1. // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file. See the AUTHORS file for names of contributors.
  4. //
  5. // This file contains the specification, but not the implementations,
  6. // of the types/operations/etc. that should be defined by a platform
  7. // specific port_<platform>.h file. Use this file as a reference for
  8. // how to port this package to a new platform.
  9. #ifndef STORAGE_LEVELDB_PORT_PORT_EXAMPLE_H_
  10. #define STORAGE_LEVELDB_PORT_PORT_EXAMPLE_H_
  11. #include "port/thread_annotations.h"
  12. namespace leveldb {
  13. namespace port {
  14. // TODO(jorlow): Many of these belong more in the environment class rather than
  15. // here. We should try moving them and see if it affects perf.
  16. // The following boolean constant must be true on a little-endian machine
  17. // and false otherwise.
  18. static const bool kLittleEndian = true /* or some other expression */;
  19. // ------------------ Threading -------------------
  20. // A Mutex represents an exclusive lock.
  21. class LOCKABLE Mutex {
  22. public:
  23. Mutex();
  24. ~Mutex();
  25. // Lock the mutex. Waits until other lockers have exited.
  26. // Will deadlock if the mutex is already locked by this thread.
  27. void Lock() EXCLUSIVE_LOCK_FUNCTION();
  28. // Unlock the mutex.
  29. // REQUIRES: This mutex was locked by this thread.
  30. void Unlock() UNLOCK_FUNCTION();
  31. // Optionally crash if this thread does not hold this mutex.
  32. // The implementation must be fast, especially if NDEBUG is
  33. // defined. The implementation is allowed to skip all checks.
  34. void AssertHeld() ASSERT_EXCLUSIVE_LOCK();
  35. };
  36. class CondVar {
  37. public:
  38. explicit CondVar(Mutex* mu);
  39. ~CondVar();
  40. // Atomically release *mu and block on this condition variable until
  41. // either a call to SignalAll(), or a call to Signal() that picks
  42. // this thread to wakeup.
  43. // REQUIRES: this thread holds *mu
  44. void Wait();
  45. // If there are some threads waiting, wake up at least one of them.
  46. void Signal();
  47. // Wake up all waiting threads.
  48. void SignallAll();
  49. };
  50. // ------------------ Compression -------------------
  51. // Store the snappy compression of "input[0,input_length-1]" in *output.
  52. // Returns false if snappy is not supported by this port.
  53. bool Snappy_Compress(const char* input, size_t input_length,
  54. std::string* output);
  55. // If input[0,input_length-1] looks like a valid snappy compressed
  56. // buffer, store the size of the uncompressed data in *result and
  57. // return true. Else return false.
  58. bool Snappy_GetUncompressedLength(const char* input, size_t length,
  59. size_t* result);
  60. // Attempt to snappy uncompress input[0,input_length-1] into *output.
  61. // Returns true if successful, false if the input is invalid lightweight
  62. // compressed data.
  63. //
  64. // REQUIRES: at least the first "n" bytes of output[] must be writable
  65. // where "n" is the result of a successful call to
  66. // Snappy_GetUncompressedLength.
  67. bool Snappy_Uncompress(const char* input_data, size_t input_length,
  68. char* output);
  69. // ------------------ Miscellaneous -------------------
  70. // If heap profiling is not supported, returns false.
  71. // Else repeatedly calls (*func)(arg, data, n) and then returns true.
  72. // The concatenation of all "data[0,n-1]" fragments is the heap profile.
  73. bool GetHeapProfile(void (*func)(void*, const char*, int), void* arg);
  74. // Extend the CRC to include the first n bytes of buf.
  75. //
  76. // Returns zero if the CRC cannot be extended using acceleration, else returns
  77. // the newly extended CRC value (which may also be zero).
  78. uint32_t AcceleratedCRC32C(uint32_t crc, const char* buf, size_t size);
  79. } // namespace port
  80. } // namespace leveldb
  81. #endif // STORAGE_LEVELDB_PORT_PORT_EXAMPLE_H_