Compare commits
2 Commits
d98399949c
...
fix-logger
Author | SHA1 | Date | |
---|---|---|---|
3fd6671048
|
|||
a08f6167b3
|
@@ -41,7 +41,7 @@ BreakBeforeBinaryOperators: None
|
|||||||
BreakBeforeTernaryOperators: true
|
BreakBeforeTernaryOperators: true
|
||||||
BreakConstructorInitializers: BeforeColon
|
BreakConstructorInitializers: BeforeColon
|
||||||
BreakInheritanceList: BeforeColon
|
BreakInheritanceList: BeforeColon
|
||||||
ColumnLimit: 120
|
ColumnLimit: 100
|
||||||
CompactNamespaces: false
|
CompactNamespaces: false
|
||||||
ContinuationIndentWidth: 4
|
ContinuationIndentWidth: 4
|
||||||
Cpp11BracedListStyle: true
|
Cpp11BracedListStyle: true
|
||||||
|
@@ -14,7 +14,7 @@ jobs:
|
|||||||
- name: install meson
|
- name: install meson
|
||||||
run: apt-get -yq install meson
|
run: apt-get -yq install meson
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: apt-get -yq install libusb-1.0-0-dev libspdlog-dev libfmt-dev libpango1.0-dev libcairo2-dev gcovr
|
run: apt-get -yq install libusb-1.0-0-dev libspdlog-dev libpango1.0-dev libcairo2-dev gcovr
|
||||||
- name: setup builddir
|
- name: setup builddir
|
||||||
run: meson setup builddir -Db_coverage=true
|
run: meson setup builddir -Db_coverage=true
|
||||||
- name: build all targets
|
- name: build all targets
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@@ -6,7 +6,6 @@ subprojects/*
|
|||||||
coverageReport/
|
coverageReport/
|
||||||
|
|
||||||
# Files
|
# Files
|
||||||
ptprnt.log
|
|
||||||
!subprojects/*.wrap
|
!subprojects/*.wrap
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/c_cpp_properties.json
|
!.vscode/c_cpp_properties.json
|
||||||
|
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
@@ -85,9 +85,5 @@
|
|||||||
},
|
},
|
||||||
"clang-tidy.buildPath": "builddir/",
|
"clang-tidy.buildPath": "builddir/",
|
||||||
"clangd.onConfigChanged": "restart",
|
"clangd.onConfigChanged": "restart",
|
||||||
"C_Cpp.default.compileCommands": "/home/moritz/src/ptouch-prnt/builddir/compile_commands.json",
|
"C_Cpp.default.compileCommands": "builddir/compile_commands.json"
|
||||||
"gcovViewer.buildDirectories": [
|
|
||||||
"/home/moritz/Projekte/ptouch-prnt/builddir"
|
|
||||||
],
|
|
||||||
"C_Cpp.default.configurationProvider": "mesonbuild.mesonbuild"
|
|
||||||
}
|
}
|
||||||
|
@@ -19,7 +19,7 @@ pacman -S libusb spdlog pango cairo meson gcovr
|
|||||||
|
|
||||||
Install dependencies on Debian/Ubuntu
|
Install dependencies on Debian/Ubuntu
|
||||||
``` bash
|
``` bash
|
||||||
apt-get install libusb-1.0-0-dev libspdlog-dev libfmt-dev libpango1.0-dev libcairo2-dev meson gcovr
|
apt-get install libusb-1.0-0-dev libspdlog-dev libpango1.0-dev libcairo2-dev meson gcovr
|
||||||
```
|
```
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
SCRIPT_PATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
SCRIPT_PATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
||||||
HTML_COV_PATH="coverageReport/html"
|
HTML_COV_PATH="coverageReport/html"
|
||||||
XML_COV_PATH="coverageReport/xml"
|
|
||||||
HTML_START_FILE="index.html"
|
HTML_START_FILE="index.html"
|
||||||
|
|
||||||
echo "Generating Coverage report for ptouch-prnt"
|
echo "Generating Coverage report for ptouch-prnt"
|
||||||
@@ -13,9 +12,6 @@ ninja -C builddir test
|
|||||||
mkdir -p ${HTML_COV_PATH}
|
mkdir -p ${HTML_COV_PATH}
|
||||||
gcovr --html --html-details --html-syntax-highlighting --filter src --output ${HTML_COV_PATH}/${HTML_START_FILE}
|
gcovr --html --html-details --html-syntax-highlighting --filter src --output ${HTML_COV_PATH}/${HTML_START_FILE}
|
||||||
|
|
||||||
mkdir -p ${XML_COV_PATH}
|
|
||||||
gcovr --xml-pretty --filter src --output ${XML_COV_PATH}/cov.xml
|
|
||||||
|
|
||||||
if [ $? ]
|
if [ $? ]
|
||||||
then
|
then
|
||||||
echo "Coverage report successful generated!"
|
echo "Coverage report successful generated!"
|
||||||
@@ -23,5 +19,3 @@ then
|
|||||||
else
|
else
|
||||||
echo "Error generating coverage report!"
|
echo "Error generating coverage report!"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rm *.gcov
|
|
@@ -1,12 +1,11 @@
|
|||||||
project('ptprnt', 'cpp',
|
project('ptprnt', 'cpp',
|
||||||
version: 'v0.1.0-'+run_command('git', 'rev-parse', '--short', 'HEAD', check: true).stdout().strip(),
|
version: 'v0.1.0-'+run_command('git', 'rev-parse', '--short', 'HEAD', check: true).stdout().strip(),
|
||||||
license: 'GPLv3',
|
license: 'GPLv3',
|
||||||
default_options : ['c_std=c11', 'cpp_std=c++20', 'b_sanitize=none', 'b_lto=true', 'b_lto_mode=thin', 'b_thinlto_cache=true']
|
default_options : ['c_std=c11', 'cpp_std=c++17']
|
||||||
)
|
)
|
||||||
|
|
||||||
usb_dep = dependency('libusb-1.0')
|
usb_dep = dependency('libusb-1.0')
|
||||||
log_dep = dependency('spdlog')
|
log_dep = dependency('spdlog')
|
||||||
fmt_dep = dependency('fmt')
|
|
||||||
pangocairo_dep = dependency('pangocairo')
|
pangocairo_dep = dependency('pangocairo')
|
||||||
|
|
||||||
# CLI11
|
# CLI11
|
||||||
@@ -24,7 +23,7 @@ ptprnt_exe = executable(
|
|||||||
'ptprnt',
|
'ptprnt',
|
||||||
'src/main.cpp',
|
'src/main.cpp',
|
||||||
install: true,
|
install: true,
|
||||||
dependencies : [usb_dep, log_dep, fmt_dep, pangocairo_dep, cli11_dep],
|
dependencies : [usb_dep, log_dep, pangocairo_dep, cli11_dep],
|
||||||
include_directories: incdir,
|
include_directories: incdir,
|
||||||
sources: [ptprnt_srcs],
|
sources: [ptprnt_srcs],
|
||||||
cpp_args : ['-DPROJ_VERSION="'+meson.project_version()+'"'],
|
cpp_args : ['-DPROJ_VERSION="'+meson.project_version()+'"'],
|
||||||
|
@@ -19,15 +19,20 @@
|
|||||||
|
|
||||||
#include "P700Printer.hpp"
|
#include "P700Printer.hpp"
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
#include <spdlog/spdlog.h>
|
#include <spdlog/spdlog.h>
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
#include <iostream>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
|
#include <ratio>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "graphics/Bitmap.hpp"
|
#include "graphics/Bitmap.hpp"
|
||||||
|
#include "graphics/Image.hpp"
|
||||||
#include "graphics/Monochrome.hpp"
|
#include "graphics/Monochrome.hpp"
|
||||||
|
#include "libusb.h"
|
||||||
#include "libusbwrap/LibUsbTypes.hpp"
|
#include "libusbwrap/LibUsbTypes.hpp"
|
||||||
#include "spdlog/fmt/bin_to_hex.h"
|
#include "spdlog/fmt/bin_to_hex.h"
|
||||||
|
|
||||||
@@ -36,12 +41,6 @@
|
|||||||
|
|
||||||
namespace ptprnt::printer {
|
namespace ptprnt::printer {
|
||||||
|
|
||||||
const PrinterInfo P700Printer::mInfo = {.driverName = "P700",
|
|
||||||
.name = "Brother P-touch P700",
|
|
||||||
.version = "v1.0",
|
|
||||||
.usbId{0x04f9, 0x2061},
|
|
||||||
.pixelLines = 128};
|
|
||||||
|
|
||||||
P700Printer::~P700Printer() {
|
P700Printer::~P700Printer() {
|
||||||
detachUsbDevice();
|
detachUsbDevice();
|
||||||
if (mUsbHndl) {
|
if (mUsbHndl) {
|
||||||
@@ -67,21 +66,26 @@ const PrinterInfo P700Printer::getPrinterInfo() {
|
|||||||
|
|
||||||
const PrinterStatus P700Printer::getPrinterStatus() {
|
const PrinterStatus P700Printer::getPrinterStatus() {
|
||||||
using namespace std::chrono_literals;
|
using namespace std::chrono_literals;
|
||||||
send(p700::commands::GET_STATUS);
|
std::vector<uint8_t> getStatusCmd({0x1b, 0x69, 0x53}); // status info request
|
||||||
|
send(getStatusCmd);
|
||||||
|
|
||||||
int tx = 0;
|
int tx = 0;
|
||||||
int tries = 0;
|
int tries = 0;
|
||||||
std::vector<uint8_t> recvBuf(32);
|
std::vector<uint8_t> recvBuf(32);
|
||||||
while (tries++ < MAX_TRIES_GET_STATUS) {
|
while (tries++ < MAX_TRIES_GET_STATUS) {
|
||||||
std::this_thread::sleep_for(100ms);
|
std::this_thread::sleep_for(100ms);
|
||||||
mUsbHndl->bulkTransfer(p700::commands::PRINTER_INFO[0], recvBuf, &tx, 0);
|
mUsbHndl->bulkTransfer(commands["printerinfo"][0], recvBuf, &tx, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
return PrinterStatus{.tapeWidthMm = recvBuf[10]};
|
return PrinterStatus{.tapeWidthMm = recvBuf[10]};
|
||||||
}
|
}
|
||||||
|
|
||||||
const libusbwrap::usbId P700Printer::getUsbId() {
|
const uint16_t P700Printer::getVid() {
|
||||||
return mInfo.usbId;
|
return mInfo.vid;
|
||||||
|
}
|
||||||
|
|
||||||
|
const uint16_t P700Printer::getPid() {
|
||||||
|
return mInfo.pid;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool P700Printer::attachUsbDevice(std::shared_ptr<libusbwrap::IUsbDevice> usbHndl) {
|
bool P700Printer::attachUsbDevice(std::shared_ptr<libusbwrap::IUsbDevice> usbHndl) {
|
||||||
@@ -118,23 +122,21 @@ bool P700Printer::detachUsbDevice() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool P700Printer::printBitmap(const graphics::Bitmap<graphics::ALPHA8>& bitmap) {
|
bool P700Printer::printBitmap(const graphics::Bitmap<graphics::ALPHA8>& bitmap) {
|
||||||
#ifdef DRYRUN
|
auto bm = graphics::Bitmap<graphics::ALPHA8>(512, 128);
|
||||||
SPDLOG_DEBUG("DRYRUN enabled");
|
{
|
||||||
for (unsigned int lineNo = 0; lineNo < bitmap.getHeight(); lineNo++) {
|
auto img = graphics::Image();
|
||||||
auto line = bitmap.getLine(lineNo);
|
bm.setPixels(std::vector<uint8_t>(img.getRaw(), img.getRaw() + 512 * 128));
|
||||||
auto monoLine = graphics::Monochrome(*line);
|
|
||||||
monoLine.visualize();
|
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
send(p700::commands::RASTER_START);
|
send(commands["rasterstart"]);
|
||||||
|
|
||||||
std::vector<uint8_t> rastercmd(4);
|
std::vector<uint8_t> rastercmd(4);
|
||||||
rastercmd[0] = 0x47;
|
rastercmd[0] = 0x47;
|
||||||
rastercmd[1] = 0x00; // size +1
|
rastercmd[1] = 0x00; // size +1
|
||||||
rastercmd[2] = 0x00;
|
rastercmd[2] = 0x00;
|
||||||
rastercmd[3] = 0x00; // size -1
|
rastercmd[3] = 0x00; // size -1
|
||||||
for (unsigned int i = 0; i < bitmap.getWidth(); i++) {
|
for (unsigned int i = 0; i < bm.getWidth(); i++) {
|
||||||
auto bmcol = bitmap.getCol(i);
|
auto bmcol = bm.getCol(i);
|
||||||
if (!bmcol) {
|
if (!bmcol) {
|
||||||
spdlog::error("Out of bounds bitmap access");
|
spdlog::error("Out of bounds bitmap access");
|
||||||
break;
|
break;
|
||||||
@@ -149,43 +151,22 @@ bool P700Printer::printBitmap(const graphics::Bitmap<graphics::ALPHA8>& bitmap)
|
|||||||
buf[1] = col.size() + 1;
|
buf[1] = col.size() + 1;
|
||||||
buf[3] = col.size() - 1;
|
buf[3] = col.size() - 1;
|
||||||
if (!send(buf)) {
|
if (!send(buf)) {
|
||||||
spdlog::error("Error sending buffer to printer");
|
|
||||||
break;
|
break;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
send(p700::commands::EJECT);
|
send(commands["eject"]);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool P700Printer::setText(const std::string& text) {
|
bool P700Printer::printText(const std::string& text, uint16_t fontSize) {
|
||||||
return true;
|
send(commands["lf"]);
|
||||||
};
|
send(commands["ff"]);
|
||||||
|
send(commands["eject"]);
|
||||||
bool P700Printer::setFont(const std::string& text) {
|
|
||||||
return true;
|
|
||||||
};
|
|
||||||
|
|
||||||
bool P700Printer::setFontSize(uint8_t fontSize) {
|
|
||||||
return true;
|
|
||||||
};
|
|
||||||
|
|
||||||
bool P700Printer::setHAlign(HAlignPosition hpos) {
|
|
||||||
return true;
|
|
||||||
};
|
|
||||||
|
|
||||||
bool P700Printer::setVAlign(VAlignPosition vpos) {
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool P700Printer::print() {
|
bool P700Printer::send(std::vector<uint8_t>& data) {
|
||||||
send(p700::commands::LF);
|
|
||||||
send(p700::commands::FF);
|
|
||||||
send(p700::commands::EJECT);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool P700Printer::send(const std::vector<uint8_t>& data) {
|
|
||||||
|
|
||||||
if (mUsbHndl == nullptr || data.size() > 128) {
|
if (mUsbHndl == nullptr || data.size() > 128) {
|
||||||
spdlog::error("Invalid device handle or invalid data.");
|
spdlog::error("Invalid device handle or invalid data.");
|
||||||
@@ -201,11 +182,12 @@ bool P700Printer::send(const std::vector<uint8_t>& data) {
|
|||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
tx = data.size();
|
tx = data.size();
|
||||||
spdlog::info("USB raw data(len {}): {}", data.size(), spdlog::to_hex(data));
|
spdlog::debug("USB raw data(len {}): {}", data.size(), spdlog::to_hex(data));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (tx != static_cast<int>(data.size())) {
|
if (tx != static_cast<int>(data.size())) {
|
||||||
spdlog::error("Could not transfer all data via USB bulk transfer. Only sent {} of {} bytes", tx, data.size());
|
spdlog::error("Could not transfer all data via USB bulk transfer. Only send {} of {} bytes",
|
||||||
|
tx, data.size());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -17,37 +17,26 @@
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <spdlog/spdlog.h>
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
#include <map>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "interface/IPrinterDriver.hpp"
|
#include "interface/IPrinterDriver.hpp"
|
||||||
#include "interface/IPrinterTypes.hpp"
|
#include "interface/IPrinterTypes.hpp"
|
||||||
#include "libusbwrap/LibUsbTypes.hpp"
|
|
||||||
#include "libusbwrap/interface/IUsbDevice.hpp"
|
#include "libusbwrap/interface/IUsbDevice.hpp"
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
namespace ptprnt::printer {
|
namespace ptprnt::printer {
|
||||||
namespace p700::commands {
|
|
||||||
const cmd_T GET_STATUS{0x1b, 0x69, 0x53};
|
|
||||||
const cmd_T RASTER_START{0x1b, 0x69, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
|
||||||
const cmd_T INFO{0x1b, 0x69, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
|
||||||
const cmd_T PACKBITSON{0x02};
|
|
||||||
const cmd_T LF{0x5a};
|
|
||||||
const cmd_T FF{0x0c};
|
|
||||||
const cmd_T EJECT{0x1a};
|
|
||||||
const cmd_T PRINTER_INFO{0x81};
|
|
||||||
} // namespace p700::commands
|
|
||||||
|
|
||||||
constexpr uint8_t MAX_TRIES_GET_STATUS = 10;
|
constexpr uint8_t MAX_TRIES_GET_STATUS = 10;
|
||||||
|
|
||||||
class P700Printer : public ::ptprnt::IPrinterDriver {
|
class P700Printer : public ::ptprnt::IPrinterDriver {
|
||||||
public:
|
public:
|
||||||
P700Printer() = default;
|
P700Printer() = default;
|
||||||
~P700Printer() override;
|
~P700Printer();
|
||||||
|
|
||||||
// delete copy ctor and assignment
|
// delete copy ctor and assignment
|
||||||
P700Printer(const P700Printer&) = default;
|
P700Printer(const P700Printer&) = default;
|
||||||
@@ -55,30 +44,40 @@ class P700Printer : public ::ptprnt::IPrinterDriver {
|
|||||||
P700Printer(P700Printer&&) = default;
|
P700Printer(P700Printer&&) = default;
|
||||||
P700Printer& operator=(P700Printer&&) = default;
|
P700Printer& operator=(P700Printer&&) = default;
|
||||||
|
|
||||||
// Printer info has to be static to be accessed without instantiation
|
|
||||||
static const PrinterInfo mInfo;
|
|
||||||
|
|
||||||
// IPrinterDriver
|
// IPrinterDriver
|
||||||
[[nodiscard]] const std::string_view getDriverName() override;
|
const std::string_view getDriverName() override;
|
||||||
[[nodiscard]] const std::string_view getName() override;
|
const std::string_view getName() override;
|
||||||
[[nodiscard]] const libusbwrap::usbId getUsbId() override;
|
const uint16_t getPid() override;
|
||||||
[[nodiscard]] const std::string_view getVersion() override;
|
const uint16_t getVid() override;
|
||||||
[[nodiscard]] const PrinterInfo getPrinterInfo() override;
|
const std::string_view getVersion() override;
|
||||||
[[nodiscard]] const PrinterStatus getPrinterStatus() override;
|
const PrinterInfo getPrinterInfo() override;
|
||||||
|
const PrinterStatus getPrinterStatus() override;
|
||||||
bool attachUsbDevice(std::shared_ptr<libusbwrap::IUsbDevice> usbHndl) override;
|
bool attachUsbDevice(std::shared_ptr<libusbwrap::IUsbDevice> usbHndl) override;
|
||||||
bool detachUsbDevice() override;
|
bool detachUsbDevice() override;
|
||||||
bool setText(const std::string& text) override;
|
|
||||||
bool setFont(const std::string& text) override;
|
|
||||||
bool setFontSize(uint8_t fontSize) override;
|
|
||||||
bool setHAlign(HAlignPosition hpos) override;
|
|
||||||
bool setVAlign(VAlignPosition vpos) override;
|
|
||||||
bool printBitmap(const graphics::Bitmap<graphics::ALPHA8>& bitmap) override;
|
bool printBitmap(const graphics::Bitmap<graphics::ALPHA8>& bitmap) override;
|
||||||
bool print() override;
|
bool printText(const std::string& text, uint16_t fontSize) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool send(const std::vector<uint8_t>& data);
|
bool send(std::vector<uint8_t>& data);
|
||||||
bool init();
|
bool init();
|
||||||
|
|
||||||
std::shared_ptr<libusbwrap::IUsbDevice> mUsbHndl{nullptr};
|
std::shared_ptr<libusbwrap::IUsbDevice> mUsbHndl{nullptr};
|
||||||
|
|
||||||
|
static constexpr PrinterInfo mInfo{.driverName = "P700",
|
||||||
|
.name = "Brother P-touch P700",
|
||||||
|
.version = "v1.0",
|
||||||
|
.vid = 0x04f9,
|
||||||
|
.pid = 0x2061};
|
||||||
|
std::map<std::string, std::vector<uint8_t>> commands{
|
||||||
|
{"rasterstart",
|
||||||
|
{0x1b, 0x69, 0x61,
|
||||||
|
0x01}}, // unique for P700, other printers have the 2 byte set to 0x52 instead of 0x61
|
||||||
|
{"info", {0x1b, 0x69, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}},
|
||||||
|
{"packbitson", {0x02}},
|
||||||
|
{"lf", {0x5a}},
|
||||||
|
{"ff", {0x0c}},
|
||||||
|
{"eject", {0x1a}},
|
||||||
|
{"printerinfo", {0x81}}};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ptprnt::printer
|
} // namespace ptprnt::printer
|
@@ -1,23 +0,0 @@
|
|||||||
#include "PrinterDriverFactory.hpp"
|
|
||||||
|
|
||||||
#include <spdlog/spdlog.h>
|
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
|
|
||||||
#include "P700Printer.hpp"
|
|
||||||
#include "libusbwrap/LibUsbTypes.hpp"
|
|
||||||
|
|
||||||
namespace ptprnt {
|
|
||||||
|
|
||||||
std::shared_ptr<IPrinterDriver> PrinterDriverFactory::create(libusbwrap::usbId id) {
|
|
||||||
|
|
||||||
if (printer::P700Printer::mInfo.usbId == id) {
|
|
||||||
spdlog::info("Found printer P700!");
|
|
||||||
return std::make_shared<printer::P700Printer>();
|
|
||||||
} else {
|
|
||||||
spdlog::trace("{:04x}:{:04x} is not a compatible printer", id.first, id.second);
|
|
||||||
}
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace ptprnt
|
|
@@ -1,22 +0,0 @@
|
|||||||
#include <memory>
|
|
||||||
#include "interface/IPrinterDriver.hpp"
|
|
||||||
#include "libusbwrap/LibUsbTypes.hpp"
|
|
||||||
|
|
||||||
namespace ptprnt {
|
|
||||||
|
|
||||||
class PrinterDriverFactory {
|
|
||||||
public:
|
|
||||||
PrinterDriverFactory() = default;
|
|
||||||
~PrinterDriverFactory() = default;
|
|
||||||
|
|
||||||
PrinterDriverFactory(const PrinterDriverFactory&) = delete;
|
|
||||||
PrinterDriverFactory& operator=(const PrinterDriverFactory&) = delete;
|
|
||||||
PrinterDriverFactory(PrinterDriverFactory&&) = delete;
|
|
||||||
PrinterDriverFactory& operator=(PrinterDriverFactory&&) = delete;
|
|
||||||
|
|
||||||
std::shared_ptr<IPrinterDriver> create(libusbwrap::usbId id);
|
|
||||||
|
|
||||||
private:
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
@@ -16,30 +16,18 @@
|
|||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
#include <cstdint>
|
|
||||||
#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_TRACE
|
#include "PtouchPrint.hpp"
|
||||||
#define SPDLOG_DEBUG_ON
|
|
||||||
#define SPDLOG_TRACE_ON
|
|
||||||
|
|
||||||
#include <CLI/App.hpp>
|
#include <CLI/App.hpp>
|
||||||
#include <fmt/core.h>
|
|
||||||
#include <spdlog/common.h>
|
#include <spdlog/common.h>
|
||||||
#include <spdlog/details/synchronous_factory.h>
|
|
||||||
#include <spdlog/logger.h>
|
|
||||||
#include <spdlog/sinks/base_sink.h>
|
|
||||||
#include <spdlog/sinks/basic_file_sink.h>
|
|
||||||
#include <spdlog/sinks/stdout_color_sinks.h>
|
|
||||||
#include <spdlog/spdlog.h>
|
#include <spdlog/spdlog.h>
|
||||||
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <memory>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
#include "CLI/Option.hpp"
|
#include "CLI/Option.hpp"
|
||||||
#include "PrinterDriverFactory.hpp"
|
#include "P700Printer.hpp"
|
||||||
#include "PtouchPrint.hpp"
|
|
||||||
#include "graphics/Bitmap.hpp"
|
#include "graphics/Bitmap.hpp"
|
||||||
#include "graphics/Label.hpp"
|
|
||||||
#include "libusbwrap/UsbDeviceFactory.hpp"
|
#include "libusbwrap/UsbDeviceFactory.hpp"
|
||||||
|
|
||||||
namespace ptprnt {
|
namespace ptprnt {
|
||||||
@@ -57,118 +45,81 @@ int PtouchPrint::init(int argc, char** argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (mVerboseFlag) {
|
if (mVerboseFlag) {
|
||||||
setupLogger(spdlog::level::debug);
|
setupLogger(spdlog::level::trace);
|
||||||
} else {
|
} else {
|
||||||
setupLogger(spdlog::level::warn);
|
setupLogger(spdlog::level::critical);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!mUsbDeviceFactory.init()) {
|
if (!mUsbDeviceFactory.init()) {
|
||||||
spdlog::error("Could not initialize libusb");
|
spdlog::error("Could not initialize libusb");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
mCompatiblePrinters = {std::make_shared<ptprnt::printer::P700Printer>()};
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int PtouchPrint::run() {
|
int PtouchPrint::run() {
|
||||||
spdlog::info("ptprnt version {}", mVersionString);
|
auto numFoundPrinters = getCompatiblePrinters();
|
||||||
SPDLOG_TRACE("testing trace");
|
|
||||||
mDetectedPrinters = getCompatiblePrinters();
|
|
||||||
auto numFoundPrinters = mDetectedPrinters.size();
|
|
||||||
if (numFoundPrinters == 0) {
|
if (numFoundPrinters == 0) {
|
||||||
spdlog::error("No compatible printers found, please make sure that they are turned on and connected");
|
spdlog::error(
|
||||||
|
"No compatible printers found, please make sure if they are turned on and connected");
|
||||||
return -1;
|
return -1;
|
||||||
} else if (numFoundPrinters > 1) {
|
} else if (numFoundPrinters > 1) {
|
||||||
spdlog::warn("Found more than one compatible printer. Currently not supported.");
|
spdlog::warn("Found more than one compatible printer. Currently not supported.");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto printer = mDetectedPrinters[0];
|
auto printer = mCompatiblePrinters[0];
|
||||||
const auto printerUsbId = printer->getUsbId();
|
auto devices = mUsbDeviceFactory.findDevices(printer->getVid(), printer->getPid());
|
||||||
auto devices = mUsbDeviceFactory.findDevices(printerUsbId.first, printerUsbId.second);
|
|
||||||
if (devices.size() != 1) {
|
if (devices.size() != 1) {
|
||||||
spdlog::warn("Found more than one device of the same printer on bus. Currently not supported");
|
spdlog::warn(
|
||||||
|
"Found more than one device of the same printer on bus. Currently not supported");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
printer->attachUsbDevice(std::move(devices[0]));
|
printer->attachUsbDevice(devices[0]);
|
||||||
auto status = printer->getPrinterStatus();
|
auto status = printer->getPrinterStatus();
|
||||||
spdlog::info("Detected tape width is {}mm", status.tapeWidthMm);
|
spdlog::info("Detected tape width is {}mm", status.tapeWidthMm);
|
||||||
|
auto bm = ptprnt::graphics::Bitmap<ptprnt::graphics::ALPHA8>(512, 128);
|
||||||
if (0 == mCommands.size()) {
|
//printer->printBitmap(bm);
|
||||||
spdlog::warn("No command specified, nothing to do...");
|
//printer->printText("wurst", 1);
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (auto& cmd : mCommands) {
|
for (auto& cmd : mCommands) {
|
||||||
switch (cmd.first) {
|
std::cout << cmd.second << std::endl;
|
||||||
case CliCmdType::Text:
|
|
||||||
spdlog::debug("Setting text to {}", cmd.second);
|
|
||||||
printer->setText(cmd.second);
|
|
||||||
break;
|
|
||||||
case CliCmdType::Font:;
|
|
||||||
spdlog::debug("Setting font to {}", cmd.second);
|
|
||||||
printer->setFont(cmd.second);
|
|
||||||
break;
|
|
||||||
case CliCmdType::FontSize:;
|
|
||||||
spdlog::debug("Setting font size to {}", cmd.second);
|
|
||||||
printer->setFontSize(static_cast<uint8_t>(std::atoi(cmd.second.c_str())));
|
|
||||||
break;
|
|
||||||
case CliCmdType::HAlign:;
|
|
||||||
spdlog::debug("[Not implemented] Setting text horizontal alignment to {}", cmd.second);
|
|
||||||
break;
|
|
||||||
case CliCmdType::VAlign:;
|
|
||||||
spdlog::debug("[Not implemented] Setting text vertical alignment to {}", cmd.second);
|
|
||||||
break;
|
|
||||||
case CliCmdType::None:;
|
|
||||||
[[fallthrough]];
|
|
||||||
default:
|
|
||||||
spdlog::warn("This command is currently not supported.");
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
/*if (!printer->print()) {
|
|
||||||
spdlog::error("An error occured while printing");
|
|
||||||
return -1;
|
|
||||||
}*/
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::shared_ptr<IPrinterDriver>> PtouchPrint::getCompatiblePrinters() {
|
unsigned int PtouchPrint::getCompatiblePrinters() {
|
||||||
|
|
||||||
auto usbDevs = mUsbDeviceFactory.findAllDevices();
|
auto usbDevs = mUsbDeviceFactory.findAllDevices();
|
||||||
auto driverFactory = std::make_unique<PrinterDriverFactory>();
|
|
||||||
std::vector<std::shared_ptr<IPrinterDriver>> foundPrinterDrivers{};
|
|
||||||
|
|
||||||
for (auto& usbDev : usbDevs) {
|
for (auto usbDev : usbDevs) {
|
||||||
auto driver = driverFactory->create(usbDev->getUsbId());
|
auto foundPrinterIt =
|
||||||
if (driver != nullptr) {
|
std::find_if(mCompatiblePrinters.begin(), mCompatiblePrinters.end(),
|
||||||
foundPrinterDrivers.push_back(driver);
|
[usbDev](const std::shared_ptr<ptprnt::IPrinterDriver>& printer) {
|
||||||
|
return printer->getPid() == usbDev->getPid() &&
|
||||||
|
printer->getVid() == usbDev->getVid();
|
||||||
|
});
|
||||||
|
if (foundPrinterIt == mCompatiblePrinters.end()) {
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
auto foundPrinter = *foundPrinterIt;
|
||||||
|
spdlog::info("Found Printer {}", foundPrinter->getName());
|
||||||
|
mDetectedPrinters.push_back(foundPrinter);
|
||||||
}
|
}
|
||||||
return foundPrinterDrivers;
|
// we can delete all instantiated printers that are not compatible
|
||||||
|
mCompatiblePrinters.clear();
|
||||||
|
return mDetectedPrinters.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PtouchPrint::setupLogger(spdlog::level::level_enum lvl) {
|
void PtouchPrint::setupLogger(spdlog::level::level_enum lvl) {
|
||||||
auto consoleSink = std::make_shared<spdlog::sinks::stdout_color_sink_mt>();
|
spdlog::set_level(lvl);
|
||||||
consoleSink->set_level(lvl);
|
spdlog::debug("Starting ptprnt {}", mVersionString);
|
||||||
if (spdlog::level::level_enum::debug == lvl || spdlog::level::level_enum::trace == lvl) {
|
|
||||||
// This will enable file and line number for debug and trace macros
|
|
||||||
consoleSink->set_pattern("%^%L:%$ %v (%s:%#)");
|
|
||||||
} else {
|
|
||||||
consoleSink->set_pattern("%^%L:%$ %v");
|
|
||||||
}
|
|
||||||
|
|
||||||
auto fileSink = std::make_shared<spdlog::sinks::basic_file_sink_mt>("ptprnt.log", true);
|
|
||||||
fileSink->set_level(spdlog::level::trace);
|
|
||||||
fileSink->set_pattern("%Y-%m-%d %H:%m:%S:%e [pid:%P tid:%t] [%^%l%$] %v (%@)");
|
|
||||||
std::vector<spdlog::sink_ptr> sinks{consoleSink, fileSink};
|
|
||||||
auto logger = std::make_shared<spdlog::logger>("default_logger", sinks.begin(), sinks.end());
|
|
||||||
logger->set_level(spdlog::level::trace);
|
|
||||||
spdlog::set_default_logger(logger);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void PtouchPrint::setupCliParser() {
|
void PtouchPrint::setupCliParser() {
|
||||||
auto printVersion = [this](std::size_t) {
|
auto printVersion = [this](std::size_t) {
|
||||||
fmt::print("ptprnt version: {}\n", mVersionString);
|
std::cout << "ptprnt version: " << mVersionString << std::endl;
|
||||||
};
|
};
|
||||||
|
|
||||||
// General options
|
// General options
|
||||||
@@ -205,6 +156,7 @@ void PtouchPrint::setupCliParser() {
|
|||||||
->each([this](std::string halign) { mCommands.emplace_back(CliCmdType::HAlign, halign); });
|
->each([this](std::string halign) { mCommands.emplace_back(CliCmdType::HAlign, halign); });
|
||||||
|
|
||||||
// Image options
|
// Image options
|
||||||
mApp.add_option("-i,--image", "Image to print. Excludes all text printing ")->group("Image printing");
|
mApp.add_option("-i,--image", "Image to print. Excludes all text printing ")
|
||||||
|
->group("Image printing");
|
||||||
}
|
}
|
||||||
} // namespace ptprnt
|
} // namespace ptprnt
|
@@ -49,12 +49,13 @@ class PtouchPrint {
|
|||||||
// methods
|
// methods
|
||||||
void setupLogger(spdlog::level::level_enum lvl);
|
void setupLogger(spdlog::level::level_enum lvl);
|
||||||
void setupCliParser();
|
void setupCliParser();
|
||||||
std::vector<std::shared_ptr<IPrinterDriver>> getCompatiblePrinters();
|
unsigned int getCompatiblePrinters();
|
||||||
|
|
||||||
// member variables
|
// member variables
|
||||||
CLI::App mApp{ptprnt::APP_DESC};
|
CLI::App mApp{ptprnt::APP_DESC};
|
||||||
libusbwrap::UsbDeviceFactory mUsbDeviceFactory{};
|
libusbwrap::UsbDeviceFactory mUsbDeviceFactory{};
|
||||||
std::vector<std::shared_ptr<IPrinterDriver>> mDetectedPrinters{};
|
std::vector<std::shared_ptr<ptprnt::IPrinterDriver>> mCompatiblePrinters{};
|
||||||
|
std::vector<std::shared_ptr<ptprnt::IPrinterDriver>> mDetectedPrinters{};
|
||||||
std::vector<CliCmd> mCommands{};
|
std::vector<CliCmd> mCommands{};
|
||||||
std::string mVersionString = "";
|
std::string mVersionString = "";
|
||||||
|
|
||||||
|
@@ -22,7 +22,6 @@
|
|||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <spdlog/spdlog.h>
|
#include <spdlog/spdlog.h>
|
||||||
|
|
||||||
#include <iostream>
|
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
@@ -33,20 +32,19 @@ Bitmap<T>::Bitmap(uint16_t width, uint16_t height)
|
|||||||
: mWidth{width}, mHeight{height}, mPixels(width * height) {}
|
: mWidth{width}, mHeight{height}, mPixels(width * height) {}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
[[nodiscard]] uint16_t Bitmap<T>::getWidth() const {
|
uint16_t Bitmap<T>::getWidth() {
|
||||||
return mWidth;
|
return mWidth;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
[[nodiscard]] uint16_t Bitmap<T>::getHeight() const {
|
uint16_t Bitmap<T>::getHeight() {
|
||||||
return mHeight;
|
return mHeight;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
bool Bitmap<T>::setPixels(const std::vector<T>& pixels) {
|
bool Bitmap<T>::setPixels(const std::vector<T>& pixels) {
|
||||||
if (pixels.size() != mPixels.size()) {
|
if (pixels.size() != mPixels.size()) {
|
||||||
spdlog::error("Invalid pixel buffer size (got {} vs. {} bitmap size).", pixels.size(),
|
spdlog::error("Invalid pixel buffer size.");
|
||||||
mPixels.size());
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -55,12 +53,12 @@ bool Bitmap<T>::setPixels(const std::vector<T>& pixels) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
[[nodiscard]] std::vector<T> Bitmap<T>::getPixelsCpy() const {
|
std::vector<T> Bitmap<T>::getPixelsCpy() {
|
||||||
return mPixels;
|
return mPixels;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
[[nodiscard]] std::optional<std::vector<T>> Bitmap<T>::getLine(uint16_t line) const {
|
std::optional<std::vector<T>> Bitmap<T>::getLine(uint16_t line) {
|
||||||
if (line >= mHeight) {
|
if (line >= mHeight) {
|
||||||
// out of bound
|
// out of bound
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
@@ -72,7 +70,7 @@ template <class T>
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
[[nodiscard]] std::optional<std::vector<T>> Bitmap<T>::getCol(uint16_t col) const {
|
std::optional<std::vector<T>> Bitmap<T>::getCol(uint16_t col) {
|
||||||
if (col >= mWidth) {
|
if (col >= mWidth) {
|
||||||
// out of bound
|
// out of bound
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
|
@@ -39,18 +39,12 @@ class Bitmap {
|
|||||||
Bitmap(uint16_t width, uint16_t height);
|
Bitmap(uint16_t width, uint16_t height);
|
||||||
~Bitmap() = default;
|
~Bitmap() = default;
|
||||||
|
|
||||||
Bitmap(const Bitmap&) = default;
|
uint16_t getWidth();
|
||||||
Bitmap& operator=(const Bitmap&) = default;
|
uint16_t getHeight();
|
||||||
Bitmap(Bitmap&&) = default;
|
|
||||||
Bitmap& operator=(Bitmap&&) = default;
|
|
||||||
|
|
||||||
[[nodiscard]] uint16_t getWidth() const;
|
|
||||||
[[nodiscard]] uint16_t getHeight() const;
|
|
||||||
bool setPixels(const std::vector<T>& pixels);
|
bool setPixels(const std::vector<T>& pixels);
|
||||||
[[nodiscard]] std::vector<T> getPixelsCpy() const;
|
std::vector<T> getPixelsCpy();
|
||||||
[[nodiscard]] std::optional<std::vector<T>> getLine(uint16_t line) const;
|
std::optional<std::vector<T>> getLine(uint16_t line);
|
||||||
[[nodiscard]] std::optional<std::vector<T>> getCol(uint16_t col) const;
|
std::optional<std::vector<T>> getCol(uint16_t col);
|
||||||
void visualize() const;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
uint16_t mWidth;
|
uint16_t mWidth;
|
||||||
|
57
src/graphics/Image.cpp
Normal file
57
src/graphics/Image.cpp
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
/*
|
||||||
|
ptrnt - print labels on linux
|
||||||
|
Copyright (C) 2023 Moritz Martinius
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "Image.hpp"
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
#include "pango/pango-font.h"
|
||||||
|
|
||||||
|
namespace ptprnt::graphics {
|
||||||
|
Image::Image() {
|
||||||
|
mSurface = cairo_image_surface_create(CAIRO_FORMAT_A8, 512, 128);
|
||||||
|
cairo_t* cr = cairo_create(mSurface);
|
||||||
|
mFontDescription = pango_font_description_new();
|
||||||
|
pango_font_description_set_family(mFontDescription, "sans");
|
||||||
|
pango_font_description_set_weight(mFontDescription, PANGO_WEIGHT_SEMIBOLD);
|
||||||
|
pango_font_description_set_size(mFontDescription, 60 * PANGO_SCALE);
|
||||||
|
|
||||||
|
std::string printThis("Mist 💩");
|
||||||
|
|
||||||
|
mLayout = pango_cairo_create_layout(cr);
|
||||||
|
pango_layout_set_font_description(mLayout, mFontDescription);
|
||||||
|
pango_layout_set_text(mLayout, printThis.c_str(), -1);
|
||||||
|
|
||||||
|
cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
|
||||||
|
cairo_move_to(cr, 0.0, 94.0);
|
||||||
|
pango_cairo_show_layout_line(cr, pango_layout_get_line(mLayout, 0));
|
||||||
|
|
||||||
|
cairo_surface_write_to_png(mSurface, "hello.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t* Image::getRaw() {
|
||||||
|
cairo_surface_flush(mSurface);
|
||||||
|
return cairo_image_surface_get_data(mSurface);
|
||||||
|
}
|
||||||
|
|
||||||
|
Image::~Image() {
|
||||||
|
g_object_unref(mLayout);
|
||||||
|
pango_font_description_free(mFontDescription);
|
||||||
|
}
|
||||||
|
} // namespace ptprnt::graphics
|
38
src/graphics/Image.hpp
Normal file
38
src/graphics/Image.hpp
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
ptrnt - print labels on linux
|
||||||
|
Copyright (C) 2023 Moritz Martinius
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <pango/pangocairo.h>
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
namespace ptprnt::graphics {
|
||||||
|
class Image {
|
||||||
|
public:
|
||||||
|
Image();
|
||||||
|
~Image();
|
||||||
|
uint8_t* getRaw();
|
||||||
|
|
||||||
|
private:
|
||||||
|
PangoLayout* mLayout;
|
||||||
|
PangoFontDescription* mFontDescription;
|
||||||
|
cairo_surface_t* mSurface;
|
||||||
|
};
|
||||||
|
} // namespace ptprnt::graphics
|
@@ -1,105 +0,0 @@
|
|||||||
/*
|
|
||||||
ptrnt - print labels on linux
|
|
||||||
Copyright (C) 2023 Moritz Martinius
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "graphics/Label.hpp"
|
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
#include <spdlog/spdlog.h>
|
|
||||||
|
|
||||||
#include <cassert>
|
|
||||||
#include <cstddef>
|
|
||||||
#include <iostream> // remove me
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
#include "cairo.h"
|
|
||||||
#include "pango/pango-context.h"
|
|
||||||
#include "pango/pango-font.h"
|
|
||||||
#include "pango/pango-fontmap.h"
|
|
||||||
#include "pango/pango-layout.h"
|
|
||||||
#include "pango/pango-types.h"
|
|
||||||
#include "pango/pangocairo.h"
|
|
||||||
|
|
||||||
namespace ptprnt::graphics {
|
|
||||||
Label::Label()
|
|
||||||
: mPangoCtx(pango_font_map_create_context(pango_cairo_font_map_get_default())),
|
|
||||||
mPangoLyt(pango_layout_new(mPangoCtx)),
|
|
||||||
mPangoFontDesc(pango_font_description_from_string("Noto sans 32")) {}
|
|
||||||
|
|
||||||
std::vector<uint8_t> Label::getRaw() {
|
|
||||||
assert(mSurface != nullptr);
|
|
||||||
size_t len = mPrinterHeight * mLayoutWidth;
|
|
||||||
|
|
||||||
cairo_surface_flush(mSurface);
|
|
||||||
auto data = cairo_image_surface_get_data(mSurface);
|
|
||||||
return {data, data + len};
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t Label::getNumLines(std::string_view strv) {
|
|
||||||
return std::count(strv.begin(), strv.end(), '\n');
|
|
||||||
}
|
|
||||||
|
|
||||||
int Label::getLayoutHeight() {
|
|
||||||
return mLayoutHeight;
|
|
||||||
}
|
|
||||||
|
|
||||||
int Label::getLayoutWidth() {
|
|
||||||
return mLayoutWidth;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Label::create(const std::string& labelText, const uint16_t heightPixel) {
|
|
||||||
mPrinterHeight = heightPixel;
|
|
||||||
pango_layout_set_single_paragraph_mode(mPangoLyt, true);
|
|
||||||
pango_layout_set_height(mPangoLyt, getNumLines(labelText) * -1);
|
|
||||||
pango_layout_set_alignment(mPangoLyt, PANGO_ALIGN_CENTER);
|
|
||||||
pango_layout_set_font_description(mPangoLyt, mPangoFontDesc);
|
|
||||||
pango_context_load_font(mPangoCtx, mPangoFontDesc);
|
|
||||||
pango_layout_set_text(mPangoLyt, labelText.c_str(), static_cast<int>(labelText.length()));
|
|
||||||
|
|
||||||
pango_layout_get_size(mPangoLyt, &mLayoutWidth, &mLayoutHeight);
|
|
||||||
|
|
||||||
mLayoutWidth /= PANGO_SCALE;
|
|
||||||
mLayoutHeight /= PANGO_SCALE;
|
|
||||||
|
|
||||||
SPDLOG_DEBUG("Layout width: {}, height: {}", mLayoutWidth, mLayoutHeight);
|
|
||||||
|
|
||||||
mSurface = cairo_image_surface_create(CAIRO_FORMAT_A8, mLayoutWidth, mPrinterHeight);
|
|
||||||
cairo_t* cr = cairo_create(mSurface);
|
|
||||||
pango_cairo_show_layout(cr, mPangoLyt);
|
|
||||||
|
|
||||||
cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
|
|
||||||
cairo_surface_flush(mSurface);
|
|
||||||
cairo_destroy(cr);
|
|
||||||
}
|
|
||||||
|
|
||||||
void Label::writeToPng(const std::string& file) {
|
|
||||||
if (mSurface) {
|
|
||||||
cairo_surface_flush(mSurface);
|
|
||||||
cairo_surface_write_to_png(mSurface, file.c_str());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Label::~Label() {
|
|
||||||
SPDLOG_DEBUG("Image dtor...");
|
|
||||||
pango_font_description_free(mPangoFontDesc);
|
|
||||||
g_object_unref(mPangoCtx);
|
|
||||||
g_object_unref(mPangoLyt);
|
|
||||||
cairo_surface_destroy(mSurface);
|
|
||||||
}
|
|
||||||
} // namespace ptprnt::graphics
|
|
@@ -1,64 +0,0 @@
|
|||||||
/*
|
|
||||||
ptrnt - print labels on linux
|
|
||||||
Copyright (C) 2023 Moritz Martinius
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <pango/pangocairo.h>
|
|
||||||
|
|
||||||
#include <cstdint>
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
#include "cairo.h"
|
|
||||||
#include "pango/pango-font.h"
|
|
||||||
#include "pango/pango-types.h"
|
|
||||||
|
|
||||||
namespace ptprnt::graphics {
|
|
||||||
|
|
||||||
constexpr const char* DEFAULT_FONT_FAMILY = "sans";
|
|
||||||
constexpr const uint8_t DEFAULT_FONT_SIZE = 32;
|
|
||||||
|
|
||||||
class Label {
|
|
||||||
public:
|
|
||||||
Label();
|
|
||||||
~Label();
|
|
||||||
|
|
||||||
Label(const Label&) = delete;
|
|
||||||
Label& operator=(const Label&) = delete;
|
|
||||||
Label(Label&&) = delete;
|
|
||||||
Label& operator=(Label&&) = delete;
|
|
||||||
|
|
||||||
std::vector<uint8_t> getRaw();
|
|
||||||
void create(const std::string& labelText, const uint16_t heightPixel);
|
|
||||||
void writeToPng(const std::string& file);
|
|
||||||
int getLayoutWidth();
|
|
||||||
int getLayoutHeight();
|
|
||||||
|
|
||||||
private:
|
|
||||||
// methods
|
|
||||||
uint8_t getNumLines(std::string_view str);
|
|
||||||
// members
|
|
||||||
PangoContext* mPangoCtx{nullptr};
|
|
||||||
PangoLayout* mPangoLyt{nullptr};
|
|
||||||
PangoFontDescription* mPangoFontDesc{nullptr};
|
|
||||||
cairo_surface_t* mSurface{nullptr};
|
|
||||||
int mLayoutWidth = 0, mLayoutHeight = 0;
|
|
||||||
int mPrinterHeight = 0;
|
|
||||||
};
|
|
||||||
} // namespace ptprnt::graphics
|
|
@@ -21,9 +21,7 @@
|
|||||||
|
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
|
||||||
#include <cstdio>
|
#include <cstdint>
|
||||||
#include <cstdlib>
|
|
||||||
#include <iostream>
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace ptprnt::graphics {
|
namespace ptprnt::graphics {
|
||||||
@@ -43,9 +41,9 @@ std::vector<uint8_t> Monochrome::get() {
|
|||||||
|
|
||||||
unsigned int outIndex = 0;
|
unsigned int outIndex = 0;
|
||||||
|
|
||||||
for (unsigned int byteNo = 0; byteNo < mPixels.size(); byteNo += 8) {
|
for (unsigned int byteNum = 0; byteNum < mPixels.size(); byteNum += 8) {
|
||||||
for (unsigned int bitNo = 0; bitNo <= 7 && (byteNo + bitNo < mPixels.size()); bitNo++) {
|
for (unsigned int bitNo = 0; bitNo < 8; bitNo++) {
|
||||||
if (mPixels[byteNo + bitNo] > mThreshhold) {
|
if (mPixels[byteNum + bitNo] > mThreshhold) {
|
||||||
outPixels[outIndex] |= (1 << (7 - bitNo));
|
outPixels[outIndex] |= (1 << (7 - bitNo));
|
||||||
} else {
|
} else {
|
||||||
outPixels[outIndex] &= ~(1 << (7 - bitNo));
|
outPixels[outIndex] &= ~(1 << (7 - bitNo));
|
||||||
@@ -58,20 +56,4 @@ std::vector<uint8_t> Monochrome::get() {
|
|||||||
}
|
}
|
||||||
return outPixels;
|
return outPixels;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Monochrome::visualize() {
|
|
||||||
auto mono = get();
|
|
||||||
for (unsigned char pix : mono) {
|
|
||||||
std::cout << ((pix & (1 << 7)) == 0 ? "." : "x");
|
|
||||||
std::cout << ((pix & (1 << 6)) == 0 ? "." : "x");
|
|
||||||
std::cout << ((pix & (1 << 5)) == 0 ? "." : "x");
|
|
||||||
std::cout << ((pix & (1 << 4)) == 0 ? "." : "x");
|
|
||||||
std::cout << ((pix & (1 << 3)) == 0 ? "." : "x");
|
|
||||||
std::cout << ((pix & (1 << 2)) == 0 ? "." : "x");
|
|
||||||
std::cout << ((pix & (1 << 1)) == 0 ? "." : "x");
|
|
||||||
std::cout << ((pix & (1 << 0)) == 0 ? "." : "x");
|
|
||||||
}
|
|
||||||
std::cout << std::endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace ptprnt::graphics
|
} // namespace ptprnt::graphics
|
@@ -31,12 +31,11 @@ class Monochrome {
|
|||||||
|
|
||||||
void setThreshold(uint8_t);
|
void setThreshold(uint8_t);
|
||||||
void invert(bool shouldInvert);
|
void invert(bool shouldInvert);
|
||||||
void visualize();
|
|
||||||
std::vector<uint8_t> get();
|
std::vector<uint8_t> get();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const std::vector<uint8_t>& mPixels;
|
const std::vector<uint8_t>& mPixels;
|
||||||
uint8_t mThreshhold = UINT8_MAX / 2;
|
uint8_t mThreshhold = 127;
|
||||||
bool mShouldInvert = false;
|
bool mShouldInvert = false;
|
||||||
};
|
};
|
||||||
} // namespace ptprnt::graphics
|
} // namespace ptprnt::graphics
|
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"text" : " Hello",
|
|
||||||
"font" : "FreeSans 32",
|
|
||||||
"single-paragraph" : true,
|
|
||||||
"alignment" : "center",
|
|
||||||
"height" : 0
|
|
||||||
}
|
|
@@ -19,7 +19,6 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <cstdint>
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
|
|
||||||
@@ -28,24 +27,20 @@
|
|||||||
#include "libusbwrap/interface/IUsbDevice.hpp"
|
#include "libusbwrap/interface/IUsbDevice.hpp"
|
||||||
|
|
||||||
namespace ptprnt {
|
namespace ptprnt {
|
||||||
|
|
||||||
class IPrinterDriver {
|
class IPrinterDriver {
|
||||||
public:
|
public:
|
||||||
virtual ~IPrinterDriver() = default;
|
virtual const std::string_view getDriverName() = 0;
|
||||||
[[nodiscard]] virtual const std::string_view getDriverName() = 0;
|
virtual const std::string_view getName() = 0;
|
||||||
[[nodiscard]] virtual const std::string_view getName() = 0;
|
virtual const std::string_view getVersion() = 0;
|
||||||
[[nodiscard]] virtual const std::string_view getVersion() = 0;
|
virtual const uint16_t getVid() = 0;
|
||||||
[[nodiscard]] virtual const libusbwrap::usbId getUsbId() = 0;
|
virtual const uint16_t getPid() = 0;
|
||||||
[[nodiscard]] virtual const PrinterInfo getPrinterInfo() = 0;
|
virtual const PrinterInfo getPrinterInfo() = 0;
|
||||||
[[nodiscard]] virtual const PrinterStatus getPrinterStatus() = 0;
|
virtual const PrinterStatus getPrinterStatus() = 0;
|
||||||
virtual bool attachUsbDevice(std::shared_ptr<libusbwrap::IUsbDevice> usbHndl) = 0;
|
virtual bool attachUsbDevice(std::shared_ptr<libusbwrap::IUsbDevice> usbHndl) = 0;
|
||||||
virtual bool detachUsbDevice() = 0;
|
virtual bool detachUsbDevice() = 0;
|
||||||
virtual bool setText(const std::string& text) = 0;
|
|
||||||
virtual bool setFont(const std::string& text) = 0;
|
|
||||||
virtual bool setFontSize(uint8_t fontSize) = 0;
|
|
||||||
virtual bool setHAlign(HAlignPosition hpos) = 0;
|
|
||||||
virtual bool setVAlign(VAlignPosition vpos) = 0;
|
|
||||||
virtual bool printBitmap(const graphics::Bitmap<graphics::ALPHA8>& bitmap) = 0;
|
virtual bool printBitmap(const graphics::Bitmap<graphics::ALPHA8>& bitmap) = 0;
|
||||||
virtual bool print() = 0;
|
virtual bool printText(const std::string& text, uint16_t fontSize) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ptprnt
|
} // namespace ptprnt
|
@@ -20,11 +20,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <string>
|
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
#include "libusbwrap/LibUsbTypes.hpp"
|
|
||||||
|
|
||||||
namespace ptprnt {
|
namespace ptprnt {
|
||||||
|
|
||||||
@@ -32,8 +28,8 @@ struct PrinterInfo {
|
|||||||
std::string_view driverName = "";
|
std::string_view driverName = "";
|
||||||
std::string_view name = "";
|
std::string_view name = "";
|
||||||
std::string_view version = "";
|
std::string_view version = "";
|
||||||
libusbwrap::usbId usbId{0x00, 0x00};
|
uint16_t vid = 0x00;
|
||||||
uint16_t pixelLines = 0;
|
uint16_t pid = 0x00;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct PrinterStatus {
|
struct PrinterStatus {
|
||||||
@@ -41,29 +37,4 @@ struct PrinterStatus {
|
|||||||
unsigned int tapeWidthMm = 0.0;
|
unsigned int tapeWidthMm = 0.0;
|
||||||
};
|
};
|
||||||
|
|
||||||
using cmd_T = std::vector<uint8_t>;
|
|
||||||
|
|
||||||
enum class HAlignPosition {
|
|
||||||
UNKNOWN = 0,
|
|
||||||
LEFT = 1,
|
|
||||||
CENTER = 2,
|
|
||||||
RIGHT = 3,
|
|
||||||
JUSTIFY = 4,
|
|
||||||
};
|
|
||||||
|
|
||||||
enum class VAlignPosition {
|
|
||||||
UNKNOWN = 0,
|
|
||||||
TOP = 1,
|
|
||||||
MIDDLE = 2,
|
|
||||||
BOTTOM = 3,
|
|
||||||
};
|
|
||||||
|
|
||||||
struct PrintableText {
|
|
||||||
std::string text{""};
|
|
||||||
std::string font{"Noto"};
|
|
||||||
uint8_t fontSize{0};
|
|
||||||
HAlignPosition hAlign{HAlignPosition::LEFT};
|
|
||||||
VAlignPosition vAlign{VAlignPosition::MIDDLE};
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace ptprnt
|
} // namespace ptprnt
|
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <utility>
|
#include <memory>
|
||||||
|
|
||||||
#include "libusb.h"
|
#include "libusb.h"
|
||||||
|
|
||||||
@@ -40,7 +40,4 @@ enum class Error {
|
|||||||
NOT_SUPPORTED = LIBUSB_ERROR_NOT_SUPPORTED,
|
NOT_SUPPORTED = LIBUSB_ERROR_NOT_SUPPORTED,
|
||||||
OTHER = LIBUSB_ERROR_OTHER
|
OTHER = LIBUSB_ERROR_OTHER
|
||||||
};
|
};
|
||||||
|
}
|
||||||
using usbId = std::pair<uint16_t, uint16_t>;
|
|
||||||
|
|
||||||
} // namespace libusbwrap
|
|
@@ -27,12 +27,12 @@
|
|||||||
#include "libusbwrap/interface/IUsbDevice.hpp"
|
#include "libusbwrap/interface/IUsbDevice.hpp"
|
||||||
|
|
||||||
namespace libusbwrap {
|
namespace libusbwrap {
|
||||||
UsbDevice::UsbDevice(libusb_context* ctx, usbDevice_ptr dev) : mLibusbCtx(ctx), mLibusbDev(std::move(dev)) {
|
UsbDevice::UsbDevice(libusb_context* ctx, libusb_device* dev) : mLibusbCtx(ctx), mLibusbDev(dev) {
|
||||||
if (mLibusbCtx == nullptr || mLibusbDev == nullptr) {
|
if (mLibusbCtx == nullptr || mLibusbDev == nullptr) {
|
||||||
throw std::invalid_argument("ctx or device are nullptr");
|
throw std::invalid_argument("ctx or device are nullptr");
|
||||||
}
|
}
|
||||||
|
|
||||||
libusb_get_device_descriptor(mLibusbDev.get(), &mLibusbDevDesc);
|
libusb_get_device_descriptor(dev, &mLibusbDevDesc);
|
||||||
}
|
}
|
||||||
|
|
||||||
UsbDevice::~UsbDevice() {
|
UsbDevice::~UsbDevice() {
|
||||||
@@ -44,7 +44,7 @@ UsbDevice::~UsbDevice() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool UsbDevice::open() {
|
bool UsbDevice::open() {
|
||||||
int openStatus = libusb_open(mLibusbDev.get(), &mLibusbDevHandle);
|
int openStatus = libusb_open(mLibusbDev, &mLibusbDevHandle);
|
||||||
if (openStatus != 0) {
|
if (openStatus != 0) {
|
||||||
mLastError = static_cast<Error>(openStatus);
|
mLastError = static_cast<Error>(openStatus);
|
||||||
return false;
|
return false;
|
||||||
@@ -90,12 +90,13 @@ bool UsbDevice::releaseInterface(int interfaceNo) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool UsbDevice::bulkTransfer(uint8_t endpoint, const std::vector<uint8_t>& data, int* tx, unsigned int timeout) {
|
bool UsbDevice::bulkTransfer(uint8_t endpoint, std::vector<uint8_t>& data, int* tx,
|
||||||
|
unsigned int timeout) {
|
||||||
// TODO: implement error handling for incomplete transactions (tx length != data length)
|
// TODO: implement error handling for incomplete transactions (tx length != data length)
|
||||||
int bulkTransferStatus = 0;
|
int bulkTransferStatus = 0;
|
||||||
|
|
||||||
bulkTransferStatus = libusb_bulk_transfer(mLibusbDevHandle, endpoint, const_cast<unsigned char*>(data.data()),
|
bulkTransferStatus =
|
||||||
data.size(), tx, timeout);
|
libusb_bulk_transfer(mLibusbDevHandle, endpoint, data.data(), data.size(), tx, timeout);
|
||||||
if (bulkTransferStatus != 0) {
|
if (bulkTransferStatus != 0) {
|
||||||
mLastError = static_cast<Error>(bulkTransferStatus);
|
mLastError = static_cast<Error>(bulkTransferStatus);
|
||||||
return false;
|
return false;
|
||||||
@@ -103,20 +104,24 @@ bool UsbDevice::bulkTransfer(uint8_t endpoint, const std::vector<uint8_t>& data,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
const usbId UsbDevice::getUsbId() {
|
const uint16_t UsbDevice::getVid() {
|
||||||
return {mLibusbDevDesc.idVendor, mLibusbDevDesc.idProduct};
|
return mLibusbDevDesc.idVendor;
|
||||||
|
}
|
||||||
|
|
||||||
|
const uint16_t UsbDevice::getPid() {
|
||||||
|
return mLibusbDevDesc.idProduct;
|
||||||
}
|
}
|
||||||
|
|
||||||
const device::Speed UsbDevice::getSpeed() {
|
const device::Speed UsbDevice::getSpeed() {
|
||||||
return static_cast<device::Speed>(libusb_get_device_speed(mLibusbDev.get()));
|
return static_cast<device::Speed>(libusb_get_device_speed(mLibusbDev));
|
||||||
}
|
}
|
||||||
|
|
||||||
const uint8_t UsbDevice::getBusNumber() {
|
const uint8_t UsbDevice::getBusNumber() {
|
||||||
return libusb_get_bus_number(mLibusbDev.get());
|
return libusb_get_bus_number(mLibusbDev);
|
||||||
}
|
}
|
||||||
|
|
||||||
const uint8_t UsbDevice::getPortNumber() {
|
const uint8_t UsbDevice::getPortNumber() {
|
||||||
return libusb_get_port_number(mLibusbDev.get());
|
return libusb_get_port_number(mLibusbDev);
|
||||||
}
|
}
|
||||||
|
|
||||||
const Error UsbDevice::getLastError() {
|
const Error UsbDevice::getLastError() {
|
||||||
|
@@ -20,34 +20,21 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
#include <memory>
|
#include <cstddef>
|
||||||
|
|
||||||
#include "libusb.h"
|
#include "libusb.h"
|
||||||
#include "libusbwrap/LibUsbTypes.hpp"
|
#include "libusbwrap/LibUsbTypes.hpp"
|
||||||
#include "libusbwrap/interface/IUsbDevice.hpp"
|
#include "libusbwrap/interface/IUsbDevice.hpp"
|
||||||
|
|
||||||
namespace libusbwrap {
|
namespace libusbwrap {
|
||||||
|
|
||||||
struct usbDevice_deleter {
|
|
||||||
void operator()(libusb_device* dev_ptr) const {
|
|
||||||
if (nullptr != dev_ptr) {
|
|
||||||
libusb_unref_device(dev_ptr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
using usbDevice_ptr = std::unique_ptr<libusb_device, usbDevice_deleter>;
|
|
||||||
|
|
||||||
class UsbDevice : public IUsbDevice {
|
class UsbDevice : public IUsbDevice {
|
||||||
public:
|
public:
|
||||||
explicit UsbDevice(libusb_context* ctx, usbDevice_ptr dev);
|
UsbDevice(libusb_context* ctx, libusb_device* dev);
|
||||||
~UsbDevice() override;
|
~UsbDevice();
|
||||||
|
|
||||||
// delete copy ctor and assignment
|
// delete copy ctor and assignment
|
||||||
UsbDevice(const UsbDevice&) = delete;
|
UsbDevice(const UsbDevice&) = delete;
|
||||||
UsbDevice& operator=(const UsbDevice&) = delete;
|
UsbDevice& operator=(UsbDevice&) = delete;
|
||||||
UsbDevice(UsbDevice&&) = delete;
|
|
||||||
UsbDevice& operator=(UsbDevice&&) = delete;
|
|
||||||
|
|
||||||
bool open() override;
|
bool open() override;
|
||||||
void close() override;
|
void close() override;
|
||||||
@@ -56,10 +43,12 @@ class UsbDevice : public IUsbDevice {
|
|||||||
bool detachKernelDriver(int interfaceNo) override;
|
bool detachKernelDriver(int interfaceNo) override;
|
||||||
bool claimInterface(int interfaceNo) override;
|
bool claimInterface(int interfaceNo) override;
|
||||||
bool releaseInterface(int interfaceNo) override;
|
bool releaseInterface(int interfaceNo) override;
|
||||||
bool bulkTransfer(uint8_t endpoint, const std::vector<uint8_t>& data, int* tx, unsigned int timeout) override;
|
bool bulkTransfer(uint8_t endpoint, std::vector<uint8_t>& data, int* tx,
|
||||||
|
unsigned int timeout) override;
|
||||||
|
|
||||||
// getters
|
// getters
|
||||||
const usbId getUsbId() override;
|
const uint16_t getVid() override;
|
||||||
|
const uint16_t getPid() override;
|
||||||
const device::Speed getSpeed() override;
|
const device::Speed getSpeed() override;
|
||||||
const uint8_t getBusNumber() override;
|
const uint8_t getBusNumber() override;
|
||||||
const uint8_t getPortNumber() override;
|
const uint8_t getPortNumber() override;
|
||||||
@@ -70,9 +59,9 @@ class UsbDevice : public IUsbDevice {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
libusb_context* mLibusbCtx{nullptr};
|
libusb_context* mLibusbCtx{nullptr};
|
||||||
usbDevice_ptr mLibusbDev{nullptr};
|
libusb_device* mLibusbDev{nullptr};
|
||||||
libusb_device_handle* mLibusbDevHandle{nullptr};
|
libusb_device_handle* mLibusbDevHandle{nullptr};
|
||||||
libusb_device_descriptor mLibusbDevDesc{0};
|
libusb_device_descriptor mLibusbDevDesc;
|
||||||
std::atomic<bool> mIsOpen = false;
|
std::atomic<bool> mIsOpen = false;
|
||||||
Error mLastError = Error::SUCCESS;
|
Error mLastError = Error::SUCCESS;
|
||||||
};
|
};
|
||||||
|
@@ -20,11 +20,9 @@
|
|||||||
#include "libusbwrap/UsbDeviceFactory.hpp"
|
#include "libusbwrap/UsbDeviceFactory.hpp"
|
||||||
|
|
||||||
#include <spdlog/spdlog.h>
|
#include <spdlog/spdlog.h>
|
||||||
#include <sys/types.h>
|
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
#include "libusb.h"
|
#include "libusb.h"
|
||||||
#include "libusbwrap/UsbDevice.hpp"
|
#include "libusbwrap/UsbDevice.hpp"
|
||||||
@@ -33,56 +31,49 @@
|
|||||||
namespace libusbwrap {
|
namespace libusbwrap {
|
||||||
|
|
||||||
UsbDeviceFactory::~UsbDeviceFactory() {
|
UsbDeviceFactory::~UsbDeviceFactory() {
|
||||||
if (mLibusbCtx) {
|
if (mDeviceListInitialized) {
|
||||||
libusb_exit(mLibusbCtx);
|
libusb_free_device_list(mLibusbDeviceList, 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
|
||||||
std::vector<std::unique_ptr<IUsbDevice>> UsbDeviceFactory::findAllDevices() {
|
std::vector<std::shared_ptr<IUsbDevice>> UsbDeviceFactory::findAllDevices() {
|
||||||
refreshDeviceList();
|
refreshDeviceList();
|
||||||
return buildMaskedDeviceVector(0x0, 0x0, 0x0, 0x0);
|
return buildMaskedDeviceVector(0x0, 0x0, 0x0, 0x0);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::unique_ptr<IUsbDevice>> UsbDeviceFactory::findDevices(uint16_t vid, uint16_t pid) {
|
std::vector<std::shared_ptr<IUsbDevice>> UsbDeviceFactory::findDevices(uint16_t vid, uint16_t pid) {
|
||||||
refreshDeviceList();
|
refreshDeviceList();
|
||||||
return buildMaskedDeviceVector(LIBUSB_BITMASK_ALL, LIBUSB_BITMASK_ALL, vid, pid);
|
return buildMaskedDeviceVector(0xffff, 0xffff, vid, pid);
|
||||||
}
|
}
|
||||||
|
|
||||||
ssize_t UsbDeviceFactory::refreshDeviceList() {
|
int UsbDeviceFactory::refreshDeviceList() {
|
||||||
libusb_device** list{nullptr};
|
int ret = libusb_get_device_list(mLibusbCtx, &mLibusbDeviceList);
|
||||||
|
|
||||||
ssize_t ret = libusb_get_device_list(mLibusbCtx, &list);
|
|
||||||
mLibusbDeviceList.clear();
|
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
spdlog::error("Error enumarating USB devices");
|
spdlog::error("Error enumarating USB devices");
|
||||||
} else if (ret == 0) {
|
} else if (ret == 0) {
|
||||||
spdlog::warn("No USB devices found");
|
spdlog::warn("No USB devices found");
|
||||||
}
|
}
|
||||||
|
mDeviceListInitialized = true;
|
||||||
for (ssize_t i = 0; i < ret; i++) {
|
|
||||||
mLibusbDeviceList.emplace_back(list[i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
libusb_free_device_list(list, false);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::unique_ptr<IUsbDevice>> UsbDeviceFactory::buildMaskedDeviceVector(uint16_t vidMask,
|
std::vector<std::shared_ptr<IUsbDevice>> UsbDeviceFactory::buildMaskedDeviceVector(uint16_t vidMask,
|
||||||
uint16_t pidMask,
|
uint16_t pidMask,
|
||||||
uint16_t vid,
|
uint16_t vid,
|
||||||
uint16_t pid) {
|
uint16_t pid) {
|
||||||
std::vector<std::unique_ptr<IUsbDevice>> matchedDevices;
|
std::vector<std::shared_ptr<IUsbDevice>> matchedDevices;
|
||||||
// see libusb/examples/listdevs.c
|
// see libusb/examples/listdevs.c
|
||||||
for (auto& currDev : mLibusbDeviceList) {
|
int i = 0;
|
||||||
struct libusb_device_descriptor currDevDesc {};
|
libusb_device* currDev = nullptr;
|
||||||
|
while ((currDev = mLibusbDeviceList[i++]) != nullptr) {
|
||||||
int ret = libusb_get_device_descriptor(currDev.get(), &currDevDesc);
|
struct libusb_device_descriptor currDevDesc;
|
||||||
|
int ret = libusb_get_device_descriptor(currDev, &currDevDesc);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (((currDevDesc.idVendor & vidMask) == vid) &&
|
if (((currDevDesc.idVendor & vidMask) == vid) &&
|
||||||
((currDevDesc.idProduct & pidMask) == pid)) {
|
((currDevDesc.idProduct & pidMask) == pid)) {
|
||||||
matchedDevices.push_back(std::make_unique<UsbDevice>(mLibusbCtx, std::move(currDev)));
|
matchedDevices.push_back(std::make_shared<UsbDevice>(mLibusbCtx, currDev));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return matchedDevices;
|
return matchedDevices;
|
||||||
|
@@ -19,16 +19,9 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <cstdint>
|
|
||||||
|
|
||||||
#include "libusb.h"
|
|
||||||
#include "libusbwrap/UsbDevice.hpp"
|
|
||||||
#include "libusbwrap/interface/IUsbDeviceFactory.hpp"
|
#include "libusbwrap/interface/IUsbDeviceFactory.hpp"
|
||||||
|
|
||||||
namespace libusbwrap {
|
namespace libusbwrap {
|
||||||
|
|
||||||
constexpr const uint16_t LIBUSB_BITMASK_ALL = 0xffff;
|
|
||||||
|
|
||||||
class UsbDeviceFactory : public IUsbDeviceFactory {
|
class UsbDeviceFactory : public IUsbDeviceFactory {
|
||||||
public:
|
public:
|
||||||
UsbDeviceFactory() = default;
|
UsbDeviceFactory() = default;
|
||||||
@@ -46,7 +39,7 @@ class UsbDeviceFactory : public IUsbDeviceFactory {
|
|||||||
*
|
*
|
||||||
* @return std::vector<std::shared_ptr<IUsbDevice>> Vector of all detected USB devices
|
* @return std::vector<std::shared_ptr<IUsbDevice>> Vector of all detected USB devices
|
||||||
*/
|
*/
|
||||||
std::vector<std::unique_ptr<IUsbDevice>> findAllDevices() override;
|
std::vector<std::shared_ptr<IUsbDevice>> findAllDevices() override;
|
||||||
/**
|
/**
|
||||||
* @brief Gets all devices with certain vid/pid combination.
|
* @brief Gets all devices with certain vid/pid combination.
|
||||||
* If only one device of certain type is connected, vector is usually only one element
|
* If only one device of certain type is connected, vector is usually only one element
|
||||||
@@ -55,17 +48,17 @@ class UsbDeviceFactory : public IUsbDeviceFactory {
|
|||||||
* @param pid ProductId of the devices to find
|
* @param pid ProductId of the devices to find
|
||||||
* @return std::vector<std::shared_ptr<IUsbDevice>> Vector of detected USB devices based on vid/pid
|
* @return std::vector<std::shared_ptr<IUsbDevice>> Vector of detected USB devices based on vid/pid
|
||||||
*/
|
*/
|
||||||
std::vector<std::unique_ptr<IUsbDevice>> findDevices(uint16_t vid, uint16_t pid) override;
|
std::vector<std::shared_ptr<IUsbDevice>> findDevices(uint16_t vid, uint16_t pid) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// methods
|
// methods
|
||||||
ssize_t refreshDeviceList();
|
int refreshDeviceList();
|
||||||
std::vector<std::unique_ptr<IUsbDevice>> buildMaskedDeviceVector(uint16_t vidMask,
|
std::vector<std::shared_ptr<IUsbDevice>> buildMaskedDeviceVector(uint16_t vidMask,
|
||||||
uint16_t pidMask, uint16_t vid,
|
uint16_t pidMask, uint16_t vid,
|
||||||
uint16_t pid);
|
uint16_t pid);
|
||||||
// members
|
// members
|
||||||
libusb_context* mLibusbCtx{nullptr};
|
libusb_context* mLibusbCtx{nullptr};
|
||||||
std::vector<usbDevice_ptr> mLibusbDeviceList{};
|
libusb_device** mLibusbDeviceList{};
|
||||||
bool mDeviceListInitialized = false;
|
bool mDeviceListInitialized = false;
|
||||||
};
|
};
|
||||||
} // namespace libusbwrap
|
} // namespace libusbwrap
|
@@ -24,7 +24,6 @@ enum class Speed {
|
|||||||
|
|
||||||
class IUsbDevice {
|
class IUsbDevice {
|
||||||
public:
|
public:
|
||||||
virtual ~IUsbDevice() = default;
|
|
||||||
virtual bool open() = 0;
|
virtual bool open() = 0;
|
||||||
virtual void close() = 0;
|
virtual void close() = 0;
|
||||||
|
|
||||||
@@ -32,10 +31,12 @@ class IUsbDevice {
|
|||||||
virtual bool detachKernelDriver(int interfaceNo) = 0;
|
virtual bool detachKernelDriver(int interfaceNo) = 0;
|
||||||
virtual bool claimInterface(int interfaceNo) = 0;
|
virtual bool claimInterface(int interfaceNo) = 0;
|
||||||
virtual bool releaseInterface(int interfaceNo) = 0;
|
virtual bool releaseInterface(int interfaceNo) = 0;
|
||||||
virtual bool bulkTransfer(uint8_t endpoint, const std::vector<uint8_t>& data, int* tx, unsigned int timeout) = 0;
|
virtual bool bulkTransfer(uint8_t endpoint, std::vector<uint8_t>& data, int* tx,
|
||||||
|
unsigned int timeout) = 0;
|
||||||
|
|
||||||
// getters
|
// getters
|
||||||
virtual const usbId getUsbId() = 0;
|
virtual const uint16_t getVid() = 0;
|
||||||
|
virtual const uint16_t getPid() = 0;
|
||||||
virtual const device::Speed getSpeed() = 0;
|
virtual const device::Speed getSpeed() = 0;
|
||||||
virtual const uint8_t getBusNumber() = 0;
|
virtual const uint8_t getBusNumber() = 0;
|
||||||
virtual const uint8_t getPortNumber() = 0;
|
virtual const uint8_t getPortNumber() = 0;
|
||||||
|
@@ -9,8 +9,7 @@
|
|||||||
namespace libusbwrap {
|
namespace libusbwrap {
|
||||||
class IUsbDeviceFactory {
|
class IUsbDeviceFactory {
|
||||||
public:
|
public:
|
||||||
virtual ~IUsbDeviceFactory() = default;
|
virtual std::vector<std::shared_ptr<IUsbDevice>> findAllDevices() = 0;
|
||||||
virtual std::vector<std::unique_ptr<IUsbDevice>> findAllDevices() = 0;
|
virtual std::vector<std::shared_ptr<IUsbDevice>> findDevices(uint16_t vid, uint16_t pid) = 0;
|
||||||
virtual std::vector<std::unique_ptr<IUsbDevice>> findDevices(uint16_t vid, uint16_t pid) = 0;
|
|
||||||
};
|
};
|
||||||
} // namespace libusbwrap
|
} // namespace libusbwrap
|
@@ -8,17 +8,15 @@ ptprnt_hpps = files (
|
|||||||
'interface/IPrinterTypes.hpp',
|
'interface/IPrinterTypes.hpp',
|
||||||
'P700Printer.hpp',
|
'P700Printer.hpp',
|
||||||
'PtouchPrint.hpp',
|
'PtouchPrint.hpp',
|
||||||
'PrinterDriverFactory.hpp',
|
|
||||||
'graphics/Bitmap.hpp',
|
'graphics/Bitmap.hpp',
|
||||||
'graphics/Label.hpp',
|
'graphics/Image.hpp',
|
||||||
'graphics/Monochrome.hpp'
|
'graphics/Monochrome.hpp'
|
||||||
)
|
)
|
||||||
|
|
||||||
ptprnt_srcs = files (
|
ptprnt_srcs = files (
|
||||||
'PtouchPrint.cpp',
|
'PtouchPrint.cpp',
|
||||||
'PrinterDriverFactory.cpp',
|
|
||||||
'P700Printer.cpp',
|
'P700Printer.cpp',
|
||||||
'graphics/Label.cpp',
|
'graphics/Image.cpp',
|
||||||
'graphics/Bitmap.cpp',
|
'graphics/Bitmap.cpp',
|
||||||
'graphics/Monochrome.cpp',
|
'graphics/Monochrome.cpp',
|
||||||
'libusbwrap/UsbDeviceFactory.cpp',
|
'libusbwrap/UsbDeviceFactory.cpp',
|
||||||
|
@@ -17,10 +17,12 @@
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "graphics/Label.hpp"
|
#include "graphics/Image.hpp"
|
||||||
|
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
TEST(basic_test, Label_smokeTest_succeeds) {
|
#include <optional>
|
||||||
auto im = ptprnt::graphics::Label();
|
|
||||||
|
TEST(basic_test, Image_smokeTest_succeeds) {
|
||||||
|
auto im = ptprnt::graphics::Image();
|
||||||
}
|
}
|
@@ -1,40 +1,14 @@
|
|||||||
tests = [
|
tests = [['bitmap_test', 'bitmap_test_exe', ptprnt_srcs + ['bitmap_test/bitmap_test.cpp']],
|
||||||
[
|
['image_test', 'image_test_exe', ptprnt_srcs +['image_test/image_test.cpp']],
|
||||||
'bitmap_test',
|
['monochrome_test', 'monochrome_test_exe', ptprnt_srcs +['monochrome_test/monochrome_test.cpp']]
|
||||||
'bitmap_test_exe',
|
|
||||||
['../src/graphics/Bitmap.cpp', 'bitmap_test/bitmap_test.cpp'],
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'label_test',
|
|
||||||
'label_test_exe',
|
|
||||||
['../src/graphics/Label.cpp', 'label_test/label_test.cpp'],
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'monochrome_test',
|
|
||||||
'monochrome_test_exe',
|
|
||||||
[
|
|
||||||
'../src/graphics/Monochrome.cpp',
|
|
||||||
'monochrome_test/monochrome_test.cpp',
|
|
||||||
],
|
|
||||||
],
|
|
||||||
]
|
]
|
||||||
|
|
||||||
foreach test : tests
|
foreach test : tests
|
||||||
test(
|
test(test.get(0),
|
||||||
test.get(0),
|
executable(test.get(1),
|
||||||
executable(
|
|
||||||
test.get(1),
|
|
||||||
sources: test.get(2),
|
sources: test.get(2),
|
||||||
include_directories: incdir,
|
include_directories: incdir,
|
||||||
dependencies: [
|
dependencies: [gtest_dep, usb_dep, log_dep, pangocairo_dep, cli11_dep]
|
||||||
gtest_dep,
|
)
|
||||||
usb_dep,
|
|
||||||
log_dep,
|
|
||||||
pangocairo_dep,
|
|
||||||
cli11_dep,
|
|
||||||
],
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
|
|
||||||
|
@@ -57,9 +57,6 @@ TEST(basic_test, Monochrome_convertWithCustomThreshhold_yieldsMonochromeRespecti
|
|||||||
}
|
}
|
||||||
|
|
||||||
TEST(basic_test, Monochrome_convertNonAlignedPixels_spillsOverIntoNewByte) {
|
TEST(basic_test, Monochrome_convertNonAlignedPixels_spillsOverIntoNewByte) {
|
||||||
// TODO: We need to find to access the vector without the possiblity of out-of-bounds access
|
|
||||||
// Ideas: constexpr? compile time check?
|
|
||||||
GTEST_SKIP() << "Skipping this test, as ASAN will halt as this is an out-of-bounds access";
|
|
||||||
const std::vector<uint8_t> pixels({0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00,
|
const std::vector<uint8_t> pixels({0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00,
|
||||||
0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF});
|
0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF});
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user