smaTDBImpl.c 3.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#define ALLOW_FORBID_FUNC

#include "sma.h"

H
Hongze Cheng 已提交
20
int32_t smaOpenDBEnv(TDB **ppEnv, const char *path) {
21 22 23 24
  int ret = 0;

  if (path == NULL) return -1;

H
Hongze Cheng 已提交
25
  ret = tdbOpen(path, 4096, 256, ppEnv);  // use as param
26 27 28 29 30 31 32 33 34

  if (ret != 0) {
    smaError("failed to create tsdb db env, ret = %d", ret);
    return -1;
  }

  return 0;
}

H
Hongze Cheng 已提交
35
int32_t smaCloseDBEnv(TDB *pEnv) { return tdbClose(pEnv); }
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

static inline int tdSmaKeyCmpr(const void *arg1, int len1, const void *arg2, int len2) {
  const SSmaKey *pKey1 = (const SSmaKey *)arg1;
  const SSmaKey *pKey2 = (const SSmaKey *)arg2;

  ASSERT(len1 == len2 && len1 == sizeof(SSmaKey));

  if (pKey1->skey < pKey2->skey) {
    return -1;
  } else if (pKey1->skey > pKey2->skey) {
    return 1;
  }
  if (pKey1->groupId < pKey2->groupId) {
    return -1;
  } else if (pKey1->groupId > pKey2->groupId) {
    return 1;
  }

  return 0;
}

H
Hongze Cheng 已提交
57
static int32_t smaOpenDBDb(TTB **ppDB, TDB *pEnv, const char *pFName) {
58 59 60 61
  tdb_cmpr_fn_t compFunc;

  // Create a database
  compFunc = tdSmaKeyCmpr;
H
Hongze Cheng 已提交
62
  if (tdbTbOpen(pFName, -1, -1, compFunc, pEnv, ppDB) < 0) {
C
Cary Xu 已提交
63 64
    return -1;
  }
65 66 67 68

  return 0;
}

H
Hongze Cheng 已提交
69
static int32_t smaCloseDBDb(TTB *pDB) { return tdbTbClose(pDB); }
70

H
Hongze Cheng 已提交
71
int32_t smaOpenDBF(TDB *pEnv, SDBFile *pDBF) {
72 73 74 75 76 77 78 79
  // TEnv is shared by a group of SDBFile
  if (!pEnv || !pDBF) {
    terrno = TSDB_CODE_INVALID_PTR;
    return -1;
  }

  // Open DBF
  if (smaOpenDBDb(&(pDBF->pDB), pEnv, pDBF->path) < 0) {
C
Cary Xu 已提交
80
    smaError("failed to open DBF: %s", pDBF->path);
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
    smaCloseDBDb(pDBF->pDB);
    return -1;
  }

  return 0;
}

int32_t smaCloseDBF(SDBFile *pDBF) {
  int32_t ret = 0;
  if (pDBF->pDB) {
    ret = smaCloseDBDb(pDBF->pDB);
    pDBF->pDB = NULL;
  }
  taosMemoryFreeClear(pDBF->path);
  return ret;
}

int32_t smaSaveSmaToDB(SDBFile *pDBF, void *pKey, int32_t keyLen, void *pVal, int32_t valLen, TXN *txn) {
  int32_t ret;

C
Cary Xu 已提交
101
  printf("save tsma data into %s, keyLen:%d valLen:%d txn:%p\n", pDBF->path, keyLen, valLen, txn);
H
Hongze Cheng 已提交
102
  ret = tdbTbUpsert(pDBF->pDB, pKey, keyLen, pVal, valLen, txn);
103
  if (ret < 0) {
C
Cary Xu 已提交
104
    smaError("failed to upsert tsma data into db, ret = %d", ret);
105 106 107 108 109 110 111 112 113 114
    return -1;
  }

  return 0;
}

void *smaGetSmaDataByKey(SDBFile *pDBF, const void *pKey, int32_t keyLen, int32_t *valLen) {
  void *pVal = NULL;
  int   ret;

H
Hongze Cheng 已提交
115
  ret = tdbTbGet(pDBF->pDB, pKey, keyLen, &pVal, valLen);
116 117

  if (ret < 0) {
C
Cary Xu 已提交
118
    smaError("failed to get tsma data from db, ret = %d", ret);
119 120 121 122 123 124 125 126 127 128 129 130
    return NULL;
  }

  ASSERT(*valLen >= 0);

  // TODO: lock?
  // TODO: Would the key/value be destoryed during return the data?
  // TODO: How about the key is updated while value length is changed? The original value buffer would be freed
  // automatically?

  return pVal;
}