parInsertSml.c 12.9 KB
Newer Older
X
Xiaoyu Wang 已提交
1 2 3 4 5 6 7 8 9 10 11 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 45 46 47
/*
 * 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/>.
 */

#include "parInsertUtil.h"
#include "parInt.h"
#include "parToken.h"
#include "ttime.h"

int32_t qCreateSName(SName* pName, const char* pTableName, int32_t acctId, char* dbName, char* msgBuf,
                     int32_t msgBufLen) {
  SMsgBuf msg = {.buf = msgBuf, .len = msgBufLen};
  SToken  sToken;
  int32_t code = 0;
  char*   tbName = NULL;

  NEXT_TOKEN(pTableName, sToken);

  if (sToken.n == 0) {
    return buildInvalidOperationMsg(&msg, "empty table name");
  }

  code = insCreateSName(pName, &sToken, acctId, dbName, &msg);
  if (code) {
    return code;
  }

  NEXT_TOKEN(pTableName, sToken);

  if (sToken.n > 0) {
    return buildInvalidOperationMsg(&msg, "table name format is wrong");
  }

  return TSDB_CODE_SUCCESS;
}

48 49 50 51
static int32_t smlBoundColumnData(SArray* cols, SBoundColInfo* pBoundInfo, SSchema* pSchema, bool isTag) {
  bool* pUseCols = taosMemoryCalloc(pBoundInfo->numOfCols, sizeof(bool));
  if (NULL == pUseCols) {
    return TSDB_CODE_OUT_OF_MEMORY;
X
Xiaoyu Wang 已提交
52 53
  }

54 55 56 57
  pBoundInfo->numOfBound = 0;
  int16_t lastColIdx = -1;  // last column found
  int32_t code = TSDB_CODE_SUCCESS;

X
Xiaoyu Wang 已提交
58
  for (int i = 0; i < taosArrayGetSize(cols); ++i) {
59
    SSmlKv*  kv = taosArrayGet(cols, i);
X
Xiaoyu Wang 已提交
60 61
    SToken   sToken = {.n = kv->keyLen, .z = (char*)kv->key};
    col_id_t t = lastColIdx + 1;
62 63
    col_id_t index = ((t == 0 && !isTag) ? 0 : insFindCol(&sToken, t, pBoundInfo->numOfCols, pSchema));
    uDebug("SML, index:%d, t:%d, ncols:%d", index, t, pBoundInfo->numOfCols);
X
Xiaoyu Wang 已提交
64 65 66
    if (index < 0 && t > 0) {
      index = insFindCol(&sToken, 0, t, pSchema);
    }
67

X
Xiaoyu Wang 已提交
68 69
    if (index < 0) {
      uError("smlBoundColumnData. index:%d", index);
70 71
      code = TSDB_CODE_SML_INVALID_DATA;
      goto end;
X
Xiaoyu Wang 已提交
72
    }
73
    if (pUseCols[index]) {
X
Xiaoyu Wang 已提交
74
      uError("smlBoundColumnData. already set. index:%d", index);
75 76
      code = TSDB_CODE_SML_INVALID_DATA;
      goto end;
X
Xiaoyu Wang 已提交
77 78
    }
    lastColIdx = index;
79 80 81
    pUseCols[index] = true;
    pBoundInfo->pColIndex[pBoundInfo->numOfBound] = index;
    ++pBoundInfo->numOfBound;
X
Xiaoyu Wang 已提交
82 83
  }

84 85
end:
  taosMemoryFree(pUseCols);
X
Xiaoyu Wang 已提交
86

87
  return code;
X
Xiaoyu Wang 已提交
88 89 90 91 92 93 94 95 96 97 98 99
}

/**
 * @brief No json tag for schemaless
 *
 * @param cols
 * @param tags
 * @param pSchema
 * @param ppTag
 * @param msg
 * @return int32_t
 */
