Newer
Older
__RDOS_Dict__ = {"ismail": "moumni"}
# tools List
__RDOS_Tool__ = []
class RdosServer:
# Function server_conn creates a socket and listens on port 9393
# Function input address : SERVER IP ADRESS & Port server Port
# Function output query send from client to server
def server_conn(address, PORT):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as serv:
serv.bind((address, PORT))
# Listening to 5 CLients
serv.listen(5)
# accepting the connection from client and getting client IP
# Receiving Data from Client
data = conn.recv(4096)
query = (json.loads(data.decode('utf-8')))
print(query)
if query_valid(query):
Tool = __RDOS_Tool__
dt_js = json.dumps(send_param_client(__RDOS_Dict__, Tool))
# Function query_valid matches the query send from client side
# with the the parameter dict
# Function input dictionnary from client
# Function output boolean true if match else False
def query_valid(data: dict):
if 'parameters' in data:
return True
return False
# Function send_param_client send a dictionnary containing parameters
# needed to add a query to db
# Function exmaple s = {"ARGUMENTS","Tools":"List of Tools" }
# Function input takes dictionnary and a list of tools
# Function output returns a new dictionnary containing arguments
# # for db query and list of tools
def send_param_client(__RDOS_Dict__: dict, __RDOS_Tools__: list):
dict_cl = {}
if len(__RDOS_Dict__) > 0:
dict_cl["outils"] = (__RDOS_Tools__)
s = {**__RDOS_Dict__, **dict_cl}
return s
# Function json_loads changes a json file into a Dict
# Function json_loads returns a Dictinnary
def json_to_dict(js):
data = json.loads(js)
return data
# def db_req(tool: str):
# tool_dict = db.getParameters(tool)
# return tool_dict
def verif_param(data: dict):
# Tuple
# s = db.getParameters(data['tool'])
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
if s is not None:
try:
gen = s[0]
gen_default = s[1]
if match_query_dict(gen, data):
for a in data:
if data[a] == "":
data[a] = gen_default[a]
return data
except Exception as msg:
print("Error : " % msg)
else:
raise Exception("Error from DB")
def match_query_dict(biblio: dict, data: dict):
if biblio is not None and data is not None:
return biblio.keys() == data.keys()
else:
raise ValueError("Error Dict Value ")
# Function match_generator_dict Matches Dictionnary with a list
# Function input 2 arguments Dictionnary and query from Server
# Function output true if dictionnary keys match list elements else false
def match_generator_dict(biblio: dict, Genereator: list):
for a in Genereator:
for b in biblio.keys():
if a != b:
return False
return True
"internet": "internet",
"glossary": {
"title": "example glossary",
"GlossDiv": {
"title": "S",
"GlossList": {
"GlossEntry": {
"ID": "SGML",
"SortAs": "SGML",
"GlossTerm": "Standard Generalized Markup Language",
"Acronym": "SGML",
"Abbrev": "ISO 8879:1986",
"GlossDef": {
"para": "A meta-markup language.",
"GlossSeeAlso": ["GML", "XML"]
},
"GlossSee": "markup"
}
}
}
}
}
data1 = {"ll": "s", "ismail": "ss"}
print(match_query_dict(data, data))
print(verif_param({"name": ""}))