osRand.c 1.5 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * 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/>.
 */
wafwerar's avatar
wafwerar 已提交
15
#define ALLOW_FORBID_FUNC
S
Shengliang Guan 已提交
16 17
#define _DEFAULT_SOURCE
#include "os.h"
S
Shengliang Guan 已提交
18 19 20
#if defined(_TD_WINDOWS_64) || defined(_TD_WINDOWS_32)
#else
#include <sys/file.h>
S
Shengliang Guan 已提交
21
#include <unistd.h>
S
Shengliang Guan 已提交
22
#endif
S
Shengliang Guan 已提交
23

wafwerar's avatar
wafwerar 已提交
24 25
void taosSeedRand(uint32_t seed) { return srand(seed); }

S
Shengliang Guan 已提交
26 27
uint32_t taosRand(void) { return rand(); }

wafwerar's avatar
wafwerar 已提交
28 29
uint32_t taosRandR(uint32_t *pSeed) { return rand_r(pSeed); }

S
Shengliang Guan 已提交
30
uint32_t taosSafeRand(void) {
31
  TdFilePtr pFile;
S
Shengliang Guan 已提交
32 33
  int seed;

34 35
  pFile = taosOpenFile("/dev/urandom", TD_FILE_READ);
  if (pFile == NULL) {
S
slguan 已提交
36
    seed = (int)time(0);
S
Shengliang Guan 已提交
37
  } else {
38
    int len = taosReadFile(pFile, &seed, sizeof(seed));
S
Shengliang Guan 已提交
39
    if (len < 0) {
S
slguan 已提交
40
      seed = (int)time(0);
S
Shengliang Guan 已提交
41
    }
42
    taosCloseFile(&pFile);
S
Shengliang Guan 已提交
43 44 45 46 47 48 49 50 51 52 53 54 55
  }

  return (uint32_t)seed;
}

void taosRandStr(char* str, int32_t size) {
  const char* set = "abcdefghijklmnopqrstuvwxyz0123456789-_.";
  int32_t     len = 39;

  for (int32_t i = 0; i < size; ++i) {
    str[i] = set[taosRand() % len];
  }
}