100
static int32_t smlBuildTagRow(SArray* cols, SBoundColInfo* tags, SSchema* pSchema, STag** ppTag, SArray** tagName,
X
Xiaoyu Wang 已提交
101 102 103
                              SMsgBuf* msg) {
  SArray* pTagArray = taosArrayInit(tags->numOfBound, sizeof(STagVal));
  if (!pTagArray) {
S
Shengliang Guan 已提交
104
    return TSDB_CODE_OUT_OF_MEMORY;
X
Xiaoyu Wang 已提交
105 106 107
  }
  *tagName = taosArrayInit(8, TSDB_COL_NAME_LEN);
  if (!*tagName) {
S
Shengliang Guan 已提交
108
    return TSDB_CODE_OUT_OF_MEMORY;
X
Xiaoyu Wang 已提交
109 110 111 112
  }

  int32_t code = TSDB_CODE_SUCCESS;
  for (int i = 0; i < tags->numOfBound; ++i) {
113
    SSchema* pTagSchema = &pSchema[tags->pColIndex[i]];
114
    SSmlKv*  kv = taosArrayGet(cols, i);
X
Xiaoyu Wang 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160

    taosArrayPush(*tagName, pTagSchema->name);
    STagVal val = {.cid = pTagSchema->colId, .type = pTagSchema->type};
    //    strcpy(val.colName, pTagSchema->name);
    if (pTagSchema->type == TSDB_DATA_TYPE_BINARY) {
      val.pData = (uint8_t*)kv->value;
      val.nData = kv->length;
    } else if (pTagSchema->type == TSDB_DATA_TYPE_NCHAR) {
      int32_t output = 0;
      void*   p = taosMemoryCalloc(1, kv->length * TSDB_NCHAR_SIZE);
      if (p == NULL) {
        code = TSDB_CODE_OUT_OF_MEMORY;
        goto end;
      }
      if (!taosMbsToUcs4(kv->value, kv->length, (TdUcs4*)(p), kv->length * TSDB_NCHAR_SIZE, &output)) {
        if (errno == E2BIG) {
          taosMemoryFree(p);
          code = generateSyntaxErrMsg(msg, TSDB_CODE_PAR_VALUE_TOO_LONG, pTagSchema->name);
          goto end;
        }
        char buf[512] = {0};
        snprintf(buf, tListLen(buf), " taosMbsToUcs4 error:%s", strerror(errno));
        taosMemoryFree(p);
        code = buildSyntaxErrMsg(msg, buf, kv->value);
        goto end;
      }
      val.pData = p;
      val.nData = output;
    } else {
      memcpy(&val.i64, &(kv->value), kv->length);
    }
    taosArrayPush(pTagArray, &val);
  }

  code = tTagNew(pTagArray, 1, false, ppTag);
end:
  for (int i = 0; i < taosArrayGetSize(pTagArray); ++i) {
    STagVal* p = (STagVal*)taosArrayGet(pTagArray, i);
    if (p->type == TSDB_DATA_TYPE_NCHAR) {
      taosMemoryFree(p->pData);
    }
  }
  taosArrayDestroy(pTagArray);
  return code;
}

X
Xiaoyu Wang 已提交
161
STableDataCxt* smlInitTableDataCtx(SQuery* query, STableMeta* pTableMeta) {
162
  STableDataCxt* pTableCxt = NULL;
X
Xiaoyu Wang 已提交
163 164 165
  SVCreateTbReq* pCreateTbReq = NULL;
  int            ret = insGetTableDataCxt(((SVnodeModifyOpStmt*)(query->pRoot))->pTableBlockHashObj, &pTableMeta->uid,
                                          sizeof(pTableMeta->uid), pTableMeta, &pCreateTbReq, &pTableCxt, false);
166 167 168 169 170 171 172 173 174 175 176
  if (ret != TSDB_CODE_SUCCESS) {
    return NULL;
  }

  ret = initTableColSubmitData(pTableCxt);
  if (ret != TSDB_CODE_SUCCESS) {
    return NULL;
  }
  return pTableCxt;
}

