Files
ortools-clone/src/base/bitmap.h

73 lines
2.1 KiB
C
Raw Normal View History

2014-07-09 09:58:03 +00:00
// Copyright 2010-2014 Google
2010-09-15 12:42:33 +00:00
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2011-05-11 16:05:15 +00:00
#ifndef OR_TOOLS_BASE_BITMAP_H_
#define OR_TOOLS_BASE_BITMAP_H_
2010-09-15 12:42:33 +00:00
#include <string.h>
#include "base/basictypes.h"
2010-09-15 12:42:33 +00:00
#include "util/bitset.h"
namespace operations_research {
class Bitmap {
public:
// Constructor : This one will allocate on a uint32 boundary
// fill: true = initialize with 1's, false = initialize with 0's
explicit Bitmap(uint32 size, bool fill = false)
2010-10-15 09:12:01 +00:00
: max_size_(size),
2010-09-15 12:42:33 +00:00
array_size_(BitLength64(size)),
map_(new uint64[array_size_]) {
// initialize all of the bits
SetAll(fill);
}
// Destructor : clean up if we allocated
2014-01-08 12:01:58 +00:00
~Bitmap() { delete[] map_; }
2010-09-15 12:42:33 +00:00
// Resizes the bitmap.
// If size < bits(), the extra bits will be discarded.
// If size > bits(), the extra bits will be filled with the fill value.
void Resize(uint32 size, bool fill = false);
bool Get(uint32 index) const {
2010-10-15 09:12:01 +00:00
assert(max_size_ == 0 || index < max_size_);
2010-09-15 12:42:33 +00:00
return IsBitSet64(map_, index);
}
void Set(uint32 index, bool value) {
2010-10-15 09:12:01 +00:00
assert(max_size_ == 0 || index < max_size_);
2014-01-08 12:01:58 +00:00
if (value) {
2010-09-15 12:42:33 +00:00
SetBit64(map_, index);
} else {
ClearBit64(map_, index);
}
}
// Sets all the bits to true or false
void SetAll(bool value) {
memset(map_, (value ? 0xFF : 0x00), array_size_ * sizeof(*map_));
}
// Clears all bits in the bitmap
void Clear() { SetAll(false); }
private:
2014-01-08 12:01:58 +00:00
uint32 max_size_; // the upper bound of the bitmap
2010-09-15 12:42:33 +00:00
uint32 array_size_;
2014-01-08 12:01:58 +00:00
uint64* map_; // the bitmap
2010-09-15 12:42:33 +00:00
};
} // namespace operations_research
2011-05-11 16:05:15 +00:00
#endif // OR_TOOLS_BASE_BITMAP_H_