Coverage Report

Created: 2025-06-13 06:29

/src/gdal/third_party/LercLib/BitMask.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
Copyright 2015 Esri
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
6
You may obtain a copy of the License at
7
8
http://www.apache.org/licenses/LICENSE-2.0
9
10
Unless required by applicable law or agreed to in writing, software
11
distributed under the License is distributed on an "AS IS" BASIS,
12
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
See the License for the specific language governing permissions and
14
limitations under the License.
15
16
A local copy of the license and additional notices are located with the
17
source distribution at:
18
19
http://github.com/Esri/lerc/
20
21
Contributors:  Thomas Maurer
22
*/
23
24
#include "Defines.h"
25
#include "BitMask.h"
26
#include <cstring>
27
28
USING_NAMESPACE_LERC
29
30
// -------------------------------------------------------------------------- ;
31
32
BitMask::BitMask(const BitMask& src)
33
0
{
34
0
  SetSize(src.m_nCols, src.m_nRows);
35
0
  if (m_pBits && src.m_pBits)
36
0
    memcpy(m_pBits, src.m_pBits, Size());
37
0
}
38
39
// -------------------------------------------------------------------------- ;
40
41
BitMask& BitMask::operator= (const BitMask& src)
42
0
{
43
0
  if (this == &src) return *this;
44
45
0
  SetSize(src.m_nCols, src.m_nRows);
46
0
  if (m_pBits && src.m_pBits)
47
0
    memcpy(m_pBits, src.m_pBits, Size());
48
49
0
  return *this;
50
0
}
51
52
// -------------------------------------------------------------------------- ;
53
54
void BitMask::SetAllValid() const
55
0
{
56
0
  memset(m_pBits, 255, Size());
57
0
}
58
59
void BitMask::SetAllInvalid() const
60
0
{
61
0
  memset(m_pBits, 0, Size());
62
0
}
63
64
// -------------------------------------------------------------------------- ;
65
66
bool BitMask::SetSize(int nCols, int nRows)
67
0
{
68
0
  if (nCols != m_nCols || nRows != m_nRows)
69
0
  {
70
0
    Clear();
71
0
    m_pBits = new Byte[(nCols * nRows + 7) >> 3];
72
0
    m_nCols = nCols;
73
0
    m_nRows = nRows;
74
0
  }
75
0
  return m_pBits != nullptr;
76
0
}
77
78
// -------------------------------------------------------------------------- ;
79
80
int BitMask::CountValidBits() const
81
0
{
82
0
  const Byte numBitsHB[16] = {0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4};
83
0
  const Byte* ptr = m_pBits;
84
0
  int sum = 0;
85
0
  int i = Size();
86
0
  while (i--)
87
0
  {
88
0
    sum += numBitsHB[*ptr & 15] + numBitsHB[*ptr >> 4];
89
0
    ptr++;
90
0
  }
91
92
  // subtract undefined bits potentially contained in the last byte
93
0
  for (int k = m_nCols * m_nRows; k < Size() * 8; k++)
94
0
    if (IsValid(k))
95
0
      sum--;
96
97
0
  return sum;
98
0
}
99
100
// -------------------------------------------------------------------------- ;
101
102
void BitMask::Clear()
103
0
{
104
0
  delete[] m_pBits;
105
0
  m_pBits = nullptr;
106
0
  m_nCols = 0;
107
0
  m_nRows = 0;
108
0
}
109
110
// -------------------------------------------------------------------------- ;
111