X
Xiaoyu Wang 已提交
177
int32_t smlBuildRow(STableDataCxt* pTableCxt) {
178
  SRow** pRow = taosArrayReserve(pTableCxt->pData->aRowP, 1);
X
Xiaoyu Wang 已提交
179
  int    ret = tRowBuild(pTableCxt->pValues, pTableCxt->pSchema, pRow);
180 181 182 183 184 185 186
  if (TSDB_CODE_SUCCESS != ret) {
    return ret;
  }
  insCheckTableDataOrder(pTableCxt, TD_ROW_KEY(*pRow));
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
187 188
int32_t smlBuildCol(STableDataCxt* pTableCxt, SSchema* schema, void* data, int32_t index) {
  int      ret = TSDB_CODE_SUCCESS;
189 190
  SSchema* pColSchema = schema + index;
  SColVal* pVal = taosArrayGet(pTableCxt->pValues, index);
X
Xiaoyu Wang 已提交
191 192
  SSmlKv*  kv = (SSmlKv*)data;
  if (kv->type == TSDB_DATA_TYPE_NCHAR) {
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
    int32_t len = 0;
    char*   pUcs4 = taosMemoryCalloc(1, pColSchema->bytes - VARSTR_HEADER_SIZE);
    if (NULL == pUcs4) {
      ret = TSDB_CODE_OUT_OF_MEMORY;
      goto end;
    }
    if (!taosMbsToUcs4(kv->value, kv->length, (TdUcs4*)pUcs4, pColSchema->bytes - VARSTR_HEADER_SIZE, &len)) {
      if (errno == E2BIG) {
        ret = TSDB_CODE_PAR_VALUE_TOO_LONG;
        goto end;
      }
      ret = TSDB_CODE_TSC_INVALID_VALUE;
      goto end;
    }
    pVal->value.pData = pUcs4;
    pVal->value.nData = len;
X
Xiaoyu Wang 已提交
209
  } else if (kv->type == TSDB_DATA_TYPE_BINARY) {
210
    pVal->value.nData = kv->length;
X
Xiaoyu Wang 已提交
211
    pVal->value.pData = (uint8_t*)kv->value;
212 213 214 215 216 217 218 219 220
  } else {
    memcpy(&pVal->value.val, &(kv->value), kv->length);
  }
  pVal->flag = CV_FLAG_VALUE;

end:
  return ret;
}

X
Xiaoyu Wang 已提交
221 222 223
int32_t smlBindData(SQuery* query, bool dataFormat, SArray* tags, SArray* colsSchema, SArray* cols,
                    STableMeta* pTableMeta, char* tableName, const char* sTableName, int32_t sTableNameLen, int32_t ttl,
                    char* msgBuf, int16_t msgBufLen) {
X
Xiaoyu Wang 已提交
224 225
  SMsgBuf pBuf = {.buf = msgBuf, .len = msgBufLen};

226 227 228 229
  SSchema*       pTagsSchema = getTableTagSchema(pTableMeta);
  SBoundColInfo  bindTags = {0};
  SVCreateTbReq* pCreateTblReq = NULL;
  SArray*        tagName = NULL;
230 231 232

  insInitBoundColsInfo(getNumOfTags(pTableMeta), &bindTags);
  int ret = smlBoundColumnData(tags, &bindTags, pTagsSchema, true);
X
Xiaoyu Wang 已提交
233 234
  if (ret != TSDB_CODE_SUCCESS) {
    buildInvalidOperationMsg(&pBuf, "bound tags error");
235
    goto end;
X
Xiaoyu Wang 已提交
236
  }
237

238
  STag* pTag = NULL;
239 240

  ret = smlBuildTagRow(tags, &bindTags, pTagsSchema, &pTag, &tagName, &pBuf);
X
Xiaoyu Wang 已提交
241
  if (ret != TSDB_CODE_SUCCESS) {
242
    goto end;
X
Xiaoyu Wang 已提交
243 244
  }

245 246 247 248 249
  pCreateTblReq = taosMemoryCalloc(1, sizeof(SVCreateTbReq));
  if (NULL == pCreateTblReq) {
    ret = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }
250 251
  insBuildCreateTbReq(pCreateTblReq, tableName, pTag, pTableMeta->suid, NULL, tagName, pTableMeta->tableInfo.numOfTags,
                      ttl);
X
Xiaoyu Wang 已提交
252

253 254
  pCreateTblReq->ctb.stbName = taosMemoryCalloc(1, sTableNameLen + 1);
  memcpy(pCreateTblReq->ctb.stbName, sTableName, sTableNameLen);
X
Xiaoyu Wang 已提交
255

X
Xiaoyu Wang 已提交
256 257 258
  if (dataFormat) {
    STableDataCxt** pTableCxt = (STableDataCxt**)taosHashGet(((SVnodeModifyOpStmt*)(query->pRoot))->pTableBlockHashObj,
                                                             &pTableMeta->uid, sizeof(pTableMeta->uid));
259 260 261 262 263 264
    if (NULL == pTableCxt) {
      ret = buildInvalidOperationMsg(&pBuf, "dataformat true. get tableDataCtx error");
      goto end;
    }
    (*pTableCxt)->pData->flags |= SUBMIT_REQ_AUTO_CREATE_TABLE;
    (*pTableCxt)->pData->pCreateTbReq = pCreateTblReq;
265 266
    (*pTableCxt)->pMeta->uid = pTableMeta->uid;
    (*pTableCxt)->pMeta->vgId = pTableMeta->vgId;
267 268 269 270
    pCreateTblReq = NULL;
    goto end;
  }

271
  STableDataCxt* pTableCxt = NULL;
X
Xiaoyu Wang 已提交
272
  ret = insGetTableDataCxt(((SVnodeModifyOpStmt*)(query->pRoot))->pTableBlockHashObj, &pTableMeta->uid,
273
                           sizeof(pTableMeta->uid), pTableMeta, &pCreateTblReq, &pTableCxt, false);
X
Xiaoyu Wang 已提交
274
  if (ret != TSDB_CODE_SUCCESS) {
275 276
    buildInvalidOperationMsg(&pBuf, "insGetTableDataCxt error");
    goto end;
X
Xiaoyu Wang 已提交
277 278 279
  }

  SSchema* pSchema = getTableColumnSchema(pTableMeta);
280
  ret = smlBoundColumnData(colsSchema, &pTableCxt->boundColsInfo, pSchema, false);
X
Xiaoyu Wang 已提交
281 282
  if (ret != TSDB_CODE_SUCCESS) {
    buildInvalidOperationMsg(&pBuf, "bound cols error");
283
    goto end;
X
Xiaoyu Wang 已提交
284 285
  }

286 287 288 289 290
  ret = initTableColSubmitData(pTableCxt);
  if (ret != TSDB_CODE_SUCCESS) {
    buildInvalidOperationMsg(&pBuf, "initTableColSubmitData error");
    goto end;
  }
X
Xiaoyu Wang 已提交
291 292 293

  int32_t rowNum = taosArrayGetSize(cols);
  if (rowNum <= 0) {
294 295
    ret = buildInvalidOperationMsg(&pBuf, "cols size <= 0");
    goto end;
X
Xiaoyu Wang 已提交
296
  }
297

X
Xiaoyu Wang 已提交
298
  for (int32_t r = 0; r < rowNum; ++r) {
299
    void* rowData = taosArrayGetP(cols, r);
X
Xiaoyu Wang 已提交
300 301

    // 1. set the parsed value from sql string
302 303 304
    for (int c = 0; c < pTableCxt->boundColsInfo.numOfBound; ++c) {
      SSchema* pColSchema = &pSchema[pTableCxt->boundColsInfo.pColIndex[c]];
      SColVal* pVal = taosArrayGet(pTableCxt->pValues, pTableCxt->boundColsInfo.pColIndex[c]);
X
Xiaoyu Wang 已提交
305
      void**   p = taosHashGet(rowData, pColSchema->name, strlen(pColSchema->name));
306 307 308
      if (p == NULL) {
        continue;
      }
X
Xiaoyu Wang 已提交
309
      SSmlKv* kv = *(SSmlKv**)p;
X
Xiaoyu Wang 已提交
310

311 312 313
      if (pColSchema->type == TSDB_DATA_TYPE_TIMESTAMP) {
        kv->i = convertTimePrecision(kv->i, TSDB_TIME_PRECISION_NANO, pTableMeta->tableInfo.precision);
      }
314
      if (kv->type == TSDB_DATA_TYPE_NCHAR) {
315
        int32_t len = 0;
wmmhello's avatar
wmmhello 已提交
316
        char*   pUcs4 = taosMemoryCalloc(1, pColSchema->bytes - VARSTR_HEADER_SIZE);
317 318 319
        if (NULL == pUcs4) {
          ret = TSDB_CODE_OUT_OF_MEMORY;
          goto end;
X
Xiaoyu Wang 已提交
320
        }
wmmhello's avatar
wmmhello 已提交
321
        if (!taosMbsToUcs4(kv->value, kv->length, (TdUcs4*)pUcs4, pColSchema->bytes - VARSTR_HEADER_SIZE, &len)) {
322 323 324 325 326 327 328
          if (errno == E2BIG) {
            buildInvalidOperationMsg(&pBuf, "value too long");
            ret = TSDB_CODE_PAR_VALUE_TOO_LONG;
            goto end;
          }
          ret = buildInvalidOperationMsg(&pBuf, strerror(errno));
          goto end;
X
Xiaoyu Wang 已提交
329
        }
330 331
        pVal->value.pData = pUcs4;
        pVal->value.nData = len;
332 333 334
      } else if (kv->type == TSDB_DATA_TYPE_BINARY) {
        pVal->value.nData = kv->length;
        pVal->value.pData = (uint8_t*)kv->value;
X
Xiaoyu Wang 已提交
335
      } else {
336
        memcpy(&pVal->value.val, &(kv->value), kv->length);
X
Xiaoyu Wang 已提交
337
      }
338
      pVal->flag = CV_FLAG_VALUE;
X
Xiaoyu Wang 已提交
339
    }
wmmhello's avatar
wmmhello 已提交
340 341 342 343 344 345 346 347

    SRow** pRow = taosArrayReserve(pTableCxt->pData->aRowP, 1);
    ret = tRowBuild(pTableCxt->pValues, pTableCxt->pSchema, pRow);
    if (TSDB_CODE_SUCCESS != ret) {
      buildInvalidOperationMsg(&pBuf, "tRowBuild error");
      goto end;
    }
    insCheckTableDataOrder(pTableCxt, TD_ROW_KEY(*pRow));
X
Xiaoyu Wang 已提交
348 349
  }

350 351 352 353 354
end:
  destroyBoundColInfo(&bindTags);
  taosMemoryFree(pCreateTblReq);
  taosArrayDestroy(tagName);
  return ret;
X
Xiaoyu Wang 已提交
355 356
}

wmmhello's avatar
wmmhello 已提交
357
SQuery* smlInitHandle() {
358
  SQuery* pQuery = (SQuery*)nodesMakeNode(QUERY_NODE_QUERY);
wmmhello's avatar
wmmhello 已提交
359 360
  if (NULL == pQuery) {
    uError("create pQuery error");
361
    return NULL;
wmmhello's avatar
wmmhello 已提交
362 363 364 365
  }
  pQuery->execMode = QUERY_EXEC_MODE_SCHEDULE;
  pQuery->haveResultSet = false;
  pQuery->msgType = TDMT_VND_SUBMIT;
X
Xiaoyu Wang 已提交
366
  SVnodeModifyOpStmt* stmt = (SVnodeModifyOpStmt*)nodesMakeNode(QUERY_NODE_VNODE_MODIFY_STMT);
wmmhello's avatar
wmmhello 已提交
367
  if (NULL == stmt) {
X
Xiaoyu Wang 已提交
368
    uError("create SVnodeModifyOpStmt error");
wmmhello's avatar
wmmhello 已提交
369 370 371
    qDestroyQuery(pQuery);
    return NULL;
  }
372
  stmt->pTableBlockHashObj = taosHashInit(16, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), true, HASH_NO_LOCK);
wmmhello's avatar
wmmhello 已提交
373 374
  stmt->freeHashFunc = insDestroyTableDataCxtHashMap;
  stmt->freeArrayFunc = insDestroyVgroupDataCxtList;
X
Xiaoyu Wang 已提交
375

376
  pQuery->pRoot = (SNode*)stmt;
wmmhello's avatar
wmmhello 已提交
377
  return pQuery;
X
Xiaoyu Wang 已提交
378 379
}

380
int32_t smlBuildOutput(SQuery* handle, SHashObj* pVgHash) {
X
Xiaoyu Wang 已提交
381
  SVnodeModifyOpStmt* pStmt = (SVnodeModifyOpStmt*)(handle)->pRoot;
wmmhello's avatar
wmmhello 已提交
382 383 384 385 386 387 388 389 390 391 392 393
  // merge according to vgId
  int32_t code = insMergeTableDataCxt(pStmt->pTableBlockHashObj, &pStmt->pVgDataBlocks);
  if (code != TSDB_CODE_SUCCESS) {
    uError("insMergeTableDataCxt failed");
    return code;
  }
  code = insBuildVgDataBlocks(pVgHash, pStmt->pVgDataBlocks, &pStmt->pDataBlocks);
  if (code != TSDB_CODE_SUCCESS) {
    uError("insBuildVgDataBlocks failed");
    return code;
  }
  return code;
X
Xiaoyu Wang 已提交
394
}