vmFile.c 6.2 KB
Newer Older
S
shm  
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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 _DEFAULT_SOURCE
S
shm  
Shengliang Guan 已提交
17
#include "vmInt.h"
S
shm  
Shengliang Guan 已提交
18

S
Shengliang Guan 已提交
19 20
#define MAX_CONTENT_LEN 1024 * 1024

S
Shengliang 已提交
21
SVnodeObj **vmGetVnodeListFromHash(SVnodeMgmt *pMgmt, int32_t *numOfVnodes) {
22
  taosThreadRwlockRdlock(&pMgmt->lock);
S
shm  
Shengliang Guan 已提交
23 24 25

  int32_t     num = 0;
  int32_t     size = taosHashGetSize(pMgmt->hash);
wafwerar's avatar
wafwerar 已提交
26
  SVnodeObj **pVnodes = taosMemoryCalloc(size, sizeof(SVnodeObj *));
S
shm  
Shengliang Guan 已提交
27 28 29 30 31 32 33

  void *pIter = taosHashIterate(pMgmt->hash, NULL);
  while (pIter) {
    SVnodeObj **ppVnode = pIter;
    SVnodeObj  *pVnode = *ppVnode;
    if (pVnode && num < size) {
      int32_t refCount = atomic_add_fetch_32(&pVnode->refCount, 1);
S
Shengliang Guan 已提交
34
      // dTrace("vgId:%d, acquire vnode, refCount:%d", pVnode->vgId, refCount);
S
shm  
Shengliang Guan 已提交
35 36 37 38 39 40 41 42
      pVnodes[num] = (*ppVnode);
      num++;
      pIter = taosHashIterate(pMgmt->hash, pIter);
    } else {
      taosHashCancelIterate(pMgmt->hash, pIter);
    }
  }

43
  taosThreadRwlockUnlock(&pMgmt->lock);
S
shm  
Shengliang Guan 已提交
44 45 46 47 48
  *numOfVnodes = num;

  return pVnodes;
}

S
Shengliang 已提交
49
int32_t vmGetVnodeListFromFile(SVnodeMgmt *pMgmt, SWrapperCfg **ppCfgs, int32_t *numOfVnodes) {
50
  int32_t      code = TSDB_CODE_INVALID_JSON_FORMAT;
S
shm  
Shengliang Guan 已提交
51
  int32_t      len = 0;
S
Shengliang Guan 已提交
52
  int32_t      maxLen = MAX_CONTENT_LEN;
wafwerar's avatar
wafwerar 已提交
53
  char        *content = taosMemoryCalloc(1, maxLen + 1);
S
shm  
Shengliang Guan 已提交
54 55
  cJSON       *root = NULL;
  FILE        *fp = NULL;
S
Shengliang Guan 已提交
56
  char         file[PATH_MAX] = {0};
S
shm  
Shengliang Guan 已提交
57 58 59 60 61 62 63 64 65
  SWrapperCfg *pCfgs = NULL;
  TdFilePtr    pFile = NULL;

  snprintf(file, sizeof(file), "%s%svnodes.json", pMgmt->path, TD_DIRSEP);

  pFile = taosOpenFile(file, TD_FILE_READ);
  if (pFile == NULL) {
    dDebug("file %s not exist", file);
    code = 0;
S
Shengliang Guan 已提交
66
    goto _OVER;
S
shm  
Shengliang Guan 已提交
67 68
  }

69 70 71 72 73
  if (content == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }

S
shm  
Shengliang Guan 已提交
74 75 76
  len = (int32_t)taosReadFile(pFile, content, maxLen);
  if (len <= 0) {
    dError("failed to read %s since content is null", file);
S
Shengliang Guan 已提交
77
    goto _OVER;
S
shm  
Shengliang Guan 已提交
78 79 80 81 82 83
  }

  content[len] = 0;
  root = cJSON_Parse(content);
  if (root == NULL) {
    dError("failed to read %s since invalid json format", file);
S
Shengliang Guan 已提交
84
    goto _OVER;
S
shm  
Shengliang Guan 已提交
85 86 87 88 89
  }

  cJSON *vnodes = cJSON_GetObjectItem(root, "vnodes");
  if (!vnodes || vnodes->type != cJSON_Array) {
    dError("failed to read %s since vnodes not found", file);
S
Shengliang Guan 已提交
90
    goto _OVER;
S
shm  
Shengliang Guan 已提交
91 92 93 94
  }

  int32_t vnodesNum = cJSON_GetArraySize(vnodes);
  if (vnodesNum > 0) {
wafwerar's avatar
wafwerar 已提交
95
    pCfgs = taosMemoryCalloc(vnodesNum, sizeof(SWrapperCfg));
S
shm  
Shengliang Guan 已提交
96 97
    if (pCfgs == NULL) {
      dError("failed to read %s since out of memory", file);
S
Shengliang Guan 已提交
98
      goto _OVER;
S
shm  
Shengliang Guan 已提交
99 100 101 102 103 104 105 106 107
    }

    for (int32_t i = 0; i < vnodesNum; ++i) {
      cJSON       *vnode = cJSON_GetArrayItem(vnodes, i);
      SWrapperCfg *pCfg = &pCfgs[i];

      cJSON *vgId = cJSON_GetObjectItem(vnode, "vgId");
      if (!vgId || vgId->type != cJSON_Number) {
        dError("failed to read %s since vgId not found", file);
S
Shengliang Guan 已提交
108
        goto _OVER;
S
shm  
Shengliang Guan 已提交
109 110 111 112 113 114 115
      }
      pCfg->vgId = vgId->valueint;
      snprintf(pCfg->path, sizeof(pCfg->path), "%s%svnode%d", pMgmt->path, TD_DIRSEP, pCfg->vgId);

      cJSON *dropped = cJSON_GetObjectItem(vnode, "dropped");
      if (!dropped || dropped->type != cJSON_Number) {
        dError("failed to read %s since dropped not found", file);
S
Shengliang Guan 已提交
116
        goto _OVER;
S
shm  
Shengliang Guan 已提交
117 118 119 120 121 122
      }
      pCfg->dropped = dropped->valueint;

      cJSON *vgVersion = cJSON_GetObjectItem(vnode, "vgVersion");
      if (!vgVersion || vgVersion->type != cJSON_Number) {
        dError("failed to read %s since vgVersion not found", file);
S
Shengliang Guan 已提交
123
        goto _OVER;
S
shm  
Shengliang Guan 已提交
124 125 126 127 128 129 130 131 132
      }
      pCfg->vgVersion = vgVersion->valueint;
    }

    *ppCfgs = pCfgs;
  }

  *numOfVnodes = vnodesNum;
  code = 0;
S
Shengliang Guan 已提交
133
  dDebug("succcessed to read file %s, numOfVnodes:%d", file, vnodesNum);
S
shm  
Shengliang Guan 已提交
134

S
Shengliang Guan 已提交
135
_OVER:
wafwerar's avatar
wafwerar 已提交
136
  if (content != NULL) taosMemoryFree(content);
S
shm  
Shengliang Guan 已提交
137 138 139 140 141 142 143
  if (root != NULL) cJSON_Delete(root);
  if (pFile != NULL) taosCloseFile(&pFile);

  terrno = code;
  return code;
}

