This commit is contained in:
邹晓航
2014-09-25 15:36:01 +08:00
parent 76af4f1e4b
commit ecddbfdc04

View File

@@ -2,6 +2,7 @@
#define _BITMAP_H_ #define _BITMAP_H_
#include <cstdint> #include <cstdint>
#include <iostream>
#include <string> #include <string>
#include "Allocator.h" #include "Allocator.h"
@@ -16,7 +17,8 @@ namespace TinySTL{
private: private:
uint8_t *start_; uint8_t *start_;
uint8_t *finish_; uint8_t *finish_;
const size_t size_; const size_t size_;//the size of bit
const size_t sizeOfUINT8_;//the size of how many uint8_t
enum EAlign{ ALIGN = 8 }; enum EAlign{ ALIGN = 8 };
public: public:
bitmap(); bitmap();
@@ -34,27 +36,47 @@ namespace TinySTL{
//Returns whether all of the bits in the bitset are set (to one). //Returns whether all of the bits in the bitset are set (to one).
bool all() const;//TODO bool all() const;//TODO
bitset& set();//TODO bitmap& set(){
bitset& set(size_t pos, bool val = true);//TODO uninitialized_fill_n(start_, size_, ~0);
bitset& reset();//TODO }
bitset& reset(size_t pos);//TODO bitmap& set(size_t pos, bool val = true);//TODO
bitset& flip();//TODO bitmap& reset();//TODO
bitset& flip(size_t pos);//TODO bitmap& reset(size_t pos);//TODO
bitmap& flip();//TODO
bitmap& flip(size_t pos);//TODO
std::string to_string() const;//TODO std::string to_string() const;//TODO
template<size_t N>
friend std::ostream& operator <<(std::ostream& os, const bitmap<N>& bm);
private: private:
size_t roundUp8(size_t bytes){ size_t roundUp8(size_t bytes){
return ((bytes + EAlign::ALIGN - 1) & ~(EAlign::ALIGN - 1)); return ((bytes + EAlign::ALIGN - 1) & ~(EAlign::ALIGN - 1));
} }
void allocateAndFillN(const size_t n, const uint8_t val){ //<2F><>i<EFBFBD>ĵ<EFBFBD>nthΪ<68><CEAA>ΪnewVal
void setNthInInt8(uint8_t& i, size_t nth, bool newVal){//nth<74><68>0<EFBFBD><30>ʼ
uint8_t temp = i & (1 << nth); //ȡ<><C8A1>i<EFBFBD>ĵ<EFBFBD>nthλ
if ((bool)temp == newVal){
return;
}else{
if (temp){//nthλΪ1
temp = ~temp;
i = i & temp;
}else{//nthλΪ0
i = i | (1 << nth);
}
}
}
size_t getNth(size_t n){ return (n / 8); }
void allocateAndFillN(size_t n, uint8_t val){
start_ = dataAllocator::allocate(n); start_ = dataAllocator::allocate(n);
finish_ = uninitialized_fill_n(start_, n, val); finish_ = uninitialized_fill_n(start_, n, val);
} }
};// end of bitmap };// end of bitmap
template<size_t N> template<size_t N>
bitmap<N>::bitmap() :size_(N){ bitmap<N>::bitmap() :size_(roundUp8(N)), sizeOfUINT8_(roundUp8(N) / 8 + 1){
allocateAndFillN(size_, 0); allocateAndFillN(sizeOfUINT8_, 0);
} }
} }