Source code for pm4py.algo.querying.llm.utils.sql_utils

'''
    PM4Py – A Process Mining Library for Python
Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt)

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or 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 Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see this software project's root or
visit <https://www.gnu.org/licenses/>.

Website: https://processintelligence.solutions
Contact: info@processintelligence.solutions
'''
import re


ref_stri_1 = "ordabcchr"
ref_stri_2 = "ordabc"

re1 = re.compile(r"([^a-zA-Z0-9]+)")
re2 = re.compile(ref_stri_1)


[docs] def mask_non_alphanumeric(stri): stri_split = re1.split(stri) ret = [] for el in stri_split: for char in el: if ( char.isalnum() or char == " " or char in [ "(", ")", "*", ".", ",", "'", '"', "=", "<", ">", "_", "+", "-", "!", ] ): ret.append(char) else: ret.append( ref_stri_1 + ref_stri_2 + str(ord(char)) + ref_stri_1 ) return "".join(ret)
[docs] def restore_non_alphanumeric(stri): stri_split = re2.split(stri) ret = [] for el in stri_split: if el.startswith(ref_stri_2): ret.append(chr(int(el[len(ref_stri_2):]))) else: ret.append(el) return "".join(ret)