storage.h 2.7 KB
Newer Older
S
superjom 已提交
1 2 3
#ifndef VISUALDL_STORAGE_H
#define VISUALDL_STORAGE_H

S
superjom 已提交
4
#include <time.h>
5 6
#include <map>
#include <string>
S
superjom 已提交
7 8 9 10 11

#include "visualdl/backend/storage/storage.pb.h"

namespace visualdl {

12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * Generate a tablet path in disk from its tag.
 */
inline std::string GenPathFromTag(const std::string &dir,
                                  const std::string &tag);

/*
 * Storage Interface. The might be a bunch of implementations, for example, a
 * MemStorage that keep a copy of all the taplets in memory, can be changed with
 * a higher performance; a DiskStorage that keep all the data in disk, apply to
 * the scenerios where memory consumption should be considered.
 */
class StorageBase {
public:
  const static std::string meta_file_name;

S
superjom 已提交
28
  enum Type { kMemory = 0, kDisk = 1 };
S
superjom 已提交
29
  // mode of the sevice, either reading or writing.
S
superjom 已提交
30
  enum Mode { kRead = 0, kWrite = 1, kNone = 2 };
S
superjom 已提交
31

32 33 34 35 36 37 38
  void SetStorage(const std::string &dir) {
    time_t t;
    time(&t);
    storage_.set_timestamp(t);
    storage_.set_dir(dir);
  }

39 40 41
  std::string meta_path() const;
  std::string tablet_path(const std::string &tag) const;

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
  /*
   * Create a new Tablet storage.
   */
  virtual storage::Tablet *NewTablet(const std::string &tag,
                                     int num_samples) = 0;

  /*
   * Get a tablet from memory, this can be viewed as a cache, if the storage is
   * in disk, a hash map in memory will first load the corresponding Tablet
   * Protobuf from disk and hold all the changes.
   */
  virtual storage::Tablet *tablet(const std::string &tag) = 0;

  /*
   * Persist the data from cache to disk. Both the memory storage or disk
   * storage should write changes to disk for persistence.
   */
  virtual void PersistToDisk() const = 0;

  /*
   * Load data from disk.
   */
  virtual void LoadFromDisk(const std::string &dir) = 0;

S
superjom 已提交
66 67 68
  storage::Storage *mutable_data() { return &storage_; }
  const storage::Storage &data() { return storage_; }

69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
protected:
  storage::Storage storage_;
};

/*
 * Storage in Memory, that will support quick edits on data.
 */
class MemoryStorage final : public StorageBase {
public:
  storage::Tablet *NewTablet(const std::string &tag, int num_samples) override;

  storage::Tablet *tablet(const std::string &tag) override;

  void PersistToDisk() const override;

  void LoadFromDisk(const std::string &dir) override;

86 87 88 89 90 91 92 93 94 95 96 97
  /*
   * Create a thread which will keep reading the latest data from the disk to
   * memory.
   */
  void StartReadService();

  /*
   * Create a thread which will keep writing the latest changes from memory to
   * disk.
   */
  void StartWriteSerice();

98 99 100 101 102
private:
  std::map<std::string, storage::Tablet> tablets_;
};

}  // namespace visualdl
S
superjom 已提交
103

104
#endif  // VISUALDL_STORAGE_H