Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:Regenerate guake schema if old schema file found #1893

Merged
merged 1 commit into from
Sep 13, 2021
Merged

fix:Regenerate guake schema if old schema file found #1893

merged 1 commit into from
Sep 13, 2021

Conversation

Davidy22
Copy link
Collaborator

Currently guake only generates a schema file if there is no schema file present. If there is a schema file from an older version of guake present, glib will attempt to use that file, segfault and never return execution back to python. Do manual version recording and checking ourselves to regenerate the file instead of relying on exception handling on glibc.

Fixes #1718, and I think should resolve #1621 as well.

Copy link
Collaborator

@mlouielu mlouielu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some points I want to know more about it.

guake/guake_app.py Outdated Show resolved Hide resolved
@@ -94,3 +94,5 @@ AUTOSTART_FOLDER = {{ AUTOSTART_FOLDER }}
def try_to_compile_glib_schemas():
log.info("Compiling schema: %s", SCHEMA_DIR)
subprocess.check_call(["glib-compile-schemas", "--strict", SCHEMA_DIR])
with open(os.path.join(SCHEMA_DIR, "version"), "w", encoding="utf-8") as version:
version.write(guake.guake_version())
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can this detect dirty version?

e.g. when you are doing some scheme change, will this embed something like 3.7.1-ea39dkf-dirty before you bump Guake version?

Copy link
Collaborator Author

@Davidy22 Davidy22 Sep 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

guake_version() in dev appends ".dev[numbers]" to the end of the version number so there is distinction, but this is mostly moot for work in dev because sudo make install correctly creates the schema file always before we even get to this line, this patch only really affects people trying to install from pip or wheels, which only have clean version numbers.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for clarify

@@ -101,14 +101,25 @@ class Guake(SimpleGladeApp):
def __init__(self):
def load_schema():
log.info("Loading Gnome schema from: %s", SCHEMA_DIR)
with open(os.path.join(SCHEMA_DIR, "version"), encoding="utf-8") as version:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer to use pathlib (as we only support >= 3.6)

with open(pathlib.Path(SCHEMA_DIR / "version"), ...)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wasn't os.path.join already around before 3.6? I'll change it to pathlib anyways

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep, but pathlib will handle any annoying file system stuff (although Guake didn't run on different OS...)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed to pathlib

@@ -94,3 +94,5 @@ AUTOSTART_FOLDER = {{ AUTOSTART_FOLDER }}
def try_to_compile_glib_schemas():
log.info("Compiling schema: %s", SCHEMA_DIR)
subprocess.check_call(["glib-compile-schemas", "--strict", SCHEMA_DIR])
with open(os.path.join(SCHEMA_DIR, "version"), "w", encoding="utf-8") as version:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer pathlib, and I don't think we need encoding="utf-8", they won't contain unicode codepoint character.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Including encoding in open() calls makes the linter happy. I'll change it to ascii.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

emit by flake8?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I changed the explicit encoding to ascii already. Probably don't want to remove the check from our linter, it's an alright check

Makefile Outdated Show resolved Hide resolved
@@ -101,14 +101,25 @@ class Guake(SimpleGladeApp):
def __init__(self):
def load_schema():
log.info("Loading Gnome schema from: %s", SCHEMA_DIR)
with open(Path(SCHEMA_DIR, "version"), encoding="ascii") as version:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if this is a good idea, when installed on the system I remember well all gschema can be placed into a single directory.

maybe the name of the schéma file + version. Or burn the guake version into the schéma file in a new key

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't consider using a param in the schema file. Changed approach to use that. No additional version tracking files now.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

perfect !

@@ -94,3 +96,5 @@ AUTOSTART_FOLDER = {{ AUTOSTART_FOLDER }}
def try_to_compile_glib_schemas():
log.info("Compiling schema: %s", SCHEMA_DIR)
subprocess.check_call(["glib-compile-schemas", "--strict", SCHEMA_DIR])
with open(Path(SCHEMA_DIR, "version"), "w", encoding="ascii") as version:
version.write(guake.guake_version())
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you will have to use the same file name + extension to avoid any conflict

Currently guake only generates a schema file if there is no schema file present. If there is a schema file from an older version of guake present, glib will attempt to use that file, segfault and never return execution back to python. Do manual version recording and checking ourselves to regenerate the file instead of relying on exception handling on glibc.
@gsemet gsemet merged commit 93c5cc4 into Guake:master Sep 13, 2021
@Davidy22
Copy link
Collaborator Author

Changed the approach somewhat to use a setting in the schema file.

@@ -142,7 +141,7 @@ install-schemas:
install -Dm644 "$(DEV_DATA_DIR)/org.guake.gschema.xml" "$(DESTDIR)$(SCHEMA_DIR)/"

compile-shemas:
if [ $(COMPILE_SCHEMA) = 1 ]; then glib-compile-schemas $(DESTDIR)$(gsettingsschemadir); fi
glib-compile-schemas $(DESTDIR)$(gsettingsschemadir)
Copy link
Collaborator

@eli-schwartz eli-schwartz Sep 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Distro packages MUST NOT have a compiled schema as this is handled globally outside of any package. For the same reason that distro packages must not run update-desktop-database or update-mime-database or other such commands.

These all create a global cache shared between packages but owned by none. They cannot be owned by a package because then they will have file conflicts with untracked files, or else get overwritten by other packages... that is why you don't just ship the compiled schema directly.

The traditional way to detect that this should not be done, is to only do it when DESTDIR is empty. But existing distro packages are relying on using make install COMPILE_SCHEMAS=0 which is opt in and anyone using that is definitely not going to be surprised that they need to compile the schemas themselves.

Choose either solution, but please restore the ability for distros to package Guake. :)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh whoops, thought that was just redundant, opening new pull request with restoration

Copy link
Collaborator

@eli-schwartz eli-schwartz Sep 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I do understand that maintaining compatibility with distro installs is not always the most obvious or intuitive, so sometimes things slip through the cracks... :)

While you are at it you can go the DESTDIR route, even. ;) It means distros don't need to pass two options when one option will do... Also, it will be more obvious to the next person working on the makefile, that this is special because of distro staged installs rather than just a random option.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I put in a commit that just reverted, can look at an existence check on DESTDIR

gsemet pushed a commit that referenced this pull request Sep 13, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
4 participants