1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; version 2 of the
# License.
#
# 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 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
from wb_admin_utils import not_running_warning_label, make_panel_header, weakcb
from mforms import newBox, newTreeNodeView, newButton, newTabView, newTextEntry
import mforms
import wb_admin_variable_list
class VariablesViewer(mforms.Box):
def __init__(self, ctrl_be, variables, command, type):
mforms.Box.__init__(self, False)
self.set_managed()
self.set_release_on_add()
self.user_groups = VariablesGroupContainer(type)
self.user_groups.load()
self.variables = variables
self.suspend_layout()
self.command = command
self.ctrl_be = ctrl_be
box = newBox(True)
box.set_spacing(12)
self.add(box, True, True)
self.tree = newTreeNodeView(mforms.TreeFlatList)
self.tree.set_selection_mode(mforms.TreeSelectMultiple)
sidebox = newBox(False)
box.add(sidebox, False, True)
self.searchEntry = newTextEntry(mforms.SearchEntry)
sidebox.set_spacing(12)
sidebox.add(self.searchEntry, False, True)
sidebox.add(self.tree, True, True)
self.tree.set_size(210, -1)
self.searchEntry.add_changed_callback(self.filterOutput)
self.tree.add_column(mforms.StringColumnType, "Category", 200, False)
self.tree.end_columns()
self.tree.add_changed_callback(weakcb(self, "refresh"))
self.cat_menu = mforms.newContextMenu()
self.cat_menu.add_will_show_callback(self.cat_menu_will_show)
self.cat_menu.add_item_with_title("Delete Category", self.delete_category, "delete")
self.tree.set_context_menu(self.cat_menu)
self.values = newTreeNodeView(mforms.TreeFlatList)
self.values.set_selection_mode(mforms.TreeSelectMultiple)
box.add(self.values, True, True)
self.values.add_column(mforms.StringColumnType, "Name", 200, False)
self.values.add_column(mforms.StringColumnType, "Value", 120, True)
self.values.add_column(mforms.StringColumnType, "Description", 1000, False)
self.values.end_columns()
self.values.set_allow_sorting(True)
self.values.set_cell_edited_callback(self.edit_variable)
self.values.add_changed_callback(weakcb(self, "value_selection_changed"))
self.menu = mforms.newContextMenu()
self.menu.add_will_show_callback(self.menu_will_show)
self.values.set_context_menu(self.menu)
box = newBox(True)
box.set_spacing(8)
copy_all_button = newButton()
copy_all_button.set_text('Copy Global Status and Variables to Clipboard')
copy_all_button.add_clicked_callback(self.copy_status_to_clipboard)
box.add(copy_all_button, False, False)
copy_shown_button = newButton()
copy_shown_button.set_text('Copy Selected to Clipboard')
copy_shown_button.add_clicked_callback(self.copy_selected_to_clipboard)
box.add(copy_shown_button, False, False)
self.copy_selected_to_clipboard_button = copy_shown_button
button = newButton()
box.add_end(button, False, True)
button.set_text("Refresh")
box.set_padding(12)
button.add_clicked_callback(weakcb(self, "refresh"))
self.add(box, False, True)
row = self.tree.add_node()
row.set_string(0, "All")
row = self.tree.add_node()
row.set_string(0, "Filtered")
self.resume_layout()
self.variable_info = {}
self.variables_in_group = {"Other":[]}
self._delayed_init_tm = mforms.Utilities.add_timeout(0.1, lambda: self.delayed_init(self.variables))
def refresh_groups(self):
self.tree.clear()
row = self.tree.add_node()
row.set_string(0, "All")
row = self.tree.add_node()
row.set_string(0, "Filtered")
self.variable_info = {}
self.variables_in_group = {"Other":[]}
self.delayed_init(self.variables)
def shutdown(self):
if self._delayed_init_tm:
mforms.Utilities.cancel_timeout(self._delayed_init_tm)
self._delayed_init_tm = None
def delayed_init(self, variables):
self._delayed_init_tm = None
variables_in_server = []
result = self.ctrl_be.exec_query(self.command)
if result is not None:
while result.nextRow():
name = result.stringByName("Variable_name")
variables_in_server.append(name)
existing_groups = set()
for name, description, editable, groups in variables:
self.variable_info[name.replace("-", "_")] = (description, editable)
existing_groups = existing_groups.union(set(groups))
for group in groups:
if group not in self.variables_in_group:
self.variables_in_group[group] = []
self.variables_in_group[group].append(name.replace("-", "_"))
if not groups:
self.variables_in_group["Other"].append(name.replace("-", "_"))
for group_name in sorted(existing_groups):
row = self.tree.add_node()
row.set_string(0, group_name)
row.set_tag(group_name)
if self.variables_in_group["Other"]:
row = self.tree.add_node()
row.set_string(0, "Other")
row.set_tag("Other")
self.copy_selected_to_clipboard_button.set_enabled(len(self.values.get_selection()) > 0)
for group in self.user_groups.content:
row = self.tree.add_node()
row.set_string(0, group)
row.set_tag("Custom: %s" % group)
if "Custom: %s" % group not in self.variables_in_group:
self.variables_in_group["Custom: %s" % group] = self.user_groups.content[group]
def edit_variable(self, node, column, value):
name = node.get_string(0)
if name and self.variable_info.has_key(name) and self.variable_info[name][1]:
try:
self.ctrl_be.exec_sql("SET GLOBAL %s=%s" % (name, int(value)))
except ValueError:
self.ctrl_be.exec_sql("SET GLOBAL %s='%s'" % (name, value.replace("'", "''")))
value = self.ctrl_be.exec_query("%s LIKE '%s'" % (self.command, name))
if value.firstRow():
node.set_string(column, value.stringByIndex(2))
def value_selection_changed(self):
self.copy_selected_to_clipboard_button.set_enabled(len(self.values.get_selection()) > 0)
def refresh_all(self):
sel_row_node = 0
sel = self.tree.get_selection()
if sel:
sel_row_node = self.tree.row_for_node(sel[0])
self.refresh_groups()
self.tree.set_node_selected(self.tree.node_at_row(sel_row_node), True)
self.refresh()
def refresh(self):
if not self.ctrl_be.is_sql_connected():
return
rows = self.tree.get_selection()
if not rows:
self.values.clear()
return
filter = []
search = None
for row in rows:
if self.tree.row_for_node(row) == 0:
filter = None
search = None
break
elif self.tree.row_for_node(row) == 1:
filter = None
search = self.searchEntry.get_string_value().replace("-", "_")
else:
tag = row.get_tag()
if tag and filter is not None:
filter += self.variables_in_group.get(tag.encode('utf-8'), [])
if filter:
filter = set(filter)
result = self.ctrl_be.exec_query(self.command)
self.values.freeze_refresh()
self.values.clear()
if result is not None:
while result.nextRow():
name = result.stringByName("Variable_name")
if filter is not None and name.replace("-", "_") not in filter:
continue
if search is not None and search.lower() not in name.lower():
continue
value = result.stringByName("Value")
r = self.values.add_node()
r.set_string(0, name)
r.set_string(1, value)
if name.replace("-", "_") not in self.variable_info:
r.set_string(2, "")
else:
editable = self.variable_info[name.replace("-", "_")][1] and "[rw] " or ""
r.set_string(2, editable + self.variable_info[name.replace("-", "_")][0])
if self.values.count() == 0:
if len(rows) == 1 and row.get_string(0) == "Custom":
r = self.values.add_node()
r.set_string(2, "Right click on a variable to add them to this category.")
self.values.thaw_refresh()
def filterOutput(self):
self.tree.select_node(self.tree.node_at_row(1))
self.refresh()
def copy_status_to_clipboard(self):
if not self.ctrl_be.is_sql_connected():
mforms.Utilities.show_error('Connection error',
'Cannot query the server for variables',
'OK', '', '')
return
global_status = []
result = self.ctrl_be.exec_query('SHOW GLOBAL STATUS')
if result:
while result.nextRow():
global_status.append( (result.stringByName('Variable_name'), result.stringByName('Value')) )
global_variables = []
result = self.ctrl_be.exec_query('SHOW GLOBAL VARIABLES')
if result:
while result.nextRow():
global_variables.append( (result.stringByName('Variable_name'), result.stringByName('Value')) )
max_length = max( len(name) for name, val in global_status + global_variables ) + 5
status = 'GLOBAL STATUS:\n'
status += '\n'.join( [var_name.ljust(max_length, '.') + ' ' + var_value for var_name, var_value in global_status] )
status += '\n\nGLOBAL VARIABLES:\n'
status += '\n'.join( [var_name.ljust(max_length, '.') + ' ' + var_value for var_name, var_value in global_variables] )
mforms.Utilities.set_clipboard_text(status)
def copy_selected_to_clipboard(self):
selection = []
selected_vars = self.values.get_selection()
if not selected_vars:
return
for node in selected_vars:
selection.append((node.get_string(0), node.get_string(1)))
max_length = max( len(name) for name, val in selection ) + 5
status = '\n'.join( [var_name.ljust(max_length, '.') + ' ' + var_value for var_name, var_value in selection] )
mforms.Utilities.set_clipboard_text(status)
def delete_category(self):
node = self.tree.get_selected_node()
if node:
name = node.get_string(0)
if name in self.user_groups.content:
self.user_groups.delete([name])
self.user_groups.save()
node.remove_from_parent()
def cat_menu_will_show(self, item):
node = self.tree.get_selected_node()
self.cat_menu.find_item("delete").set_enabled(True if node and node.get_string(0) in self.user_groups.content and node.get_tag().startswith("Custom: ") else False)
def menu_will_show(self, item):
self.menu.remove_all()
selected_vars = self.values.get_selection()
if not selected_vars:
return
if len(selected_vars) == 1 and selected_vars[0].get_string(2).startswith('Right click on'):
return
if item is None:
self.menu.add_item_with_title("Add to Custom Category...", self.var_to_custom_group, "var_to_custom_group")
sel_group = self.tree.get_selection()
for node in sel_group:
group = node.get_string(0).encode('utf-8')
tag = node.get_tag().encode('utf-8')
if tag.startswith("Custom: "):
self.menu.add_item_with_title("Remove from %s" % group, lambda self=self, x = group: self.remove_from_group(x), "remove_from_group_%s" % group)
if len(self.user_groups.content):
self.menu.add_separator()
for group in self.user_groups.content:
self.menu.add_item_with_title("Add to %s" % group , lambda self=self, x = group: self.var_to_group(x), "var_to_group_%s" % group)
def remove_from_group(self, grp):
selected_vars = self.values.get_selection()
if not selected_vars:
return
selection = []
for node in selected_vars:
selection.append(node.get_string(0))
self.user_groups.remove_from_group(grp, selection)
self.user_groups.save()
self.refresh_all()
def var_to_group(self, grp):
selection = []
selected_vars = self.values.get_selection()
if not selected_vars:
return
for node in selected_vars:
selection.append(node.get_string(0))
self.user_groups.assign({grp:selection})
self.user_groups.save()
self.refresh_all()
def var_to_custom_group(self):
selection = []
selected_vars = self.values.get_selection()
if not selected_vars:
return
for node in selected_vars:
selection.append(node.get_string(0))
grp_select = VariablesGroupSelector(self.user_groups, selection)
grp_select.run()
#VariablesGroupSelector is modal
self.refresh_all()
def _decode_list(data):
rv = []
for item in data:
if isinstance(item, unicode):
item = item.encode('utf-8')
elif isinstance(item, list):
item = _decode_list(item)
elif isinstance(item, dict):
item = _decode_dict(item)
rv.append(item)
return rv
def _decode_dict(data):
rv = {}
for key, value in data.iteritems():
if isinstance(key, unicode):
key = key.encode('utf-8')
if isinstance(value, unicode):
value = value.encode('utf-8')
elif isinstance(value, list):
value = _decode_list(value)
elif isinstance(value, dict):
value = _decode_dict(value)
rv[key] = value
return rv
class VariablesGroupContainer:
def __init__(self, type):
self.content = {}
self.type = type
self.group_file = "%s/custom_%s_group.json" % (mforms.App.get().get_user_data_folder(), self.type)
def load(self):
self.content = {}
try:
with open(self.group_file, 'r') as fp:
import json
self.content = json.load(fp, object_hook=_decode_dict)
except:
#Group file doesn't exists, probably user never created any,
#create then the default custom group and save it
self.add("Custom")
self.save()
def save(self):
try:
with open(self.group_file, 'wb') as fp:
import json
json.dump(self.content, fp)
except:
pass
def add(self, name):
name = name.strip().encode('utf-8')
if name in self.content:
raise Exception("Already exists", "Category already exists, please specify a different category name")
self.content[name] = []
def delete(self, group_names):
for name in group_names:
self.content.pop(name.encode('utf-8'), None)
def remove_from_group(self, group_name, vals):
for val in vals:
if val in self.content[group_name]:
self.content[group_name].remove(val)
def assign(self, assign_info):
for grp in assign_info:
self.content[grp] = list(set(self.content[grp] + assign_info[grp]))
class VariablesGroupSelector(mforms.Form):
def __init__(self, group_container, vars):
mforms.Form.__init__(self, None)
self.pending_changes = False
self.sel_vars = vars
self.group_container = group_container
self.suspend_layout()
self.set_title("Custom Variable Categories")
content = mforms.newBox(False)
self.set_content(content)
content.set_padding(20)
content.set_spacing(12)
l = mforms.newLabel("Select or create new category for custom variable categories.")
content.add(l, False, False)
self.groups = newTreeNodeView(mforms.TreeFlatList)
self.groups.set_selection_mode(mforms.TreeSelectMultiple)
self.groups.add_column(mforms.StringColumnType, "Category name", 100, False)
self.groups.end_columns()
self.groups.set_size(200, 200)
self.menu = mforms.newContextMenu()
self.menu.add_item_with_title("Delete Category", self.group_delete, "group_delete")
self.groups.set_context_menu(self.menu)
content.add(self.groups, True, True)
entry_box = mforms.newBox(True)
entry_box.set_spacing(5)
l = mforms.newLabel("Category name:")
entry_box.add(l, False, False)
self.name = mforms.newTextEntry()
self.name.add_action_callback(self.group_name_action)
entry_box.add(self.name, True, True)
self.add_btn = newButton()
self.add_btn.set_text("Add")
self.add_btn.add_clicked_callback(self.group_add)
entry_box.add_end(self.add_btn, False, False)
content.add(entry_box, False, True)
self.cancel = newButton()
self.cancel.set_text("Cancel")
self.cancel.add_clicked_callback(self.cancel_click)
self.ok = newButton()
self.ok.set_text("OK")
self.ok.add_clicked_callback(self.ok_click)
self.delete = newButton()
self.delete.set_text("Delete")
self.delete.add_clicked_callback(self.group_delete)
bbox = mforms.newBox(True)
bbox.set_spacing(12)
okcancel_box = mforms.newBox(True)
okcancel_box.set_spacing(12)
bbox.add_end(okcancel_box, False, True)
bbox.add(self.delete, False, True)
mforms.Utilities.add_end_ok_cancel_buttons(okcancel_box, self.ok, self.cancel)
content.add_end(bbox, False, True)
self.set_size(550, -1)
self.center()
self.load_groups()
self.resume_layout()
def load_groups(self,soft_load = False, grp_name = None):
self.groups.clear()
if not soft_load:
self.group_container.load()
matched_node = None
for item in self.group_container.content:
node = self.groups.add_node()
node.set_string(0, item)
if grp_name != None and item == grp_name.encode('utf-8'):
matched_node = node
if self.groups.count() > 0:
self.groups.select_node(self.groups.node_at_row(0))
return matched_node
def group_name_action(self, action):
if action == mforms.EntryActivate:
self.group_add()
def group_add(self):
val = self.name.get_string_value().strip()
if len(val) == 0:
mforms.Utilities.show_error("Missing value", "You must supply a category name.", "OK", "", "")
return
try:
self.group_container.add(val)
self.pending_changes = True
except Exception as e:
mforms.Utilities.show_error(e.args[0], e.args[1], "OK", "", "")
return
self.groups.set_node_selected(self.load_groups(True, val), True)
self.name.set_value("")
def group_delete(self):
selected_vars = self.groups.get_selection()
if not selected_vars:
return
selection = []
for node in selected_vars:
selection.append(node.get_string(0))
groups_for_delete = []
for node in selected_vars:
groups_for_delete.append(node.get_string(0))
self.group_container.delete(groups_for_delete)
self.pending_changes = True
self.load_groups(soft_load = True)
def cancel_click(self):
self.group_container.load()
self.close()
def ok_click(self):
selected_vars = self.groups.get_selection()
if selected_vars:
group_assign = {}
for node in selected_vars:
group_assign[node.get_string(0).encode('utf-8')] = self.sel_vars
self.group_container.assign(group_assign)
self.group_container.save()
self.close()
def run(self):
self.run_modal(None, self.cancel)
class WbAdminVariables(mforms.Box):
ui_created = False
@classmethod
def wba_register(cls, admin_context):
admin_context.register_page(cls, "wba_management", "Status and System Variables")
@classmethod
def identifier(cls):
return "admin_status_vars"
def __init__(self, ctrl_be, server_profile, main_view):
mforms.Box.__init__(self, False)
self.set_managed()
self.set_release_on_add()
self.ctrl_be = ctrl_be
self.main_view = main_view
self.server_profile = server_profile
def create_ui(self):
self.set_padding(12)
self.set_spacing(8)
self.heading = make_panel_header("title_variables.png", self.server_profile.name, "Server Variables")
self.add(self.heading, False, True)
self.warning = not_running_warning_label()
self.add(self.warning, False, True)
self.tab = newTabView(False)
self.add(self.tab, True, True)
self.status = VariablesViewer(self.ctrl_be, wb_admin_variable_list.status_variable_list, "SHOW GLOBAL STATUS", 'status')
self.status.set_padding(6)
self.tab.add_page(self.status, "Status Variables")
self.server = VariablesViewer(self.ctrl_be, wb_admin_variable_list.system_variable_list, "SHOW GLOBAL VARIABLES", 'system')
self.server.set_padding(6)
self.tab.add_page(self.server, "System Variables")
def page_activated(self):
if not self.ui_created:
self.create_ui()
self.ui_created = True
if self.ctrl_be.is_sql_connected():
self.warning.show(False)
self.tab.show(True)
else:
self.warning.show(True)
self.tab.show(False)
self.status.refresh()
self.server.refresh()
|