2016-04-15 04:26:37 +00:00
|
|
|
/*
|
|
|
|
* QR Code generator library (C++)
|
|
|
|
*
|
2017-04-24 20:41:54 +00:00
|
|
|
* Copyright (c) Project Nayuki. (MIT License)
|
2016-04-15 04:26:37 +00:00
|
|
|
* https://www.nayuki.io/page/qr-code-generator-library
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
* - The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
* - The Software is provided "as is", without warranty of any kind, express or
|
|
|
|
* implied, including but not limited to the warranties of merchantability,
|
|
|
|
* fitness for a particular purpose and noninfringement. In no event shall the
|
|
|
|
* authors or copyright holders be liable for any claim, damages or other
|
|
|
|
* liability, whether in an action of contract, tort or otherwise, arising from,
|
|
|
|
* out of or in connection with the Software or the use or other dealings in the
|
|
|
|
* Software.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <vector>
|
2017-08-17 21:29:15 +00:00
|
|
|
#include "BitBuffer.hpp"
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace qrcodegen {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Represents a character string to be encoded in a QR Code symbol. Each segment has
|
|
|
|
* a mode, and a sequence of characters that is already encoded as a sequence of bits.
|
|
|
|
* Instances of this class are immutable.
|
|
|
|
* This segment class imposes no length restrictions, but QR Codes have restrictions.
|
|
|
|
* Even in the most favorable conditions, a QR Code can only hold 7089 characters of data.
|
|
|
|
* Any segment longer than this is meaningless for the purpose of generating QR Codes.
|
|
|
|
*/
|
|
|
|
class QrSegment final {
|
|
|
|
|
|
|
|
/*---- Public helper enumeration ----*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The mode field of a segment. Immutable. Provides methods to retrieve closely related values.
|
|
|
|
*/
|
2017-04-08 22:54:11 +00:00
|
|
|
public: class Mode final {
|
2016-04-20 20:19:57 +00:00
|
|
|
|
|
|
|
/*-- Constants --*/
|
|
|
|
|
2017-04-08 22:54:11 +00:00
|
|
|
public: static const Mode NUMERIC;
|
|
|
|
public: static const Mode ALPHANUMERIC;
|
|
|
|
public: static const Mode BYTE;
|
|
|
|
public: static const Mode KANJI;
|
2017-05-08 18:04:10 +00:00
|
|
|
public: static const Mode ECI;
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*-- Fields --*/
|
|
|
|
|
2016-04-20 20:40:49 +00:00
|
|
|
/* (Package-private) An unsigned 4-bit integer value (range 0 to 15) representing the mode indicator bits for this mode object. */
|
2017-04-08 22:54:11 +00:00
|
|
|
public: const int modeBits;
|
2016-04-15 04:26:37 +00:00
|
|
|
|
2017-04-08 22:54:11 +00:00
|
|
|
private: int numBitsCharCount[3];
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
2016-04-20 20:19:57 +00:00
|
|
|
/*-- Constructor --*/
|
|
|
|
|
2017-04-08 22:54:11 +00:00
|
|
|
private: Mode(int mode, int cc0, int cc1, int cc2);
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*-- Method --*/
|
|
|
|
|
|
|
|
/*
|
2016-04-20 20:40:49 +00:00
|
|
|
* (Package-private) Returns the bit width of the segment character count field for this mode object at the given version number.
|
2016-04-15 04:26:37 +00:00
|
|
|
*/
|
2017-04-08 22:54:11 +00:00
|
|
|
public: int numCharCountBits(int ver) const;
|
2016-04-20 20:19:57 +00:00
|
|
|
|
2016-04-15 04:26:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-20 20:19:57 +00:00
|
|
|
/*---- Public static factory functions ----*/
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns a segment representing the given binary data encoded in byte mode.
|
|
|
|
*/
|
2017-05-05 20:55:32 +00:00
|
|
|
public: static QrSegment makeBytes(const std::vector<std::uint8_t> &data);
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns a segment representing the given string of decimal digits encoded in numeric mode.
|
|
|
|
*/
|
2017-04-08 22:54:11 +00:00
|
|
|
public: static QrSegment makeNumeric(const char *digits);
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns a segment representing the given text string encoded in alphanumeric mode. The characters allowed are:
|
|
|
|
* 0 to 9, A to Z (uppercase only), space, dollar, percent, asterisk, plus, hyphen, period, slash, colon.
|
|
|
|
*/
|
2017-04-08 22:54:11 +00:00
|
|
|
public: static QrSegment makeAlphanumeric(const char *text);
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
2016-04-16 01:44:24 +00:00
|
|
|
/*
|
|
|
|
* Returns a list of zero or more segments to represent the given text string.
|
|
|
|
* The result may use various segment modes and switch modes to optimize the length of the bit stream.
|
|
|
|
*/
|
2017-04-08 22:54:11 +00:00
|
|
|
public: static std::vector<QrSegment> makeSegments(const char *text);
|
2016-04-16 01:44:24 +00:00
|
|
|
|
|
|
|
|
2017-05-08 18:04:10 +00:00
|
|
|
/*
|
|
|
|
* Returns a segment representing an Extended Channel Interpretation (ECI) designator with the given assignment value.
|
|
|
|
*/
|
|
|
|
public: static QrSegment makeEci(long assignVal);
|
|
|
|
|
|
|
|
|
2016-04-20 20:19:57 +00:00
|
|
|
/*---- Public static helper functions ----*/
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Tests whether the given string can be encoded as a segment in alphanumeric mode.
|
|
|
|
*/
|
2017-04-08 22:54:11 +00:00
|
|
|
public: static bool isAlphanumeric(const char *text);
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tests whether the given string can be encoded as a segment in numeric mode.
|
|
|
|
*/
|
2017-04-08 22:54:11 +00:00
|
|
|
public: static bool isNumeric(const char *text);
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*---- Instance fields ----*/
|
|
|
|
|
|
|
|
/* The mode indicator for this segment. */
|
2017-04-08 22:54:11 +00:00
|
|
|
public: const Mode mode;
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
/* The length of this segment's unencoded data, measured in characters. Always zero or positive. */
|
2017-04-08 22:54:11 +00:00
|
|
|
public: const int numChars;
|
2016-04-15 04:26:37 +00:00
|
|
|
|
2017-08-17 21:49:53 +00:00
|
|
|
/* The data bits of this segment. */
|
2017-08-18 00:14:16 +00:00
|
|
|
public: const std::vector<bool> data;
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*---- Constructor ----*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Creates a new QR Code data segment with the given parameters and data.
|
|
|
|
*/
|
2017-08-18 00:14:16 +00:00
|
|
|
public: QrSegment(const Mode &md, int numCh, const std::vector<bool> &dt);
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
|
2016-04-16 03:53:58 +00:00
|
|
|
// Package-private helper function.
|
2017-04-08 22:54:11 +00:00
|
|
|
public: static int getTotalBits(const std::vector<QrSegment> &segs, int version);
|
2016-04-16 03:53:58 +00:00
|
|
|
|
|
|
|
|
2016-04-20 20:19:57 +00:00
|
|
|
/*---- Private constant ----*/
|
2016-04-15 04:26:37 +00:00
|
|
|
|
2017-05-08 06:10:56 +00:00
|
|
|
/* The set of all legal characters in alphanumeric mode, where each character value maps to the index in the string. */
|
|
|
|
private: static const char *ALPHANUMERIC_CHARSET;
|
2016-04-15 04:26:37 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|