sdk.h 3.5 KB
Newer Older
S
superjom 已提交
1 2 3
#ifndef VISUALDL_BACKEND_LOGIC_SDK_H
#define VISUALDL_BACKEND_LOGIC_SDK_H

S
superjom 已提交
4 5
#include <glog/logging.h>
#include <time.h>
S
superjom 已提交
6 7
#include <map>

S
superjom 已提交
8 9
#include "visualdl/backend/logic/im.h"

S
superjom 已提交
10 11
namespace visualdl {

S
superjom 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * Utility helper for storage::Entry.
 */
template <typename T>
struct EntryHelper {
  // use pointer to avoid copy
  storage::Entry *entry{nullptr};

  EntryHelper() {}
  explicit EntryHelper(storage::Entry *entry) : entry(entry) {}
  void operator()(storage::Entry *entry) { this->entry = entry; }

  /*
   * Set a single value.
   */
  void Set(T v);

  /*
   * Add a value to repeated message field.
   */
  void Add(T v);

  /*
   * Get a single value.
   */
  T Get() const;

  /*
   * Get repeated field.
   */
  std::vector<T> GetMulti() const;
};

S
superjom 已提交
45 46 47
class TabletHelper {
public:
  // basic member getter and setter
S
superjom 已提交
48 49 50
  std::string record_buffer(int idx) const {
    return data_->records(idx).SerializeAsString();
  }
S
superjom 已提交
51 52 53 54 55
  size_t records_size() const { return data_->records_size(); }
  std::string buffer() const { return data_->SerializeAsString(); }
  std::string human_readable_buffer() const;
  void SetBuffer(const storage::Tablet &t) { *data_ = t; }
  void SetBuffer(const std::string &b) { data_->ParseFromString(b); }
S
superjom 已提交
56
  storage::Tablet &data() const { return *data_; }
S
superjom 已提交
57 58 59 60

  // constructor that enable concurrency.
  TabletHelper(storage::Tablet *t) : data_(t) {}
  // data updater that resuage of one instance.
S
superjom 已提交
61 62 63 64
  TabletHelper &operator()(storage::Tablet *t) {
    data_ = t;
    return *this;
  }
S
superjom 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106

private:
  storage::Tablet *data_;
};

class StorageHelper {
public:
  StorageHelper(storage::Storage *s) : data_(s) {}
  StorageHelper &operator()(storage::Storage *s) {
    data_ = s;
    return *this;
  }

  void SetBuffer(const storage::Storage &buffer) { *data_ = buffer; }
  void SetBuffer(const std::string &buffer) { data_->ParseFromString(buffer); }
  void SetDir(const std::string &dir) { data_->set_dir(dir); }

  int64_t timestamp() const { return data_->timestamp(); }
  std::string dir() const { return data_->dir(); }
  int tablets_size() const { return data_->tablets_size(); }
  std::string buffer() const { return data_->SerializeAsString(); }
  std::string human_readable_buffer() const;

private:
  storage::Storage *data_;
};

class ImHelper {
public:
  ImHelper() {}

  StorageHelper storage() {
    return StorageHelper(
        InformationMaintainer::Global().storage().mutable_data());
  }
  TabletHelper tablet(const std::string &tag) {
    return TabletHelper(InformationMaintainer::Global().storage().Find(tag));
  }
  TabletHelper AddTablet(const std::string &tag, int num_samples) {
    return TabletHelper(
        InformationMaintainer::Global().AddTablet(tag, num_samples));
  }
S
superjom 已提交
107 108 109 110 111
  void ClearTablets() {
    InformationMaintainer::Global().storage().mutable_data()->clear_tablets();
  }

  void PersistToDisk() const;
S
superjom 已提交
112 113
};

S
superjom 已提交
114 115 116
namespace components {

/*
S
superjom 已提交
117
 * Read and write support for Scalar component.
S
superjom 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
 */
template <typename T>
class ScalarHelper {
public:
  ScalarHelper(storage::Tablet *tablet) : data_(tablet) {}

  void SetCaptions(const std::vector<std::string> &captions);

  void AddRecord(int id, const std::vector<T> &values);

  std::vector<std::vector<T>> GetRecords() const;

  std::vector<int> GetIds() const;

  std::vector<int> GetTimestamps() const;

  std::vector<std::string> GetCaptions() const;

S
superjom 已提交
136 137
  size_t GetSize() const { return data_->records_size(); }

S
superjom 已提交
138 139 140 141 142 143 144
private:
  storage::Tablet *data_;
};

}  // namespace components

static ImHelper &get_im() {
S
superjom 已提交
145 146 147 148
  static ImHelper im;
  return im;
}

S
superjom 已提交
149
}  // namespace visualdl
S
superjom 已提交
150 151

#endif  // VISUALDL_BACKEND_LOGIC_SDK_H