redis 源碼閱讀 數值轉字元 longlong2str

來源:互聯網
上載者:User

標籤:

redis 在底層中會把long long轉成string 再做儲存。 主個功能是在sds模組裡。下面兩函數是把long long 轉成 char  和   unsiged long long 轉成 char。大致的思路是:1 把數值從尾到頭一個一個轉成字元,2 算出長度,加上結束符。3 把字串反轉一下。4 如果是 long long 型 要考慮有負數的情況。 
int sdsll2str(char *s, long long value) {    char *p, aux;    unsigned long long v;    size_t l;    /* Generate the string representation, this method produces     * an reversed string. */    v = (value < 0) ? -value : value;    p = s;    do {        *p++ = ‘0‘+(v%10);        v /= 10;    } while(v);    if (value < 0) *p++ = ‘-‘;    /* Compute length and add null term. */    l = p-s;    *p = ‘\0‘;    /* Reverse the string. */    p--;    while(s < p) {        aux = *s;        *s = *p;        *p = aux;        s++;        p--;    }    return l;}/* Identical sdsll2str(), but for unsigned long long type. */int sdsull2str(char *s, unsigned long long v) {    char *p, aux;    size_t l;    /* Generate the string representation, this method produces     * an reversed string. */    p = s;    do {        *p++ = ‘0‘+(v%10);        v /= 10;    } while(v);    /* Compute length and add null term. */    l = p-s;    *p = ‘\0‘;    /* Reverse the string. */    p--;    while(s < p) {        aux = *s;        *s = *p;        *p = aux;        s++;        p--;    }    return l;}

 

redis 源碼閱讀 數值轉字元 longlong2str

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.