Chinaunix首页 | 论坛 | 博客
  • 博客访问: 389694
  • 博文数量: 32
  • 博客积分: 2410
  • 博客等级: 大尉
  • 技术积分: 687
  • 用 户 组: 普通用户
  • 注册时间: 2006-01-10 11:34
文章分类
文章存档

2012年(2)

2011年(6)

2010年(6)

2009年(7)

2008年(11)

分类: C/C++

2010-02-03 15:37:03

/*
   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 <
 */


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


阅读(1780) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~