Commit 9ea33f82 authored by captainwong's avatar captainwong

add QrCodeView

parent 591a2a52
/*
* QR Code generator library (C++)
*
* Copyright (c) Project Nayuki. (MIT License)
* 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.
*/
#include "BitBuffer.hpp"
namespace qrcodegen {
BitBuffer::BitBuffer()
: std::vector<bool>() {}
std::vector<std::uint8_t> BitBuffer::getBytes() const {
std::vector<std::uint8_t> result(size() / 8 + (size() % 8 == 0 ? 0 : 1));
for (std::size_t i = 0; i < size(); i++)
result[i >> 3] |= (*this)[i] ? 1 << (7 - (i & 7)) : 0;
return result;
}
void BitBuffer::appendBits(std::uint32_t val, int len) {
if (len < 0 || len > 31 || val >> len != 0)
throw "Value out of range";
for (int i = len - 1; i >= 0; i--) // Append bit by bit
this->push_back(((val >> i) & 1) != 0);
}
}
/*
* QR Code generator library (C++)
*
* Copyright (c) Project Nayuki. (MIT License)
* 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>
namespace qrcodegen {
/*
* An appendable sequence of bits (0's and 1's).
*/
class BitBuffer final : public std::vector<bool> {
/*---- Constructor ----*/
// Creates an empty bit buffer (length 0).
public: BitBuffer();
/*---- Methods ----*/
// Packs this buffer's bits into bytes in big endian,
// padding with '0' bit values, and returns the new vector.
public: std::vector<std::uint8_t> getBytes() const;
// Appends the given number of low bits of the given value
// to this sequence. Requires 0 <= val < 2^len.
public: void appendBits(std::uint32_t val, int len);
};
}
This diff is collapsed.
This diff is collapsed.
/*
* QR Code generator library (C++)
*
* Copyright (c) Project Nayuki. (MIT License)
* 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.
*/
#include <climits>
#include <cstring>
#include <utility>
#include "QrSegment.hpp"
using std::uint8_t;
using std::vector;
namespace qrcodegen {
QrSegment::Mode::Mode(int mode, int cc0, int cc1, int cc2) :
modeBits(mode) {
numBitsCharCount[0] = cc0;
numBitsCharCount[1] = cc1;
numBitsCharCount[2] = cc2;
}
int QrSegment::Mode::getModeBits() const {
return modeBits;
}
int QrSegment::Mode::numCharCountBits(int ver) const {
if ( 1 <= ver && ver <= 9) return numBitsCharCount[0];
else if (10 <= ver && ver <= 26) return numBitsCharCount[1];
else if (27 <= ver && ver <= 40) return numBitsCharCount[2];
else throw "Version number out of range";
}
const QrSegment::Mode QrSegment::Mode::NUMERIC (0x1, 10, 12, 14);
const QrSegment::Mode QrSegment::Mode::ALPHANUMERIC(0x2, 9, 11, 13);
const QrSegment::Mode QrSegment::Mode::BYTE (0x4, 8, 16, 16);
const QrSegment::Mode QrSegment::Mode::KANJI (0x8, 8, 10, 12);
const QrSegment::Mode QrSegment::Mode::ECI (0x7, 0, 0, 0);
QrSegment QrSegment::makeBytes(const vector<uint8_t> &data) {
if (data.size() > INT_MAX)
throw "Data too long";
BitBuffer bb;
for (uint8_t b : data)
bb.appendBits(b, 8);
return QrSegment(Mode::BYTE, static_cast<int>(data.size()), std::move(bb));
}
QrSegment QrSegment::makeNumeric(const char *digits) {
BitBuffer bb;
int accumData = 0;
int accumCount = 0;
int charCount = 0;
for (; *digits != '\0'; digits++, charCount++) {
char c = *digits;
if (c < '0' || c > '9')
throw "String contains non-numeric characters";
accumData = accumData * 10 + (c - '0');
accumCount++;
if (accumCount == 3) {
bb.appendBits(accumData, 10);
accumData = 0;
accumCount = 0;
}
}
if (accumCount > 0) // 1 or 2 digits remaining
bb.appendBits(accumData, accumCount * 3 + 1);
return QrSegment(Mode::NUMERIC, charCount, std::move(bb));
}
QrSegment QrSegment::makeAlphanumeric(const char *text) {
BitBuffer bb;
int accumData = 0;
int accumCount = 0;
int charCount = 0;
for (; *text != '\0'; text++, charCount++) {
const char *temp = std::strchr(ALPHANUMERIC_CHARSET, *text);
if (temp == nullptr)
throw "String contains unencodable characters in alphanumeric mode";
accumData = accumData * 45 + (temp - ALPHANUMERIC_CHARSET);
accumCount++;
if (accumCount == 2) {
bb.appendBits(accumData, 11);
accumData = 0;
accumCount = 0;
}
}
if (accumCount > 0) // 1 character remaining
bb.appendBits(accumData, 6);
return QrSegment(Mode::ALPHANUMERIC, charCount, std::move(bb));
}
vector<QrSegment> QrSegment::makeSegments(const char *text) {
// Select the most efficient segment encoding automatically
vector<QrSegment> result;
if (*text == '\0'); // Leave result empty
else if (isNumeric(text))
result.push_back(makeNumeric(text));
else if (isAlphanumeric(text))
result.push_back(makeAlphanumeric(text));
else {
vector<uint8_t> bytes;
for (; *text != '\0'; text++)
bytes.push_back(static_cast<uint8_t>(*text));
result.push_back(makeBytes(bytes));
}
return result;
}
QrSegment QrSegment::makeEci(long assignVal) {
BitBuffer bb;
if (0 <= assignVal && assignVal < (1 << 7))
bb.appendBits(assignVal, 8);
else if ((1 << 7) <= assignVal && assignVal < (1 << 14)) {
bb.appendBits(2, 2);
bb.appendBits(assignVal, 14);
} else if ((1 << 14) <= assignVal && assignVal < 1000000L) {
bb.appendBits(6, 3);
bb.appendBits(assignVal, 21);
} else
throw "ECI assignment value out of range";
return QrSegment(Mode::ECI, 0, std::move(bb));
}
QrSegment::QrSegment(Mode md, int numCh, const std::vector<bool> &dt) :
mode(md),
numChars(numCh),
data(dt) {
if (numCh < 0)
throw "Invalid value";
}
QrSegment::QrSegment(Mode md, int numCh, std::vector<bool> &&dt) :
mode(md),
numChars(numCh),
data(std::move(dt)) {
if (numCh < 0)
throw "Invalid value";
}
int QrSegment::getTotalBits(const vector<QrSegment> &segs, int version) {
if (version < 1 || version > 40)
throw "Version number out of range";
int result = 0;
for (const QrSegment &seg : segs) {
int ccbits = seg.mode.numCharCountBits(version);
// Fail if segment length value doesn't fit in the length field's bit-width
if (seg.numChars >= (1L << ccbits))
return -1;
if (4 + ccbits > INT_MAX - result)
return -1;
result += 4 + ccbits;
if (seg.data.size() > static_cast<unsigned int>(INT_MAX - result))
return -1;
result += static_cast<int>(seg.data.size());
}
return result;
}
bool QrSegment::isAlphanumeric(const char *text) {
for (; *text != '\0'; text++) {
if (std::strchr(ALPHANUMERIC_CHARSET, *text) == nullptr)
return false;
}
return true;
}
bool QrSegment::isNumeric(const char *text) {
for (; *text != '\0'; text++) {
char c = *text;
if (c < '0' || c > '9')
return false;
}
return true;
}
QrSegment::Mode QrSegment::getMode() const {
return mode;
}
int QrSegment::getNumChars() const {
return numChars;
}
const std::vector<bool> &QrSegment::getData() const {
return data;
}
const char *QrSegment::ALPHANUMERIC_CHARSET = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:";
}
/*
* QR Code generator library (C++)
*
* Copyright (c) Project Nayuki. (MIT License)
* 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>
#include "BitBuffer.hpp"
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.
*/
public: class Mode final {
/*-- Constants --*/
public: static const Mode NUMERIC;
public: static const Mode ALPHANUMERIC;
public: static const Mode BYTE;
public: static const Mode KANJI;
public: static const Mode ECI;
/*-- Fields --*/
private: int modeBits;
private: int numBitsCharCount[3];
/*-- Constructor --*/
private: Mode(int mode, int cc0, int cc1, int cc2);
/*-- Methods --*/
/*
* (Package-private) Returns the mode indicator bits, which is an unsigned 4-bit value (range 0 to 15).
*/
public: int getModeBits() const;
/*
* (Package-private) Returns the bit width of the segment character count field for this mode object at the given version number.
*/
public: int numCharCountBits(int ver) const;
};
/*---- Public static factory functions ----*/
/*
* Returns a segment representing the given binary data encoded in byte mode.
*/
public: static QrSegment makeBytes(const std::vector<std::uint8_t> &data);
/*
* Returns a segment representing the given string of decimal digits encoded in numeric mode.
*/
public: static QrSegment makeNumeric(const char *digits);
/*
* 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.
*/
public: static QrSegment makeAlphanumeric(const char *text);
/*
* 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.
*/
public: static std::vector<QrSegment> makeSegments(const char *text);
/*
* Returns a segment representing an Extended Channel Interpretation
* (ECI) designator with the given assignment value.
*/
public: static QrSegment makeEci(long assignVal);
/*---- Public static helper functions ----*/
/*
* Tests whether the given string can be encoded as a segment in alphanumeric mode.
*/
public: static bool isAlphanumeric(const char *text);
/*
* Tests whether the given string can be encoded as a segment in numeric mode.
*/
public: static bool isNumeric(const char *text);
/*---- Instance fields ----*/
/* The mode indicator for this segment. */
private: Mode mode;
/* The length of this segment's unencoded data, measured in characters. Always zero or positive. */
private: int numChars;
/* The data bits of this segment. */
private: std::vector<bool> data;
/*---- Constructors ----*/
/*
* Creates a new QR Code data segment with the given parameters and data.
*/
public: QrSegment(Mode md, int numCh, const std::vector<bool> &dt);
/*
* Creates a new QR Code data segment with the given parameters and data.
*/
public: QrSegment(Mode md, int numCh, std::vector<bool> &&dt);
/*---- Methods ----*/
public: Mode getMode() const;
public: int getNumChars() const;
public: const std::vector<bool> &getData() const;
// Package-private helper function.
public: static int getTotalBits(const std::vector<QrSegment> &segs, int version);
/*---- Private constant ----*/
/* 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;
};
}
...@@ -211,7 +211,8 @@ void HttpDlg::onFinished(QNetworkReply * reply) ...@@ -211,7 +211,8 @@ void HttpDlg::onFinished(QNetworkReply * reply)
break; break;
} }
MYQDEBUG << reply->url() << "reply:\n" << httpStatusCode_ << root_.toStyledString().data(); auto out = QString::fromUtf8(root_.toStyledString().data());
MYQDEBUG << reply->url() << "reply:\n" << httpStatusCode_ << out;
} while (false); } while (false);
......
#include "QrCodeView.h"
#include <QLabel>
#include <QPainter>
#include "../Util/qrcode/QrCode.hpp"
static void paintQR(QPainter& painter, const QSize sz, const QString& data, QColor fg)
{
// NOTE: At this point you will use the API to get the encoding and format you want, instead of my hardcoded stuff:
qrcodegen::QrCode qr = qrcodegen::QrCode::encodeText(data.toUtf8().constData(), qrcodegen::QrCode::Ecc::LOW);
const int s = qr.getSize() > 0 ? qr.getSize() : 1;
const double w = sz.width();
const double h = sz.height();
const double aspect = w / h;
const double size = ((aspect > 1.0) ? h : w);
const double scale = size / (s + 2);
// NOTE: For performance reasons my implementation only draws the foreground parts in supplied color.
// It expects background to be prepared already (in white or whatever is preferred).
painter.setPen(Qt::NoPen);
painter.setBrush(fg);
for (int y = 0; y < s; y++) {
for (int x = 0; x < s; x++) {
const int color = qr.getModule(x, y); // 0 for white, 1 for black
if (0 != color) {
const double rx1 = (x + 1) * scale, ry1 = (y + 1) * scale;
QRectF r(rx1, ry1, scale, scale);
painter.drawRects(&r, 1);
}
}
}
}
static QPixmap genQR(const QString& content, const QSize& size)
{
QPixmap pixmap(size);
pixmap.fill(Qt::white);
QPainter painter(&pixmap);
paintQR(painter, size, content, Qt::black);
return pixmap;
}
QrCodeView::QrCodeView(QWidget* parent, const QString& title, const QString& content, const QSize size)
: QDialog(parent)
{
create(title, size);
setContent(content);
}
QrCodeView::QrCodeView(QWidget* parent, const QString& title, const QPixmap& pixmap, const QSize size)
: QDialog(parent)
{
create(title, size);
setPixmap(pixmap);
}
void QrCodeView::create(const QString& title, QSize size)
{
setWindowTitle(title);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
if (!size.isValid()) {
size = { 400,400 };
}
setFixedSize(size);
label = new QLabel(this);
label->resize(size);
label->move(0, 0);
}
void QrCodeView::setContent(const QString& content)
{
setPixmap(genQR(content, size()));
}
void QrCodeView::setPixmap(const QPixmap& pixmap)
{
auto pix = pixmap.scaled(size());
label->setPixmap(pix);
update();
}
#pragma once
#include <QDialog>
#include <QPixmap>
class QLabel;
class QrCodeView : public QDialog
{
Q_OBJECT
public:
QrCodeView(QWidget* parent, const QString& title, const QString& content, const QSize size = QSize(400, 400));
QrCodeView(QWidget* parent, const QString& title, const QPixmap& pixmap, const QSize size = QSize(400, 400));
void setContent(const QString& content);
void setPixmap(const QPixmap& pixmap);
protected:
void create(const QString& title, QSize size);
private:
QLabel* label{};
};
...@@ -100,6 +100,9 @@ ...@@ -100,6 +100,9 @@
<ClCompile Include="ErrorCode.cpp" /> <ClCompile Include="ErrorCode.cpp" />
<ClCompile Include="Model\HttpDlgErrorCode.cpp" /> <ClCompile Include="Model\HttpDlgErrorCode.cpp" />
<ClCompile Include="qt.cpp" /> <ClCompile Include="qt.cpp" />
<ClCompile Include="Util\qrcode\BitBuffer.cpp" />
<ClCompile Include="Util\qrcode\QrCode.cpp" />
<ClCompile Include="Util\qrcode\QrSegment.cpp" />
<ClCompile Include="Util\QRunGuard.cpp" /> <ClCompile Include="Util\QRunGuard.cpp" />
<ClCompile Include="View\BaseScrollView.cpp" /> <ClCompile Include="View\BaseScrollView.cpp" />
<ClCompile Include="View\BgColorBtn.cpp" /> <ClCompile Include="View\BgColorBtn.cpp" />
...@@ -107,6 +110,7 @@ ...@@ -107,6 +110,7 @@
<ClCompile Include="View\HttpDlg.cpp" /> <ClCompile Include="View\HttpDlg.cpp" />
<ClCompile Include="View\IconBtn.cpp" /> <ClCompile Include="View\IconBtn.cpp" />
<ClCompile Include="View\ProgressDialog.cpp" /> <ClCompile Include="View\ProgressDialog.cpp" />
<ClCompile Include="View\QrCodeView.cpp" />
<ClCompile Include="View\TextMenu.cpp" /> <ClCompile Include="View\TextMenu.cpp" />
<ClCompile Include="View\TitleBar.cpp" /> <ClCompile Include="View\TitleBar.cpp" />
<ClCompile Include="View\PageView.cpp" /> <ClCompile Include="View\PageView.cpp" />
...@@ -115,7 +119,11 @@ ...@@ -115,7 +119,11 @@
<ItemGroup> <ItemGroup>
<ClInclude Include="Model\HttpDlgErrorCode.h" /> <ClInclude Include="Model\HttpDlgErrorCode.h" />
<ClInclude Include="resource.h" /> <ClInclude Include="resource.h" />
<ClInclude Include="Util\qrcode\BitBuffer.hpp" />
<ClInclude Include="Util\qrcode\QrCode.hpp" />
<ClInclude Include="Util\qrcode\QrSegment.hpp" />
<ClInclude Include="Util\QRunGuard.h" /> <ClInclude Include="Util\QRunGuard.h" />
<QtMoc Include="View\QrCodeView.h" />
<QtMoc Include="View\HttpDlg.h" /> <QtMoc Include="View\HttpDlg.h" />
<QtMoc Include="View\ProgressDialog.h" /> <QtMoc Include="View\ProgressDialog.h" />
<QtMoc Include="View\TextMenu.h" /> <QtMoc Include="View\TextMenu.h" />
......
...@@ -36,6 +36,9 @@ ...@@ -36,6 +36,9 @@
<Filter Include="Util"> <Filter Include="Util">
<UniqueIdentifier>{80767180-97c3-403d-8d10-8e7069736c61}</UniqueIdentifier> <UniqueIdentifier>{80767180-97c3-403d-8d10-8e7069736c61}</UniqueIdentifier>
</Filter> </Filter>
<Filter Include="Util\qrcode">
<UniqueIdentifier>{c05272cc-e848-4d62-91ca-ee3967256e0c}</UniqueIdentifier>
</Filter>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClCompile Include="qt.cpp"> <ClCompile Include="qt.cpp">
...@@ -80,6 +83,18 @@ ...@@ -80,6 +83,18 @@
<ClCompile Include="ErrorCode.cpp"> <ClCompile Include="ErrorCode.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="View\QrCodeView.cpp">
<Filter>View</Filter>
</ClCompile>
<ClCompile Include="Util\qrcode\BitBuffer.cpp">
<Filter>Util\qrcode</Filter>
</ClCompile>
<ClCompile Include="Util\qrcode\QrCode.cpp">
<Filter>Util\qrcode</Filter>
</ClCompile>
<ClCompile Include="Util\qrcode\QrSegment.cpp">
<Filter>Util\qrcode</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="qt.h"> <ClInclude Include="qt.h">
...@@ -118,6 +133,15 @@ ...@@ -118,6 +133,15 @@
<ClInclude Include="Model\HttpDlgErrorCode.h"> <ClInclude Include="Model\HttpDlgErrorCode.h">
<Filter>Model</Filter> <Filter>Model</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="Util\qrcode\BitBuffer.hpp">
<Filter>Util\qrcode</Filter>
</ClInclude>
<ClInclude Include="Util\qrcode\QrCode.hpp">
<Filter>Util\qrcode</Filter>
</ClInclude>
<ClInclude Include="Util\qrcode\QrSegment.hpp">
<Filter>Util\qrcode</Filter>
</ClInclude>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="qt_global.h"> <ClInclude Include="qt_global.h">
...@@ -155,6 +179,9 @@ ...@@ -155,6 +179,9 @@
<QtMoc Include="View\HttpDlg.h"> <QtMoc Include="View\HttpDlg.h">
<Filter>View</Filter> <Filter>View</Filter>
</QtMoc> </QtMoc>
<QtMoc Include="View\QrCodeView.h">
<Filter>View</Filter>
</QtMoc>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<QtUic Include="View\ProgressDialog.ui"> <QtUic Include="View\ProgressDialog.ui">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment