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

uint32_t taosRand(void) { return rand(); }

S
Shengliang Guan 已提交
25
uint32_t taosSafeRand(void) {
S
Shengliang Guan 已提交
26 27 28 29 30
  int fd;
  int seed;

  fd = open("/dev/urandom", 0);
  if (fd < 0) {
S
slguan 已提交
31
    seed = (int)time(0);
S
Shengliang Guan 已提交
32 33 34
  } else {
    int len = read(fd, &seed, sizeof(seed));
    if (len < 0) {
S
slguan 已提交
35
      seed = (int)time(0);
S
Shengliang Guan 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
    }
    close(fd);
  }

  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];
  }
}