The Battle for Wesnoth  1.19.5+dev
log_settings.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2017 - 2024
3  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details.
13 */
14 
15 #define GETTEXT_DOMAIN "wesnoth-lib"
16 
18 
19 #include "gettext.hpp"
20 #include "gui/widgets/grid.hpp"
21 #include "gui/widgets/listbox.hpp"
22 #include "gui/widgets/text_box.hpp"
24 #include "gui/widgets/window.hpp"
25 
26 #include "log.hpp"
27 
28 namespace gui2::dialogs
29 {
30 
31 REGISTER_DIALOG(log_settings)
32 
34  : modal_dialog(window_id())
35  , last_words_()
36 {
37  //list of names must match those in logging.cfg
38  widget_id_.push_back("none");
39  widget_id_.push_back("err");
40  widget_id_.push_back("warn");
41  widget_id_.push_back("info");
42  widget_id_.push_back("debug");
43 
44 
45  //empty string is the filter (in other words, this grabs the whole list of domains)
46  std::string temp_string = lg::list_log_domains("");
47  //std::cout<<temp_string; //use to print the full log domain list
48  std::string one_domain;
49 
50  std::istringstream iss(temp_string, std::istringstream::in);
51 
52  while(iss >> one_domain){
53  domain_list_.push_back(one_domain);
54  }
55 }
56 
58 {
59  listbox& logger_box = find_widget<listbox>("logger_listbox");
60 
61  for(unsigned int i = 0; i < domain_list_.size(); i++){
62  std::string this_domain = domain_list_[i];
64  widget_item item;
65 
66  item["label"] = this_domain;
67  data["label"] = item;
68 
69  logger_box.add_row(data);
70  group<std::string>& group = groups_[this_domain];
71 
72  grid* this_grid = logger_box.get_row_grid(i);
73  for(std::string this_id : widget_id_){
74  widget* this_widget = this_grid->find(this_id, false);
75  toggle_button* button = dynamic_cast<toggle_button*>(this_widget);
76  if(button != nullptr) {
77  group.add_member(button, this_id);
78  }
79  }
80  lg::severity current_sev;
82  if (lg::get_log_domain_severity(this_domain, current_sev)) {
83  if (current_sev <= max_sev) {
84  group.set_member_states(widget_id_[static_cast<int>(current_sev) + 1]);
85  }
86  }
87  }
88 
89  text_box* filter = find_widget<text_box>("filter_box", false, true);
90  filter->set_text_changed_callback(std::bind(&log_settings::filter_text_changed, this, std::placeholders::_2));
91 
92  keyboard_capture(filter);
93  add_to_keyboard_chain(&logger_box);
94 }
95 
96 void log_settings::filter_text_changed(const std::string& text)
97 {
98  listbox& list = find_widget<listbox>("logger_listbox");
99 
100  const std::vector<std::string> words = utils::split(text, ' ');
101 
102  if(words == last_words_) {
103  return;
104  }
105 
106  last_words_ = words;
107 
108  boost::dynamic_bitset<> show_items;
109  show_items.resize(list.get_item_count(), true);
110 
111  if(!text.empty()) {
112  for(unsigned int i = 0; i < list.get_item_count(); i++) {
113  assert(i < domain_list_.size());
114 
115  bool found = false;
116 
117  for(const auto& word : words)
118  {
119  found = translation::ci_search(domain_list_[i], word);
120  if(!found) {
121  break;
122  }
123  }
124 
125  show_items[i] = found;
126  }
127  }
128 
129  list.set_row_shown(show_items);
130 }
131 
133 {
134  for(std::string this_domain : domain_list_){
135  set_logger(this_domain);
136  }
137 }
138 
139 void log_settings::set_logger(const std::string log_domain)
140 {
141  std::string active_value = groups_[log_domain].get_active_member_value();
142 
143  if(active_value == widget_id_[2]){ //default value, level1: warning
144  lg::set_log_domain_severity(log_domain, lg::warn());
145  } else if(active_value == widget_id_[4]){ //level3: debug
146  lg::set_log_domain_severity(log_domain, lg::debug());
147  } else if(active_value == widget_id_[3]){ //level2: info
148  lg::set_log_domain_severity(log_domain, lg::info());
149  } else if(active_value == widget_id_[1]){ //level0: error
150  lg::set_log_domain_severity(log_domain, lg::err());
151  } else if(active_value == widget_id_[0]){ //level-1: disable
153  }
154 }
155 
156 } // namespace dialogs
Simple push button.
Definition: button.hpp:36
void set_logger(const std::basic_string< char > log_domain)
The display function.
std::vector< std::string > domain_list_
void filter_text_changed(const std::string &text)
std::vector< std::string > last_words_
virtual void post_show() override
Actions to be taken after the window has been shown.
std::map< std::string, group< std::string > > groups_
std::vector< std::string > widget_id_
virtual void pre_show() override
Actions to be taken before showing the window.
Abstract base class for all modal dialogs.
Base container class.
Definition: grid.hpp:32
widget * find(const std::string &id, const bool must_be_active) override
See widget::find.
Definition: grid.cpp:645
void add_member(selectable_item *w, const T &value)
Adds a widget/value pair to the group map.
Definition: group.hpp:42
void set_member_states(const T &value)
Sets the toggle values for all widgets besides the one associated with the specified value to false.
Definition: group.hpp:111
The listbox class.
Definition: listbox.hpp:43
void set_row_shown(const unsigned row, const bool shown)
Makes a row visible or invisible.
Definition: listbox.cpp:135
grid & add_row(const widget_item &item, const int index=-1)
When an item in the list is selected by the user we need to update the state.
Definition: listbox.cpp:58
const grid * get_row_grid(const unsigned row) const
Returns the grid of the wanted row.
Definition: listbox.cpp:229
unsigned get_item_count() const
Returns the number of items in the listbox.
Definition: listbox.cpp:123
void set_text_changed_callback(std::function< void(text_box_base *textbox, const std::string text)> cb)
Set the text_changed callback.
A widget that allows the user to input text in single line.
Definition: text_box.hpp:125
Base class for all widgets.
Definition: widget.hpp:55
void keyboard_capture(widget *widget)
Definition: window.cpp:1207
void add_to_keyboard_chain(widget *widget)
Adds the widget to the keyboard chain.
Definition: window.cpp:1213
std::size_t i
Definition: function.cpp:1028
unsigned in
If equal to search_counter, the node is off the list.
This file contains the window object, this object is a top level container which has the event manage...
Standard logging facilities (interface).
REGISTER_DIALOG(editor_edit_unit)
std::map< std::string, widget_item > widget_data
Definition: widget.hpp:36
std::map< std::string, t_string > widget_item
Definition: widget.hpp:33
bool get_log_domain_severity(const std::string &name, severity &severity)
Definition: log.cpp:371
logger & err()
Definition: log.cpp:307
severity
Definition: log.hpp:83
std::string list_log_domains(const std::string &filter)
Definition: log.cpp:380
logger & debug()
Definition: log.cpp:325
logger & warn()
Definition: log.cpp:313
logger & info()
Definition: log.cpp:319
bool set_log_domain_severity(const std::string &name, severity severity)
Definition: log.cpp:347
bool ci_search(const std::string &s1, const std::string &s2)
Definition: gettext.cpp:565
std::vector< std::string > split(const config_attribute_value &val)
std::string_view data
Definition: picture.cpp:178