| Server IP : 185.208.173.17 / Your IP : 87.236.161.98 Web Server : Microsoft-IIS/10.0 System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64 User : IUSR ( 0) PHP Version : 7.4.13 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files/MySQL/MySQL Workbench 8.0/swb/shell/lib/mysqlsh/plugins/gui_plugin/core/ |
Upload File : |
# Copyright (c) 2020, 2024, Oracle and/or its affiliates.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2.0,
# as published by the Free Software Foundation.
#
# This program is designed to work with certain software (including
# but not limited to OpenSSL) that is licensed under separate terms, as
# designated in a particular file or component or in included license
# documentation. The authors of MySQL hereby grant you an additional
# permission to link the program and your derivative works with the
# separately licensed software that they have either included with
# the program or referenced in the documentation.
#
# 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, version 2.0, for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
import json
import sqlite3
import traceback
import mysqlsh
from .Error import SYSTEM_GENERIC_ERROR, MSGException
class Response:
@staticmethod
def standard(type, msg, args={}, state={}):
return {
**{
"request_state": {
**{
"type": type,
"msg": msg
},
**state
}
},
**args
}
@staticmethod
def ok(msg, args={}):
return Response.standard("OK", msg, args)
@staticmethod
def error(msg, args={}, state={}):
return Response.standard("ERROR", msg, args, state)
@staticmethod
def exception(e, args={}):
if isinstance(e, mysqlsh.DBError):
return Response.error(e.msg, args, {
"source": "MYSQL",
"code": e.code,
"sqlstate": e.sqlstate
})
elif isinstance(e, mysqlsh.Error):
return Response.error(e.msg, args, {
"source": "MYSQLSH",
"code": e.code
})
elif isinstance(e, sqlite3.Error):
return Response.error(str(e), args, {
"source": "SQLITE"
})
elif isinstance(e, MSGException):
return Response.error(e.msg, args, {
"source": e.source,
"code": e.code
})
elif isinstance(e, Exception):
lines = traceback.format_exception_only(e)
if len(lines) > 1:
msg = lines[0].strip()+"\n"+lines[-1].strip()
else:
msg = str(e)
return Response.error(msg, args, {
"source": "MSG",
"code": SYSTEM_GENERIC_ERROR
})
else:
# Check if we're getting a json/dictionary in the exception
# message and make sure we output in valid json
try:
e.args = (json.dumps(eval("{" + str(e).split("{", 1)[1])), )
except:
# This looked like a json response, but it's not. keep going with the
# standard handling
pass
return Response.error(str(e), args, {
"source": "MSG",
"code": SYSTEM_GENERIC_ERROR
})
@staticmethod
def pending(msg=None, args={}):
if msg is None:
msg = "Execution started..."
return Response.standard("PENDING", msg, args)
@staticmethod
def fromStatus(status, args={}):
return Response.standard(status['type'], status['msg'], args)
@staticmethod
def cancelled(msg, args={}, state={}):
return Response.standard("CANCELLED", msg, args, state)
class Protocol(object):
@staticmethod
def get_message(msg_type, message, request_id: None):
request_id_str = request_id if request_id else ''
response = {
"request_id": request_id_str,
"request_state": {
"type": msg_type,
"msg": message
}
}
return json.dumps(response, separators=(',', ':'))
@staticmethod
def get_response(msg_type, message, request_id=None, values=None):
msg_text = json.dumps(message) if isinstance(
message, dict) else message
request_id_str = request_id if request_id else ''
response = {
"response": msg_type,
"message": msg_text,
"request_id": request_id_str,
}
if values:
if isinstance(values, dict):
response.update(values)
else:
response.update({"result": str(values)})
return json.dumps(response, separators=(',', ':'))