Added David Phillip Oster's fixes for compiling and getting the Barcodes app to scan...
[zxing.git] / cpp / core / src / zxing / datamatrix / decoder / BitMatrixParser.h
1 #ifndef __BIT_MATRIX_PARSER_DM_H__
2 #define __BIT_MATRIX_PARSER_DM_H__
3
4 /*
5  *  BitMatrixParser.h
6  *  zxing
7  *
8  *  Created by Luiz Silva on 09/02/2010.
9  *  Copyright 2010 ZXing authors All rights reserved.
10  *
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  */
23
24 #include <zxing/ReaderException.h>
25 #include <zxing/common/BitMatrix.h>
26 #include <zxing/common/Counted.h>
27 #include <zxing/common/Array.h>
28 #include <zxing/datamatrix/Version.h>
29
30 namespace zxing {
31 namespace datamatrix {
32
33 class BitMatrixParser : public Counted {
34 private:
35   Ref<BitMatrix> bitMatrix_;
36   Ref<Version> parsedVersion_;
37   Ref<BitMatrix> readBitMatrix_;
38
39   int copyBit(size_t x, size_t y, int versionBits);
40
41 public:
42   BitMatrixParser(Ref<BitMatrix> bitMatrix);
43   Ref<Version> readVersion(Ref<BitMatrix> bitMatrix);
44   ArrayRef<unsigned char> readCodewords();
45   bool readModule(int row, int column, int numRows, int numColumns);
46
47 private:
48   int readUtah(int row, int column, int numRows, int numColumns);
49   int readCorner1(int numRows, int numColumns);
50   int readCorner2(int numRows, int numColumns);
51   int readCorner3(int numRows, int numColumns);
52   int readCorner4(int numRows, int numColumns);
53   Ref<BitMatrix> extractDataRegion(Ref<BitMatrix> bitMatrix);
54 };
55
56 }
57 }
58
59 #endif // __BIT_MATRIX_PARSER_DM_H__