tdb_mpool.c 5.9 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

H
Hongze Cheng 已提交
16
#include "tdb_mpool.h"
H
Hongze Cheng 已提交
17

H
Hongze Cheng 已提交
18 19 20 21
static int         tdbGnrtFileID(const char *fname, uint8_t *fileid);
static void        tdbMPoolRegFile(TDB_MPOOL *mp, TDB_MPFILE *mpf);
static void        tdbMPoolUnregFile(TDB_MPOOL *mp, TDB_MPFILE *mpf);
static TDB_MPFILE *tdbMPoolGetFile(TDB_MPOOL *mp, uint8_t *fileid);
H
Hongze Cheng 已提交
22

H
Hongze Cheng 已提交
23
int tdbMPoolOpen(TDB_MPOOL **mpp, uint64_t cachesize, pgsize_t pgsize) {
H
Hongze Cheng 已提交
24
  TDB_MPOOL *mp = NULL;
H
Hongze Cheng 已提交
25
  size_t     tsize;
H
refact  
Hongze Cheng 已提交
26
  pg_t *     pagep;
H
Hongze Cheng 已提交
27 28 29 30 31 32 33 34 35 36 37

  // check parameters
  if (!TDB_IS_PGSIZE_VLD(pgsize)) {
    tdbError("invalid page size");
    return -1;
  }

  // allocate handle
  mp = (TDB_MPOOL *)calloc(1, sizeof(*mp));
  if (mp == NULL) {
    tdbError("failed to malloc memory pool handle");
H
Hongze Cheng 已提交
38
    goto _err;
H
Hongze Cheng 已提交
39 40 41 42 43 44
  }

  // initialize the handle
  mp->cachesize = cachesize;
  mp->pgsize = pgsize;
  mp->npages = cachesize / pgsize;
H
Hongze Cheng 已提交
45 46 47 48

  TD_DLIST_INIT(&mp->freeList);

  mp->pages = (pg_t **)calloc(mp->npages, sizeof(pg_t *));
H
Hongze Cheng 已提交
49 50
  if (mp->pages == NULL) {
    tdbError("failed to malloc memory pool pages");
H
Hongze Cheng 已提交
51
    goto _err;
H
Hongze Cheng 已提交
52 53
  }

H
Hongze Cheng 已提交
54 55 56 57 58
  for (frame_id_t i = 0; i < mp->npages; i++) {
    mp->pages[i] = (pg_t *)calloc(1, MP_PAGE_SIZE(pgsize));
    if (mp->pages[i] == NULL) {
      goto _err;
    }
H
Hongze Cheng 已提交
59

H
Hongze Cheng 已提交
60 61 62 63
    taosInitRWLatch(&mp->pages[i]->rwLatch);
    mp->pages[i]->frameid = i;
    mp->pages[i]->pgid = TDB_IVLD_PGID;

H
Hongze Cheng 已提交
64
    // add new page to the free list
H
Hongze Cheng 已提交
65
    TD_DLIST_APPEND_WITH_FIELD(&(mp->freeList), mp->pages[i], free);
H
Hongze Cheng 已提交
66 67
  }

H
Hongze Cheng 已提交
68 69 70 71 72 73
#define PGTAB_FACTOR 1.0
  mp->pgtab.nbucket = mp->npages / PGTAB_FACTOR;
  mp->pgtab.hashtab = (pg_list_t *)calloc(mp->pgtab.nbucket, sizeof(pg_list_t));
  if (mp->pgtab.hashtab == NULL) {
    tdbError("failed to malloc memory pool hash table");
    goto _err;
H
Hongze Cheng 已提交
74 75 76 77 78
  }

  // return
  *mpp = mp;
  return 0;
H
Hongze Cheng 已提交
79 80 81 82 83

_err:
  tdbMPoolClose(mp);
  *mpp = NULL;
  return -1;
H
Hongze Cheng 已提交
84 85
}

H
Hongze Cheng 已提交
86
int tdbMPoolClose(TDB_MPOOL *mp) {
H
Hongze Cheng 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
  if (mp) {
    tfree(mp->pgtab.hashtab);
    if (mp->pages) {
      for (int i = 0; i < mp->npages; i++) {
        tfree(mp->pages[i]);
      }

      free(mp->pages);
    }

    free(mp);
  }
  return 0;
}

int tdbMPoolFileOpen(TDB_MPFILE **mpfp, const char *fname, TDB_MPOOL *mp) {
  TDB_MPFILE *mpf;

  if ((mpf = (TDB_MPFILE *)calloc(1, sizeof(*mpf))) == NULL) {
    return -1;
  }

  mpf->fd = -1;

  if ((mpf->fname = strdup(fname)) == NULL) {
    goto _err;
  }

  if ((mpf->fd = open(fname, O_CREAT | O_RDWR, 0755)) < 0) {
    goto _err;
  }

H
more  
Hongze Cheng 已提交
119 120 121 122
  if (tdbGnrtFileID(fname, mpf->fileid) < 0) {
    goto _err;
  }

H
Hongze Cheng 已提交
123
  // Register current MPF to MP
H
Hongze Cheng 已提交
124
  tdbMPoolRegFile(mp, mpf);
H
Hongze Cheng 已提交
125

H
Hongze Cheng 已提交
126 127 128 129 130 131 132 133 134 135
  *mpfp = mpf;
  return 0;

_err:
  tdbMPoolFileClose(mpf);
  *mpfp = NULL;
  return -1;
}

