Skip to content

Add low-level access to fb_shutdown_callback API functions #10

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

Merged
merged 1 commit into from
Jan 24, 2022

Conversation

artyom-smirnov
Copy link
Contributor

libfbclient handle signals on its own, so driver will get shutdown error on SIGTERM/SIGINT/SIGBREAK and there is no other possibilities to prevent it and softly stop process except handling shutdown manually:

Example of fb_shutdown_callback usage:

@FB_SHUTDOWN_CALLBACK
def driver_shutdown_callback(reason, mask, arg):
return 1 if reason == fb_shutrsn_signal else 0

def api_loaded_hook(api):
status = ISC_STATUS_ARRAY(20)
api.fb_shutdown_callback(status, driver_shutdown_callback, fb_shut_confirmation, None)
if db_api_error(status):
raise exception_from_status(InternalError, status, "Error while adding shutdown callback")

add_hook(APIHook.LOADED, FirebirdAPI, api_loaded_hook)

libfbclient handle signals on its own, so driver will get shutdown error on SIGTERM/SIGINT/SIGBREAK and there is no other possibilities to prevent it and softly stop process except handling shutdown manually:

Example of fb_shutdown_callback usage:

@FB_SHUTDOWN_CALLBACK
def driver_shutdown_callback(reason, mask, arg):
    return 1 if reason == fb_shutrsn_signal else 0

def api_loaded_hook(api):
    status = ISC_STATUS_ARRAY(20)
    api.fb_shutdown_callback(status, driver_shutdown_callback, fb_shut_confirmation, None)
    if db_api_error(status):
        raise exception_from_status(InternalError, status, "Error while adding shutdown callback")

add_hook(APIHook.LOADED, FirebirdAPI, api_loaded_hook)
@artyom-smirnov
Copy link
Contributor Author

Sorry, I accidentally closed previous PR by deleting branch. I've removed fb_shutdown in this PR (of course it already implemented in OO API, thanks) but kept fb_shut_* flags.

@pcisar pcisar merged commit 9b55d07 into FirebirdSQL:master Jan 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants