bf368f89a696bae0f69c0baa963a699c1532b956
[zxing.git] / core / src / com / google / zxing / qrcode / decoder / Mode.java
1 /*
2  * Copyright 2007 Google Inc.
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
17 package com.google.zxing.qrcode.decoder;
18
19 import com.google.zxing.ReaderException;
20
21 /**
22  * <p>See ISO 18004:2006, 6.4.1, Tables 2 and 3. This enum encapsulates the various modes in which
23  * data can be encoded to bits in the QR code standard.</p>
24  *
25  * @author srowen@google.com (Sean Owen)
26  */
27 final class Mode {
28
29   // No, we can't use an enum here. J2ME doesn't support it.
30
31   static final Mode TERMINATOR = new Mode(new int[]{0, 0, 0}); // Not really a mode...
32   static final Mode NUMERIC = new Mode(new int[]{10, 12, 14});
33   static final Mode ALPHANUMERIC = new Mode(new int[]{9, 11, 13});
34   static final Mode BYTE = new Mode(new int[]{8, 16, 16});
35   static final Mode KANJI = new Mode(new int[]{8, 10, 12});
36
37   private final int[] characterCountBitsForVersions;
38
39   private Mode(int[] characterCountBitsForVersions) {
40     this.characterCountBitsForVersions = characterCountBitsForVersions;
41   }
42
43   /**
44    * @param bits four bits encoding a QR Code data mode
45    * @return {@link Mode} encoded by these bits
46    * @throws ReaderException if bits do not correspond to a known mode
47    */
48   static Mode forBits(int bits) throws ReaderException {
49     switch (bits) {
50       case 0x0:
51         return TERMINATOR;
52       case 0x1:
53         return NUMERIC;
54       case 0x2:
55         return ALPHANUMERIC;
56       case 0x4:
57         return BYTE;
58       case 0x8:
59         return KANJI;
60       default:
61         throw new ReaderException("Illegal mode bits: " + bits);
62     }
63   }
64
65   /**
66    * @param version version in question
67    * @return number of bits used, in this QR Code symbol {@link Version}, to encode the
68    *         count of characters that will follow encoded in this {@link Mode}
69    */
70   int getCharacterCountBits(Version version) {
71     int number = version.getVersionNumber();
72     int offset;
73     if (number <= 9) {
74       offset = 0;
75     } else if (number <= 26) {
76       offset = 1;
77     } else {
78       offset = 2;
79     }
80     return characterCountBitsForVersions[offset];
81   }
82
83 }