S
Shengliang 已提交
144 145 146
int32_t vmWriteVnodeListToFile(SVnodeMgmt *pMgmt) {
  char file[PATH_MAX] = {0};
  char realfile[PATH_MAX] = {0};
S
shm  
Shengliang Guan 已提交
147 148 149
  snprintf(file, sizeof(file), "%s%svnodes.json.bak", pMgmt->path, TD_DIRSEP);
  snprintf(realfile, sizeof(file), "%s%svnodes.json", pMgmt->path, TD_DIRSEP);

150
  TdFilePtr pFile = taosOpenFile(file, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_TRUNC);
S
shm  
Shengliang Guan 已提交
151 152 153 154 155 156 157
  if (pFile == NULL) {
    terrno = TAOS_SYSTEM_ERROR(errno);
    dError("failed to write %s since %s", file, terrstr());
    return -1;
  }

  int32_t     numOfVnodes = 0;
S
Shengliang Guan 已提交
158
  SVnodeObj **pVnodes = vmGetVnodeListFromHash(pMgmt, &numOfVnodes);
S
shm  
Shengliang Guan 已提交
159 160

  int32_t len = 0;
S
Shengliang Guan 已提交
161
  int32_t maxLen = MAX_CONTENT_LEN;
wafwerar's avatar
wafwerar 已提交
162
  char   *content = taosMemoryCalloc(1, maxLen + 1);
163 164 165 166
  if (content == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
S
shm  
Shengliang Guan 已提交
167 168 169 170 171 172 173 174

  len += snprintf(content + len, maxLen - len, "{\n");
  len += snprintf(content + len, maxLen - len, "  \"vnodes\": [\n");
  for (int32_t i = 0; i < numOfVnodes; ++i) {
    SVnodeObj *pVnode = pVnodes[i];
    len += snprintf(content + len, maxLen - len, "    {\n");
    len += snprintf(content + len, maxLen - len, "      \"vgId\": %d,\n", pVnode->vgId);
    len += snprintf(content + len, maxLen - len, "      \"dropped\": %d,\n", pVnode->dropped);
175
    len += snprintf(content + len, maxLen - len, "      \"vgVersion\": %d\n", pVnode->vgVersion);
S
shm  
Shengliang Guan 已提交
176 177 178 179 180 181 182 183 184 185 186 187
    if (i < numOfVnodes - 1) {
      len += snprintf(content + len, maxLen - len, "    },\n");
    } else {
      len += snprintf(content + len, maxLen - len, "    }\n");
    }
  }
  len += snprintf(content + len, maxLen - len, "  ]\n");
  len += snprintf(content + len, maxLen - len, "}\n");

  taosWriteFile(pFile, content, len);
  taosFsyncFile(pFile);
  taosCloseFile(&pFile);
wafwerar's avatar
wafwerar 已提交
188
  taosMemoryFree(content);
S
shm  
Shengliang Guan 已提交
189 190 191 192 193 194 195 196
  terrno = 0;

  for (int32_t i = 0; i < numOfVnodes; ++i) {
    SVnodeObj *pVnode = pVnodes[i];
    vmReleaseVnode(pMgmt, pVnode);
  }

  if (pVnodes != NULL) {
wafwerar's avatar
wafwerar 已提交
197
    taosMemoryFree(pVnodes);
S
shm  
Shengliang Guan 已提交
198 199
  }

S
Shengliang Guan 已提交
200
  dDebug("successed to write %s, numOfVnodes:%d", realfile, numOfVnodes);
S
shm  
Shengliang Guan 已提交
201 202
  return taosRenameFile(file, realfile);
}