1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2025-05-08 17:59:50 +00:00

Compare commits

..

4 Commits

Author SHA1 Message Date
809116c764
Fix CodeQL Alerts
- Cast int to Py_ssize_t for multiplication
2021-08-26 03:43:31 -05:00
83f401595d
Minor Updates
- Cleanup extension modules in setup.py to use correct namespaces
- Update build.py to leverage setup.py for modules
- Roll mutagen required version back to 1.44.0 to support more distros
- Change build.py and sphinxgen.py to use pathlib
- Remove hsaudiotag from package list for debian and arch
2021-08-26 03:29:24 -05:00
814d145366
Updates to setup files
- Include additional non-python files in MANIFEST.in (package_data in
  setup.cfg was not including the files)
- Update requirements in setup.cfg
2021-08-25 04:10:38 -05:00
efb76c7686
Add OS and Python Information to error dialog 2021-08-25 02:05:18 -05:00
10 changed files with 392 additions and 435 deletions

View File

@ -1,3 +1,6 @@
recursive-include core *.h recursive-include core *.h
recursive-include core *.m recursive-include core *.m
include run.py include run.py
graft locale
graft help
graft qtlib/locale

View File

@ -4,19 +4,16 @@
# which should be included with this package. The terms are also available at # which should be included with this package. The terms are also available at
# http://www.gnu.org/licenses/gpl-3.0.html # http://www.gnu.org/licenses/gpl-3.0.html
import os from pathlib import Path
import os.path as op
import sys import sys
from optparse import OptionParser from optparse import OptionParser
import shutil import shutil
from setuptools import setup, Extension from setuptools import sandbox
from hscommon import sphinxgen from hscommon import sphinxgen
from hscommon.build import ( from hscommon.build import (
add_to_pythonpath, add_to_pythonpath,
print_and_do, print_and_do,
move_all,
fix_qt_resource_file, fix_qt_resource_file,
) )
from hscommon import loc from hscommon import loc
@ -63,14 +60,14 @@ def parse_args():
def build_help(): def build_help():
print("Generating Help") print("Generating Help")
current_path = op.abspath(".") current_path = Path(".").absolute()
help_basepath = op.join(current_path, "help", "en") help_basepath = current_path.joinpath("help", "en")
help_destpath = op.join(current_path, "build", "help") help_destpath = current_path.joinpath("build", "help")
changelog_path = op.join(current_path, "help", "changelog") changelog_path = current_path.joinpath("help", "changelog")
tixurl = "https://github.com/arsenetar/dupeguru/issues/{}" tixurl = "https://github.com/arsenetar/dupeguru/issues/{}"
confrepl = {"language": "en"} confrepl = {"language": "en"}
changelogtmpl = op.join(current_path, "help", "changelog.tmpl") changelogtmpl = current_path.joinpath("help", "changelog.tmpl")
conftmpl = op.join(current_path, "help", "conf.tmpl") conftmpl = current_path.joinpath("help", "conf.tmpl")
sphinxgen.gen( sphinxgen.gen(
help_basepath, help_basepath,
help_destpath, help_destpath,
@ -83,15 +80,15 @@ def build_help():
def build_qt_localizations(): def build_qt_localizations():
loc.compile_all_po(op.join("qtlib", "locale")) loc.compile_all_po(Path("qtlib", "locale"))
loc.merge_locale_dir(op.join("qtlib", "locale"), "locale") loc.merge_locale_dir(Path("qtlib", "locale"), "locale")
def build_localizations(): def build_localizations():
loc.compile_all_po("locale") loc.compile_all_po("locale")
build_qt_localizations() build_qt_localizations()
locale_dest = op.join("build", "locale") locale_dest = Path("build", "locale")
if op.exists(locale_dest): if locale_dest.exists():
shutil.rmtree(locale_dest) shutil.rmtree(locale_dest)
shutil.copytree("locale", locale_dest, ignore=shutil.ignore_patterns("*.po", "*.pot")) shutil.copytree("locale", locale_dest, ignore=shutil.ignore_patterns("*.po", "*.pot"))
@ -99,57 +96,35 @@ def build_localizations():
def build_updatepot(): def build_updatepot():
print("Building .pot files from source files") print("Building .pot files from source files")
print("Building core.pot") print("Building core.pot")
loc.generate_pot(["core"], op.join("locale", "core.pot"), ["tr"]) loc.generate_pot(["core"], Path("locale", "core.pot"), ["tr"])
print("Building columns.pot") print("Building columns.pot")
loc.generate_pot(["core"], op.join("locale", "columns.pot"), ["coltr"]) loc.generate_pot(["core"], Path("locale", "columns.pot"), ["coltr"])
print("Building ui.pot") print("Building ui.pot")
# When we're not under OS X, we don't want to overwrite ui.pot because it contains Cocoa locs # When we're not under OS X, we don't want to overwrite ui.pot because it contains Cocoa locs
# We want to merge the generated pot with the old pot in the most preserving way possible. # We want to merge the generated pot with the old pot in the most preserving way possible.
ui_packages = ["qt", op.join("cocoa", "inter")] ui_packages = ["qt", Path("cocoa", "inter")]
loc.generate_pot(ui_packages, op.join("locale", "ui.pot"), ["tr"], merge=True) loc.generate_pot(ui_packages, Path("locale", "ui.pot"), ["tr"], merge=True)
print("Building qtlib.pot") print("Building qtlib.pot")
loc.generate_pot(["qtlib"], op.join("qtlib", "locale", "qtlib.pot"), ["tr"]) loc.generate_pot(["qtlib"], Path("qtlib", "locale", "qtlib.pot"), ["tr"])
def build_mergepot(): def build_mergepot():
print("Updating .po files using .pot files") print("Updating .po files using .pot files")
loc.merge_pots_into_pos("locale") loc.merge_pots_into_pos("locale")
loc.merge_pots_into_pos(op.join("qtlib", "locale")) loc.merge_pots_into_pos(Path("qtlib", "locale"))
# loc.merge_pots_into_pos(op.join("cocoalib", "locale")) # loc.merge_pots_into_pos(Path("cocoalib", "locale"))
def build_normpo(): def build_normpo():
loc.normalize_all_pos("locale") loc.normalize_all_pos("locale")
loc.normalize_all_pos(op.join("qtlib", "locale")) loc.normalize_all_pos(Path("qtlib", "locale"))
# loc.normalize_all_pos(op.join("cocoalib", "locale")) # loc.normalize_all_pos(Path("cocoalib", "locale"))
def build_pe_modules(): def build_pe_modules():
print("Building PE Modules") print("Building PE Modules")
exts = [ # Leverage setup.py to build modules
Extension( sandbox.run_setup("setup.py", ["build_ext", "--inplace"])
"_block",
[
op.join("core", "pe", "modules", "block.c"),
op.join("core", "pe", "modules", "common.c"),
],
),
Extension(
"_cache",
[
op.join("core", "pe", "modules", "cache.c"),
op.join("core", "pe", "modules", "common.c"),
],
),
]
exts.append(Extension("_block_qt", [op.join("qt", "pe", "modules", "block.c")]))
setup(
script_args=["build_ext", "--inplace"],
ext_modules=exts,
)
move_all("_block_qt*", op.join("qt", "pe"))
move_all("_block*", op.join("core", "pe"))
move_all("_cache*", op.join("core", "pe"))
def build_normal(): def build_normal():
@ -160,8 +135,8 @@ def build_normal():
print("Building localizations") print("Building localizations")
build_localizations() build_localizations()
print("Building Qt stuff") print("Building Qt stuff")
print_and_do("pyrcc5 {0} > {1}".format(op.join("qt", "dg.qrc"), op.join("qt", "dg_rc.py"))) print_and_do("pyrcc5 {0} > {1}".format(Path("qt", "dg.qrc"), Path("qt", "dg_rc.py")))
fix_qt_resource_file(op.join("qt", "dg_rc.py")) fix_qt_resource_file(Path("qt", "dg_rc.py"))
build_help() build_help()
@ -169,10 +144,10 @@ def main():
if sys.version_info < (3, 6): if sys.version_info < (3, 6):
sys.exit("Python < 3.6 is unsupported.") sys.exit("Python < 3.6 is unsupported.")
options = parse_args() options = parse_args()
if options.clean and op.exists("build"): if options.clean and Path("build").exists():
shutil.rmtree("build") shutil.rmtree("build")
if not op.exists("build"): if not Path("build").exists():
os.mkdir("build") Path("build").mkdir()
if options.doc: if options.doc:
build_help() build_help()
elif options.loc: elif options.loc:

View File

@ -2,9 +2,9 @@
* Created On: 2010-01-30 * Created On: 2010-01-30
* Copyright 2014 Hardcoded Software (http://www.hardcoded.net) * Copyright 2014 Hardcoded Software (http://www.hardcoded.net)
* *
* This software is licensed under the "BSD" License as described in the "LICENSE" file, * This software is licensed under the "BSD" License as described in the
* which should be included with this package. The terms are also available at * "LICENSE" file, which should be included with this package. The terms are
* http://www.hardcoded.net/licenses/bsd_license * also available at http://www.hardcoded.net/licenses/bsd_license
*/ */
#include "common.h" #include "common.h"
@ -17,8 +17,7 @@ static PyObject *DifferentBlockCountError;
/* Returns a 3 sized tuple containing the mean color of 'image'. /* Returns a 3 sized tuple containing the mean color of 'image'.
* image: a PIL image or crop. * image: a PIL image or crop.
*/ */
static PyObject* getblock(PyObject *image) static PyObject *getblock(PyObject *image) {
{
int i, totr, totg, totb; int i, totr, totg, totb;
Py_ssize_t pixel_count; Py_ssize_t pixel_count;
PyObject *ppixels; PyObject *ppixels;
@ -30,7 +29,7 @@ static PyObject* getblock(PyObject *image)
} }
pixel_count = PySequence_Length(ppixels); pixel_count = PySequence_Length(ppixels);
for (i=0; i<pixel_count; i++) { for (i = 0; i < pixel_count; i++) {
PyObject *ppixel, *pr, *pg, *pb; PyObject *ppixel, *pr, *pg, *pb;
int r, g, b; int r, g, b;
@ -65,8 +64,7 @@ static PyObject* getblock(PyObject *image)
/* Returns the difference between the first block and the second. /* Returns the difference between the first block and the second.
* It returns an absolute sum of the 3 differences (RGB). * It returns an absolute sum of the 3 differences (RGB).
*/ */
static int diff(PyObject *first, PyObject *second) static int diff(PyObject *first, PyObject *second) {
{
int r1, g1, b1, r2, b2, g2; int r1, g1, b1, r2, b2, g2;
PyObject *pr, *pg, *pb; PyObject *pr, *pg, *pb;
pr = PySequence_ITEM(first, 0); pr = PySequence_ITEM(first, 0);
@ -93,7 +91,7 @@ static int diff(PyObject *first, PyObject *second)
} }
PyDoc_STRVAR(block_getblocks2_doc, PyDoc_STRVAR(block_getblocks2_doc,
"Returns a list of blocks (3 sized tuples).\n\ "Returns a list of blocks (3 sized tuples).\n\
\n\ \n\
image: A PIL image to base the blocks on.\n\ image: A PIL image to base the blocks on.\n\
block_count_per_side: This integer determine the number of blocks the function will return.\n\ block_count_per_side: This integer determine the number of blocks the function will return.\n\
@ -101,8 +99,7 @@ If it is 10, for example, 100 blocks will be returns (10 width, 10 height). The
necessarely cover square areas. The area covered by each block will be proportional to the image\n\ necessarely cover square areas. The area covered by each block will be proportional to the image\n\
itself.\n"); itself.\n");
static PyObject* block_getblocks2(PyObject *self, PyObject *args) static PyObject *block_getblocks2(PyObject *self, PyObject *args) {
{
int block_count_per_side, width, height, block_width, block_height, ih; int block_count_per_side, width, height, block_width, block_height, ih;
PyObject *image; PyObject *image;
PyObject *pimage_size, *pwidth, *pheight; PyObject *pimage_size, *pwidth, *pheight;
@ -128,23 +125,23 @@ static PyObject* block_getblocks2(PyObject *self, PyObject *args)
block_width = max(width / block_count_per_side, 1); block_width = max(width / block_count_per_side, 1);
block_height = max(height / block_count_per_side, 1); block_height = max(height / block_count_per_side, 1);
result = PyList_New(block_count_per_side * block_count_per_side); result = PyList_New((Py_ssize_t)block_count_per_side * block_count_per_side);
if (result == NULL) { if (result == NULL) {
return NULL; return NULL;
} }
for (ih=0; ih<block_count_per_side; ih++) { for (ih = 0; ih < block_count_per_side; ih++) {
int top, bottom, iw; int top, bottom, iw;
top = min(ih*block_height, height-block_height); top = min(ih * block_height, height - block_height);
bottom = top + block_height; bottom = top + block_height;
for (iw=0; iw<block_count_per_side; iw++) { for (iw = 0; iw < block_count_per_side; iw++) {
int left, right; int left, right;
PyObject *pbox; PyObject *pbox;
PyObject *pmethodname; PyObject *pmethodname;
PyObject *pcrop; PyObject *pcrop;
PyObject *pblock; PyObject *pblock;
left = min(iw*block_width, width-block_width); left = min(iw * block_width, width - block_width);
right = left + block_width; right = left + block_width;
pbox = inttuple(4, left, top, right, bottom); pbox = inttuple(4, left, top, right, bottom);
pmethodname = PyUnicode_FromString("crop"); pmethodname = PyUnicode_FromString("crop");
@ -161,7 +158,7 @@ static PyObject* block_getblocks2(PyObject *self, PyObject *args)
Py_DECREF(result); Py_DECREF(result);
return NULL; return NULL;
} }
PyList_SET_ITEM(result, ih*block_count_per_side+iw, pblock); PyList_SET_ITEM(result, ih * block_count_per_side + iw, pblock);
} }
} }
@ -169,19 +166,19 @@ static PyObject* block_getblocks2(PyObject *self, PyObject *args)
} }
PyDoc_STRVAR(block_avgdiff_doc, PyDoc_STRVAR(block_avgdiff_doc,
"Returns the average diff between first blocks and seconds.\n\ "Returns the average diff between first blocks and seconds.\n\
\n\ \n\
If the result surpasses limit, limit + 1 is returned, except if less than min_iterations\n\ If the result surpasses limit, limit + 1 is returned, except if less than min_iterations\n\
iterations have been made in the blocks.\n"); iterations have been made in the blocks.\n");
static PyObject* block_avgdiff(PyObject *self, PyObject *args) static PyObject *block_avgdiff(PyObject *self, PyObject *args) {
{
PyObject *first, *second; PyObject *first, *second;
int limit, min_iterations; int limit, min_iterations;
Py_ssize_t count; Py_ssize_t count;
int sum, i, result; int sum, i, result;
if (!PyArg_ParseTuple(args, "OOii", &first, &second, &limit, &min_iterations)) { if (!PyArg_ParseTuple(args, "OOii", &first, &second, &limit,
&min_iterations)) {
return NULL; return NULL;
} }
@ -196,7 +193,7 @@ static PyObject* block_avgdiff(PyObject *self, PyObject *args)
} }
sum = 0; sum = 0;
for (i=0; i<count; i++) { for (i = 0; i < count; i++) {
int iteration_count; int iteration_count;
PyObject *item1, *item2; PyObject *item1, *item2;
@ -206,7 +203,8 @@ static PyObject* block_avgdiff(PyObject *self, PyObject *args)
sum += diff(item1, item2); sum += diff(item1, item2);
Py_DECREF(item1); Py_DECREF(item1);
Py_DECREF(item2); Py_DECREF(item2);
if ((sum > limit*iteration_count) && (iteration_count >= min_iterations)) { if ((sum > limit * iteration_count) &&
(iteration_count >= min_iterations)) {
return PyLong_FromLong(limit + 1); return PyLong_FromLong(limit + 1);
} }
} }
@ -224,8 +222,7 @@ static PyMethodDef BlockMethods[] = {
{NULL, NULL, 0, NULL} /* Sentinel */ {NULL, NULL, 0, NULL} /* Sentinel */
}; };
static struct PyModuleDef BlockDef = { static struct PyModuleDef BlockDef = {PyModuleDef_HEAD_INIT,
PyModuleDef_HEAD_INIT,
"_block", "_block",
NULL, NULL,
-1, -1,
@ -233,12 +230,9 @@ static struct PyModuleDef BlockDef = {
NULL, NULL,
NULL, NULL,
NULL, NULL,
NULL NULL};
};
PyObject * PyObject *PyInit__block(void) {
PyInit__block(void)
{
PyObject *m = PyModule_Create(&BlockDef); PyObject *m = PyModule_Create(&BlockDef);
if (m == NULL) { if (m == NULL) {
return NULL; return NULL;
@ -246,7 +240,8 @@ PyInit__block(void)
NoBlocksError = PyErr_NewException("_block.NoBlocksError", NULL, NULL); NoBlocksError = PyErr_NewException("_block.NoBlocksError", NULL, NULL);
PyModule_AddObject(m, "NoBlocksError", NoBlocksError); PyModule_AddObject(m, "NoBlocksError", NoBlocksError);
DifferentBlockCountError = PyErr_NewException("_block.DifferentBlockCountError", NULL, NULL); DifferentBlockCountError =
PyErr_NewException("_block.DifferentBlockCountError", NULL, NULL);
PyModule_AddObject(m, "DifferentBlockCountError", DifferentBlockCountError); PyModule_AddObject(m, "DifferentBlockCountError", DifferentBlockCountError);
return m; return m;

View File

@ -4,7 +4,7 @@
# which should be included with this package. The terms are also available at # which should be included with this package. The terms are also available at
# http://www.gnu.org/licenses/gpl-3.0.html # http://www.gnu.org/licenses/gpl-3.0.html
import os.path as op from pathlib import Path
import re import re
from .build import read_changelog_file, filereplace from .build import read_changelog_file, filereplace
@ -48,9 +48,9 @@ def gen(
if confrepl is None: if confrepl is None:
confrepl = {} confrepl = {}
if confpath is None: if confpath is None:
confpath = op.join(basepath, "conf.tmpl") confpath = Path(basepath, "conf.tmpl")
if changelogtmpl is None: if changelogtmpl is None:
changelogtmpl = op.join(basepath, "changelog.tmpl") changelogtmpl = Path(basepath, "changelog.tmpl")
changelog = read_changelog_file(changelogpath) changelog = read_changelog_file(changelogpath)
tix = tixgen(tixurl) tix = tixgen(tixurl)
rendered_logs = [] rendered_logs = []
@ -62,13 +62,13 @@ def gen(
rendered = CHANGELOG_FORMAT.format(version=log["version"], date=log["date_str"], description=description) rendered = CHANGELOG_FORMAT.format(version=log["version"], date=log["date_str"], description=description)
rendered_logs.append(rendered) rendered_logs.append(rendered)
confrepl["version"] = changelog[0]["version"] confrepl["version"] = changelog[0]["version"]
changelog_out = op.join(basepath, "changelog.rst") changelog_out = Path(basepath, "changelog.rst")
filereplace(changelogtmpl, changelog_out, changelog="\n".join(rendered_logs)) filereplace(changelogtmpl, changelog_out, changelog="\n".join(rendered_logs))
if op.exists(confpath): if Path(confpath).exists():
conf_out = op.join(basepath, "conf.py") conf_out = Path(basepath, "conf.py")
filereplace(confpath, conf_out, **confrepl) filereplace(confpath, conf_out, **confrepl)
# Call the sphinx_build function, which is the same as doing sphinx-build from cli # Call the sphinx_build function, which is the same as doing sphinx-build from cli
try: try:
sphinx_build([basepath, destpath]) sphinx_build([str(basepath), str(destpath)])
except SystemExit: except SystemExit:
print("Sphinx called sys.exit(), but we're cancelling it because we don't actually want to exit") print("Sphinx called sys.exit(), but we're cancelling it because we don't actually want to exit")

View File

@ -71,7 +71,7 @@ def package_debian_distribution(distribution):
version = "{}~{}".format(app_version, distribution) version = "{}~{}".format(app_version, distribution)
destpath = op.join("build", "dupeguru-{}".format(version)) destpath = op.join("build", "dupeguru-{}".format(version))
srcpath = op.join(destpath, "src") srcpath = op.join(destpath, "src")
packages = ["hscommon", "core", "qtlib", "qt", "send2trash", "hsaudiotag"] packages = ["hscommon", "core", "qtlib", "qt", "send2trash"]
copy_files_to_package(srcpath, packages, with_so=False) copy_files_to_package(srcpath, packages, with_so=False)
os.mkdir(op.join(destpath, "modules")) os.mkdir(op.join(destpath, "modules"))
copy_all(op.join("core", "pe", "modules", "*.*"), op.join(destpath, "modules")) copy_all(op.join("core", "pe", "modules", "*.*"), op.join(destpath, "modules"))
@ -122,14 +122,7 @@ def package_arch():
# need to include them). # need to include them).
print("Packaging for Arch") print("Packaging for Arch")
srcpath = op.join("build", "dupeguru-arch") srcpath = op.join("build", "dupeguru-arch")
packages = [ packages = ["hscommon", "core", "qtlib", "qt", "send2trash"]
"hscommon",
"core",
"qtlib",
"qt",
"send2trash",
"hsaudiotag",
]
copy_files_to_package(srcpath, packages, with_so=True) copy_files_to_package(srcpath, packages, with_so=True)
shutil.copy(op.join("images", "dgse_logo_128.png"), srcpath) shutil.copy(op.join("images", "dgse_logo_128.png"), srcpath)
debopts = json.load(open(op.join("pkg", "arch", "dupeguru.json"))) debopts = json.load(open(op.join("pkg", "arch", "dupeguru.json")))
@ -233,7 +226,8 @@ def main():
return return
print("Packaging dupeGuru with UI qt") print("Packaging dupeGuru with UI qt")
if sys.platform == "win32": if sys.platform == "win32":
package_windows() package_debian()
# package_windows()
elif sys.platform == "darwin": elif sys.platform == "darwin":
package_macos() package_macos()
else: else:

View File

@ -2,32 +2,22 @@
* Created On: 2010-01-31 * Created On: 2010-01-31
* Copyright 2014 Hardcoded Software (http://www.hardcoded.net) * Copyright 2014 Hardcoded Software (http://www.hardcoded.net)
* *
* This software is licensed under the "BSD" License as described in the "LICENSE" file, * This software is licensed under the "BSD" License as described in the
* which should be included with this package. The terms are also available at *"LICENSE" file, which should be included with this package. The terms are also
* http://www.hardcoded.net/licenses/bsd_license *available at http://www.hardcoded.net/licenses/bsd_license
**/ **/
#define PY_SSIZE_T_CLEAN #define PY_SSIZE_T_CLEAN
#include "Python.h" #include "Python.h"
/* It seems like MS VC defines min/max already */ /* It seems like MS VC defines min/max already */
#ifndef _MSC_VER #ifndef _MSC_VER
static int static int max(int a, int b) { return b > a ? b : a; }
max(int a, int b)
{
return b > a ? b : a;
}
static int static int min(int a, int b) { return b < a ? b : a; }
min(int a, int b)
{
return b < a ? b : a;
}
#endif #endif
static PyObject* static PyObject *getblock(PyObject *image, int width, int height) {
getblock(PyObject *image, int width, int height)
{
int pixel_count, red, green, blue, bytes_per_line; int pixel_count, red, green, blue, bytes_per_line;
PyObject *pred, *pgreen, *pblue; PyObject *pred, *pgreen, *pblue;
PyObject *result; PyObject *result;
@ -48,13 +38,13 @@ getblock(PyObject *image, int width, int height)
Py_DECREF(sipptr); Py_DECREF(sipptr);
s = (char *)PyCapsule_GetPointer(bits_capsule, NULL); s = (char *)PyCapsule_GetPointer(bits_capsule, NULL);
Py_DECREF(bits_capsule); Py_DECREF(bits_capsule);
/* Qt aligns all its lines on 32bit, which means that if the number of bytes per /* Qt aligns all its lines on 32bit, which means that if the number of bytes
* line for image is not divisible by 4, there's going to be crap inserted in "s" *per line for image is not divisible by 4, there's going to be crap
* We have to take this into account when calculating offsets *inserted in "s" We have to take this into account when calculating offsets
**/ **/
for (i=0; i<height; i++) { for (i = 0; i < height; i++) {
int j; int j;
for (j=0; j<width; j++) { for (j = 0; j < width; j++) {
int offset; int offset;
unsigned char r, g, b; unsigned char r, g, b;
@ -84,18 +74,18 @@ getblock(PyObject *image, int width, int height)
return result; return result;
} }
/* block_getblocks(QImage image, int block_count_per_side) -> [(int r, int g, int b), ...] /* block_getblocks(QImage image, int block_count_per_side) -> [(int r, int g,
*int b), ...]
* *
* Compute blocks out of `image`. Note the use of min/max when compes the time of computing widths * Compute blocks out of `image`. Note the use of min/max when compes the time
* and heights and positions. This is to cover the case where the width or height of the image is *of computing widths and heights and positions. This is to cover the case where
* smaller than `block_count_per_side`. In these cases, blocks will be, of course, 1 pixel big. But *the width or height of the image is smaller than `block_count_per_side`. In
* also, because all compared block lists are required to be of the same size, any block that has *these cases, blocks will be, of course, 1 pixel big. But also, because all
* no pixel to be assigned to will simply be assigned the last pixel. This is why we have *compared block lists are required to be of the same size, any block that has
* min(..., height-block_height-1) and stuff like that. * no pixel to be assigned to will simply be assigned the last pixel. This is
**/ *why we have min(..., height-block_height-1) and stuff like that.
static PyObject* **/
block_getblocks(PyObject *self, PyObject *args) static PyObject *block_getblocks(PyObject *self, PyObject *args) {
{
int block_count_per_side, width, height, block_width, block_height, ih; int block_count_per_side, width, height, block_width, block_height, ih;
PyObject *image; PyObject *image;
PyObject *pi; PyObject *pi;
@ -119,21 +109,22 @@ block_getblocks(PyObject *self, PyObject *args)
block_width = max(width / block_count_per_side, 1); block_width = max(width / block_count_per_side, 1);
block_height = max(height / block_count_per_side, 1); block_height = max(height / block_count_per_side, 1);
result = PyList_New(block_count_per_side * block_count_per_side); result = PyList_New((Py_ssize_t)block_count_per_side * block_count_per_side);
if (result == NULL) { if (result == NULL) {
return NULL; return NULL;
} }
for (ih=0; ih<block_count_per_side; ih++) { for (ih = 0; ih < block_count_per_side; ih++) {
int top, iw; int top, iw;
top = min(ih*block_height, height-block_height-1); top = min(ih * block_height, height - block_height - 1);
for (iw=0; iw<block_count_per_side; iw++) { for (iw = 0; iw < block_count_per_side; iw++) {
int left; int left;
PyObject *pcrop; PyObject *pcrop;
PyObject *pblock; PyObject *pblock;
left = min(iw*block_width, width-block_width-1); left = min(iw * block_width, width - block_width - 1);
pcrop = PyObject_CallMethod(image, "copy", "iiii", left, top, block_width, block_height); pcrop = PyObject_CallMethod(image, "copy", "iiii", left, top, block_width,
block_height);
if (pcrop == NULL) { if (pcrop == NULL) {
Py_DECREF(result); Py_DECREF(result);
return NULL; return NULL;
@ -144,7 +135,7 @@ block_getblocks(PyObject *self, PyObject *args)
Py_DECREF(result); Py_DECREF(result);
return NULL; return NULL;
} }
PyList_SET_ITEM(result, ih*block_count_per_side+iw, pblock); PyList_SET_ITEM(result, ih * block_count_per_side + iw, pblock);
} }
} }
@ -156,8 +147,7 @@ static PyMethodDef BlockMethods[] = {
{NULL, NULL, 0, NULL} /* Sentinel */ {NULL, NULL, 0, NULL} /* Sentinel */
}; };
static struct PyModuleDef BlockDef = { static struct PyModuleDef BlockDef = {PyModuleDef_HEAD_INIT,
PyModuleDef_HEAD_INIT,
"_block_qt", "_block_qt",
NULL, NULL,
-1, -1,
@ -165,12 +155,9 @@ static struct PyModuleDef BlockDef = {
NULL, NULL,
NULL, NULL,
NULL, NULL,
NULL NULL};
};
PyObject * PyObject *PyInit__block_qt(void) {
PyInit__block_qt(void)
{
PyObject *m = PyModule_Create(&BlockDef); PyObject *m = PyModule_Create(&BlockDef);
if (m == NULL) { if (m == NULL) {
return NULL; return NULL;

View File

@ -9,6 +9,7 @@
import traceback import traceback
import sys import sys
import os import os
import platform
from PyQt5.QtCore import Qt, QCoreApplication, QSize from PyQt5.QtCore import Qt, QCoreApplication, QSize
from PyQt5.QtWidgets import ( from PyQt5.QtWidgets import (
@ -34,7 +35,9 @@ class ErrorReportDialog(QDialog):
self._setupUi() self._setupUi()
name = QCoreApplication.applicationName() name = QCoreApplication.applicationName()
version = QCoreApplication.applicationVersion() version = QCoreApplication.applicationVersion()
error_text = "Application Name: {}\nVersion: {}\n\n{}".format(name, version, error) error_text = "Application Name: {}\nVersion: {}\nPython: {}\nOperating System: {}\n\n{}".format(
name, version, platform.python_version(), platform.platform(), error
)
# Under windows, we end up with an error report without linesep if we don't mangle it # Under windows, we end up with an error report without linesep if we don't mangle it
error_text = error_text.replace("\n", os.linesep) error_text = error_text.replace("\n", os.linesep)
self.errorTextEdit.setPlainText(error_text) self.errorTextEdit.setPlainText(error_text)

View File

@ -1,7 +1,7 @@
Send2Trash>=1.3.0 Send2Trash>=1.3.0
sphinx>=3.0.0 sphinx>=3.0.0
polib>=1.1.0 polib>=1.1.0
mutagen>=1.45.1 mutagen>=1.44.0
distro>=1.5.0 distro>=1.5.0
PyQt5 >=5.14.1,<6.0; sys_platform != 'linux' PyQt5 >=5.14.1,<6.0; sys_platform != 'linux'
pywin32>=228; sys_platform == 'win32' pywin32>=228; sys_platform == 'win32'

View File

@ -31,12 +31,15 @@ python_requires = >=3.6
install_requires = install_requires =
Send2Trash>=1.3.0 Send2Trash>=1.3.0
polib>=1.1.0 polib>=1.1.0
hsaudiotag3k>=1.1.3* mutagen>=1.45.1
distro>=1.5.0 distro>=1.5.0
PyQt5 >=5.14.1,<6.0; sys_platform != 'linux' PyQt5 >=5.14.1,<6.0; sys_platform != 'linux'
pywin32>=228; sys_platform == 'win32' pywin32>=228; sys_platform == 'win32'
setup_requires =
sphinx>=3.0.0
tests_require = tests_require =
pytest >=6,<7 pytest >=6,<7
include_package_data = true
[options.entry_points] [options.entry_points]
console_scripts = console_scripts =

View File

@ -3,7 +3,7 @@ from pathlib import Path
exts = [ exts = [
Extension( Extension(
"_block", "core.pe._block",
[ [
str(Path("core", "pe", "modules", "block.c")), str(Path("core", "pe", "modules", "block.c")),
str(Path("core", "pe", "modules", "common.c")), str(Path("core", "pe", "modules", "common.c")),
@ -11,19 +11,16 @@ exts = [
include_dirs=[str(Path("core", "pe", "modules"))], include_dirs=[str(Path("core", "pe", "modules"))],
), ),
Extension( Extension(
"_cache", "core.pe._cache",
[ [
str(Path("core", "pe", "modules", "cache.c")), str(Path("core", "pe", "modules", "cache.c")),
str(Path("core", "pe", "modules", "common.c")), str(Path("core", "pe", "modules", "common.c")),
], ],
include_dirs=[str(Path("core", "pe", "modules"))], include_dirs=[str(Path("core", "pe", "modules"))],
), ),
Extension("_block_qt", [str(Path("qt", "pe", "modules", "block.c"))]), Extension("qt.pe._block_qt", [str(Path("qt", "pe", "modules", "block.c"))]),
] ]
headers = [str(Path("core", "pe", "modules", "common.h"))] headers = [str(Path("core", "pe", "modules", "common.h"))]
setup( setup(ext_modules=exts, headers=headers)
ext_modules=exts,
headers=headers,
)