可重用代码之数据pack

本文介绍在FUSE框架中开发文件系统时使用的数据包读写操作,包括getxxbit()和putxxbit()函数的具体实现。这些函数用于处理不同位数的数据类型,如64位、32位、16位和8位的数据读取和写入。
摘要由CSDN通过智能技术生成

FUSE框架下开发文件系统,对于数据包的读,写都有以下常用的操作 getxxbit()/putxxbit.


/*
   Copyright 2008 Gemius SA.

   This file is part of MooseFS.

   MooseFS is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, version 3.

   MooseFS 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. See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with MooseFS. If not, see <http://www.gnu.org/licenses/>.
 */


#ifndef _DATAPACK_H_
#define _DATAPACK_H_

#include <inttypes.h>

/* MFS data pack */

static inline void put64bit(uint8_t **ptr,uint64_t val) {
    (*ptr)[0]=((val)>>56)&0xFF;
    (*ptr)[1]=((val)>>48)&0xFF;
    (*ptr)[2]=((val)>>40)&0xFF;
    (*ptr)[3]=((val)>>32)&0xFF;
    (*ptr)[4]=((val)>>24)&0xFF;
    (*ptr)[5]=((val)>>16)&0xFF;
    (*ptr)[6]=((val)>>8)&0xFF;
    (*ptr)[7]=(val)&0xFF;
    (*ptr)+=8;
}

static inline void put32bit(uint8_t **ptr,uint32_t val) {
    (*ptr)[0]=((val)>>24)&0xFF;
    (*ptr)[1]=((val)>>16)&0xFF;
    (*ptr)[2]=((val)>>8)&0xFF;
    (*ptr)[3]=(val)&0xFF;
    (*ptr)+=4;
}

static inline void put16bit(uint8_t **ptr,uint16_t val) {
    (*ptr)[0]=((val)>>8)&0xFF;
    (*ptr)[1]=(val)&0xFF;
    (*ptr)+=2;
}

static inline void put8bit(uint8_t **ptr,uint8_t val) {
    (*ptr)[0]=(val)&0xFF;
    (*ptr)++;
}

static inline uint64_t get64bit(const uint8_t **ptr) {
    uint64_t t64;
    t64=((*ptr)[3]+256*((*ptr)[2]+256*((*ptr)[1]+256*(*ptr)[0])));
    t64<<=32;
    t64|=(((*ptr)[7]+256*((*ptr)[6]+256*((*ptr)[5]+256*(*ptr)[4]))))&0xffffffffU;
    (*ptr)+=8;
    return t64;
}

static inline uint32_t get32bit(const uint8_t **ptr) {
    uint32_t t32;
    t32=((*ptr)[3]+256*((*ptr)[2]+256*((*ptr)[1]+256*(*ptr)[0])));
    (*ptr)+=4;
    return t32;
}

static inline uint16_t get16bit(const uint8_t **ptr) {
    uint32_t t16;
    t16=(*ptr)[1]+256*(*ptr)[0];
    (*ptr)+=2;
    return t16;
}

static inline uint8_t get8bit(const uint8_t **ptr) {
    uint32_t t8;
    t8=(*ptr)[0];
    (*ptr)++;
    return t8;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值