int tdbMPoolFileClose(TDB_MPFILE *mpf) {
H
more  
Hongze Cheng 已提交
136 137 138 139 140 141 142
  if (mpf) {
    if (mpf->fd > 0) {
      close(mpf->fd);
    }
    tfree(mpf->fname);
    free(mpf);
  }
H
Hongze Cheng 已提交
143 144 145
  return 0;
}

H
Hongze Cheng 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
int tdbMPoolFileGet(TDB_MPFILE *mpf, pgno_t pgid, void *addr) {
  pg_t *     pagep;
  TDB_MPOOL *mp;

  mp = mpf->mp;

  // get page in the cache
  if (pagep) {
    // page is found in the page table
    // todo: pin the page and return
    *(void **)addr = pagep->data;
    return 0;
  } else {
    // page not found
    pagep = TD_DLIST_HEAD(&mp->freeList);
    if (pagep) {
      // TD_DLIST_POP(&(mp->freeList), pagep);
    } else {
      // no page found in the freelist, need to evict
      // pagep = tdbMpoolEvict(mp);
      if (pagep) {
      } else {
        // TODO: Cannot find a page to evict
      }
    }
  }

  return 0;
}

int tdbMPoolFilePut(TDB_MPOOL *mpf, pgno_t pgid, void *addr) {
  // TODO
  return 0;
}

H
Hongze Cheng 已提交
181
static int tdbGnrtFileID(const char *fname, uint8_t *fileid) {
H
more  
Hongze Cheng 已提交
182 183 184 185 186 187 188 189 190 191 192 193
  struct stat statbuf;

  if (stat(fname, &statbuf) < 0) {
    return -1;
  }

  memset(fileid, 0, TDB_FILE_ID_LEN);

  ((uint64_t *)fileid)[0] = (uint64_t)statbuf.st_ino;
  ((uint64_t *)fileid)[1] = (uint64_t)statbuf.st_dev;
  ((uint64_t *)fileid)[2] = rand();

H
Hongze Cheng 已提交
194
  return 0;
H
Hongze Cheng 已提交
195 196
}

H
Hongze Cheng 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
#define MPF_GET_BUCKETID(fileid)                   \
  ({                                               \
    uint64_t *tmp = fileid;                        \
    (tmp[0] + tmp[1] + tmp[2]) % MPF_HASH_BUCKETS; \
  })

static void tdbMPoolRegFile(TDB_MPOOL *mp, TDB_MPFILE *mpf) {
  int           bucketid;
  mpf_bucket_t *bktp;

  bucketid = MPF_GET_BUCKETID(mpf->fileid);
  bktp = mp->mpfht.buckets + bucketid;

  taosWLockLatch(&(bktp->latch));

  TD_DLIST_APPEND_WITH_FIELD(bktp, mpf, node);

  taosWUnLockLatch(&(bktp->latch));

  mpf->mp = mp;
}

static TDB_MPFILE *tdbMPoolGetFile(TDB_MPOOL *mp, uint8_t *fileid) {
  int           bucketid;
  TDB_MPFILE *  mpf = NULL;
  mpf_bucket_t *bktp;

  bucketid = MPF_GET_BUCKETID(fileid);
  bktp = mp->mpfht.buckets + bucketid;

  taosRLockLatch(&(bktp->latch));

  mpf = TD_DLIST_HEAD(bktp);
  while (mpf) {
    if (memcmp(fileid, mpf->fileid, TDB_FILE_ID_LEN) == 0) {
      break;
    }

    mpf = TD_DLIST_NODE_NEXT_WITH_FIELD(mpf, node);
  }

  taosRUnLockLatch(&(bktp->latch));

  return mpf;
}

static void tdbMPoolUnregFile(TDB_MPOOL *mp, TDB_MPFILE *mpf) {
  mpf_bucket_t *bktp;
  TDB_MPFILE *  tmpf;

  if (mpf->mp == NULL) return;

  ASSERT(mpf->mp == mp);

  bktp = mp->mpfht.buckets + MPF_GET_BUCKETID(mpf->fileid);

  taosWLockLatch(&(bktp->latch));

  tmpf = TD_DLIST_HEAD(bktp);

  while (tmpf) {
    if (memcmp(mpf->fileid, tmpf->fileid, TDB_FILE_ID_LEN) == 0) {
      TD_DLIST_POP_WITH_FIELD(bktp, tmpf, node);
      break;
    }

    tmpf = TD_DLIST_NODE_NEXT_WITH_FIELD(tmpf, node);
  }

  taosWUnLockLatch(&(bktp->latch));

  ASSERT(tmpf == mpf);
H
Hongze Cheng 已提交
269
}