guiconfig.py 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. #!/usr/bin/env python3
  2. # Copyright (c) 2019, Nordic Semiconductor ASA and Ulf Magnusson
  3. # SPDX-License-Identifier: ISC
  4. # _load_images() builds names dynamically to avoid having to give them twice
  5. # (once for the variable and once for the filename). This forces consistency
  6. # too.
  7. #
  8. # pylint: disable=undefined-variable
  9. """
  10. Overview
  11. ========
  12. A Tkinter-based menuconfig implementation, based around a treeview control and
  13. a help display. The interface should feel familiar to people used to qconf
  14. ('make xconfig'). Compatible with both Python 2 and Python 3.
  15. The display can be toggled between showing the full tree and showing just a
  16. single menu (like menuconfig.py). Only single-menu mode distinguishes between
  17. symbols defined with 'config' and symbols defined with 'menuconfig'.
  18. A show-all mode is available that shows invisible items in red.
  19. Supports both mouse and keyboard controls. The following keyboard shortcuts are
  20. available:
  21. Ctrl-S : Save configuration
  22. Ctrl-O : Open configuration
  23. Ctrl-A : Toggle show-all mode
  24. Ctrl-N : Toggle show-name mode
  25. Ctrl-M : Toggle single-menu mode
  26. Ctrl-F, /: Open jump-to dialog
  27. ESC : Close
  28. Running
  29. =======
  30. guiconfig.py can be run either as a standalone executable or by calling the
  31. menuconfig() function with an existing Kconfig instance. The second option is a
  32. bit inflexible in that it will still load and save .config, etc.
  33. When run in standalone mode, the top-level Kconfig file to load can be passed
  34. as a command-line argument. With no argument, it defaults to "Kconfig".
  35. The KCONFIG_CONFIG environment variable specifies the .config file to load (if
  36. it exists) and save. If KCONFIG_CONFIG is unset, ".config" is used.
  37. When overwriting a configuration file, the old version is saved to
  38. <filename>.old (e.g. .config.old).
  39. $srctree is supported through Kconfiglib.
  40. """
  41. # Note: There's some code duplication with menuconfig.py below, especially for
  42. # the help text. Maybe some of it could be moved into kconfiglib.py or a shared
  43. # helper script, but OTOH it's pretty nice to have things standalone and
  44. # customizable.
  45. import errno
  46. import os
  47. import re
  48. import sys
  49. _PY2 = sys.version_info[0] < 3
  50. if _PY2:
  51. # Python 2
  52. from Tkinter import *
  53. import ttk
  54. import tkFont as font
  55. import tkFileDialog as filedialog
  56. import tkMessageBox as messagebox
  57. else:
  58. # Python 3
  59. from tkinter import *
  60. import tkinter.ttk as ttk
  61. import tkinter.font as font
  62. from tkinter import filedialog, messagebox
  63. from kconfiglib import Symbol, Choice, MENU, COMMENT, MenuNode, \
  64. BOOL, TRISTATE, STRING, INT, HEX, \
  65. AND, OR, \
  66. expr_str, expr_value, split_expr, \
  67. standard_sc_expr_str, \
  68. TRI_TO_STR, TYPE_TO_STR, \
  69. standard_kconfig, standard_config_filename
  70. # If True, use GIF image data embedded in this file instead of separate GIF
  71. # files. See _load_images().
  72. _USE_EMBEDDED_IMAGES = True
  73. # Help text for the jump-to dialog
  74. _JUMP_TO_HELP = """\
  75. Type one or more strings/regexes and press Enter to list items that match all
  76. of them. Python's regex flavor is used (see the 're' module). Double-clicking
  77. an item will jump to it. Item values can be toggled directly within the dialog.\
  78. """
  79. def _main():
  80. menuconfig(standard_kconfig(__doc__))
  81. # Global variables used below:
  82. #
  83. # _root:
  84. # The Toplevel instance for the main window
  85. #
  86. # _tree:
  87. # The Treeview in the main window
  88. #
  89. # _jump_to_tree:
  90. # The Treeview in the jump-to dialog. None if the jump-to dialog isn't
  91. # open. Doubles as a flag.
  92. #
  93. # _jump_to_matches:
  94. # List of Nodes shown in the jump-to dialog
  95. #
  96. # _menupath:
  97. # The Label that shows the menu path of the selected item
  98. #
  99. # _backbutton:
  100. # The button shown in single-menu mode for jumping to the parent menu
  101. #
  102. # _status_label:
  103. # Label with status text shown at the bottom of the main window
  104. # ("Modified", "Saved to ...", etc.)
  105. #
  106. # _id_to_node:
  107. # We can't use Node objects directly as Treeview item IDs, so we use their
  108. # id()s instead. This dictionary maps Node id()s back to Nodes. (The keys
  109. # are actually str(id(node)), just to simplify lookups.)
  110. #
  111. # _cur_menu:
  112. # The current menu. Ignored outside single-menu mode.
  113. #
  114. # _show_all_var/_show_name_var/_single_menu_var:
  115. # Tkinter Variable instances bound to the corresponding checkboxes
  116. #
  117. # _show_all/_single_menu:
  118. # Plain Python bools that track _show_all_var and _single_menu_var, to
  119. # speed up and simplify things a bit
  120. #
  121. # _conf_filename:
  122. # File to save the configuration to
  123. #
  124. # _minconf_filename:
  125. # File to save minimal configurations to
  126. #
  127. # _conf_changed:
  128. # True if the configuration has been changed. If False, we don't bother
  129. # showing the save-and-quit dialog.
  130. #
  131. # We reset this to False whenever the configuration is saved.
  132. #
  133. # _*_img:
  134. # PhotoImage instances for images
  135. def menuconfig(kconf):
  136. """
  137. Launches the configuration interface, returning after the user exits.
  138. kconf:
  139. Kconfig instance to be configured
  140. """
  141. global _kconf
  142. global _conf_filename
  143. global _minconf_filename
  144. global _jump_to_tree
  145. global _cur_menu
  146. _kconf = kconf
  147. _jump_to_tree = None
  148. _create_id_to_node()
  149. _create_ui()
  150. # Filename to save configuration to
  151. _conf_filename = standard_config_filename()
  152. # Load existing configuration and check if it's outdated
  153. _set_conf_changed(_load_config())
  154. # Filename to save minimal configuration to
  155. _minconf_filename = "defconfig"
  156. # Current menu in single-menu mode
  157. _cur_menu = _kconf.top_node
  158. # Any visible items in the top menu?
  159. if not _shown_menu_nodes(kconf.top_node):
  160. # Nothing visible. Start in show-all mode and try again.
  161. _show_all_var.set(True)
  162. if not _shown_menu_nodes(kconf.top_node):
  163. # Give up and show an error. It's nice to be able to assume that
  164. # the tree is non-empty in the rest of the code.
  165. _root.wait_visibility()
  166. messagebox.showerror(
  167. "Error",
  168. "Empty configuration -- nothing to configure.\n\n"
  169. "Check that environment variables are set properly.")
  170. _root.destroy()
  171. return
  172. # Build the initial tree
  173. _update_tree()
  174. # Select the first item and focus the Treeview, so that keyboard controls
  175. # work immediately
  176. _select(_tree, _tree.get_children()[0])
  177. _tree.focus_set()
  178. # Make geometry information available for centering the window. This
  179. # indirectly creates the window, so hide it so that it's never shown at the
  180. # old location.
  181. _root.withdraw()
  182. _root.update_idletasks()
  183. # Center the window
  184. _root.geometry("+{}+{}".format(
  185. (_root.winfo_screenwidth() - _root.winfo_reqwidth())//2,
  186. (_root.winfo_screenheight() - _root.winfo_reqheight())//2))
  187. # Show it
  188. _root.deiconify()
  189. # Prevent the window from being automatically resized. Otherwise, it
  190. # changes size when scrollbars appear/disappear before the user has
  191. # manually resized it.
  192. _root.geometry(_root.geometry())
  193. _root.mainloop()
  194. def _load_config():
  195. # Loads any existing .config file. See the Kconfig.load_config() docstring.
  196. #
  197. # Returns True if .config is missing or outdated. We always prompt for
  198. # saving the configuration in that case.
  199. print(_kconf.load_config())
  200. if not os.path.exists(_conf_filename):
  201. # No .config
  202. return True
  203. return _needs_save()
  204. def _needs_save():
  205. # Returns True if a just-loaded .config file is outdated (would get
  206. # modified when saving)
  207. if _kconf.missing_syms:
  208. # Assignments to undefined symbols in the .config
  209. return True
  210. for sym in _kconf.unique_defined_syms:
  211. if sym.user_value is None:
  212. if sym.config_string:
  213. # Unwritten symbol
  214. return True
  215. elif sym.orig_type in (BOOL, TRISTATE):
  216. if sym.tri_value != sym.user_value:
  217. # Written bool/tristate symbol, new value
  218. return True
  219. elif sym.str_value != sym.user_value:
  220. # Written string/int/hex symbol, new value
  221. return True
  222. # No need to prompt for save
  223. return False
  224. def _create_id_to_node():
  225. global _id_to_node
  226. _id_to_node = {str(id(node)): node for node in _kconf.node_iter()}
  227. def _create_ui():
  228. # Creates the main window UI
  229. global _root
  230. global _tree
  231. # Create the root window. This initializes Tkinter and makes e.g.
  232. # PhotoImage available, so do it early.
  233. _root = Tk()
  234. _load_images()
  235. _init_misc_ui()
  236. _fix_treeview_issues()
  237. _create_top_widgets()
  238. # Create the pane with the Kconfig tree and description text
  239. panedwindow, _tree = _create_kconfig_tree_and_desc(_root)
  240. panedwindow.grid(column=0, row=1, sticky="nsew")
  241. _create_status_bar()
  242. _root.columnconfigure(0, weight=1)
  243. # Only the pane with the Kconfig tree and description grows vertically
  244. _root.rowconfigure(1, weight=1)
  245. # Start with show-name disabled
  246. _do_showname()
  247. _tree.bind("<Left>", _tree_left_key)
  248. _tree.bind("<Right>", _tree_right_key)
  249. # Note: Binding this for the jump-to tree as well would cause issues due to
  250. # the Tk bug mentioned in _tree_open()
  251. _tree.bind("<<TreeviewOpen>>", _tree_open)
  252. # add=True to avoid overriding the description text update
  253. _tree.bind("<<TreeviewSelect>>", _update_menu_path, add=True)
  254. _root.bind("<Control-s>", _save)
  255. _root.bind("<Control-o>", _open)
  256. _root.bind("<Control-a>", _toggle_showall)
  257. _root.bind("<Control-n>", _toggle_showname)
  258. _root.bind("<Control-m>", _toggle_tree_mode)
  259. _root.bind("<Control-f>", _jump_to_dialog)
  260. _root.bind("/", _jump_to_dialog)
  261. _root.bind("<Escape>", _on_quit)
  262. def _load_images():
  263. # Loads GIF images, creating the global _*_img PhotoImage variables.
  264. # Base64-encoded images embedded in this script are used if
  265. # _USE_EMBEDDED_IMAGES is True, and separate image files in the same
  266. # directory as the script otherwise.
  267. #
  268. # Using a global variable indirectly prevents the image from being
  269. # garbage-collected. Passing an image to a Tkinter function isn't enough to
  270. # keep it alive.
  271. def load_image(name, data):
  272. var_name = "_{}_img".format(name)
  273. if _USE_EMBEDDED_IMAGES:
  274. globals()[var_name] = PhotoImage(data=data, format="gif")
  275. else:
  276. globals()[var_name] = PhotoImage(
  277. file=os.path.join(os.path.dirname(__file__), name + ".gif"),
  278. format="gif")
  279. # Note: Base64 data can be put on the clipboard with
  280. # $ base64 -w0 foo.gif | xclip
  281. load_image("icon", "R0lGODlhMAAwAPEDAAAAAADQAO7u7v///yH5BAUKAAMALAAAAAAwADAAAAL/nI+gy+2Pokyv2jazuZxryQjiSJZmyXxHeLbumH6sEATvW8OLNtf5bfLZRLFITzgEipDJ4mYxYv6A0ubuqYhWk66tVTE4enHer7jcKvt0LLUw6P45lvEprT6c0+v7OBuqhYdHohcoqIbSAHc4ljhDwrh1UlgSydRCWWlp5wiYZvmSuSh4IzrqV6p4cwhkCsmY+nhK6uJ6t1mrOhuJqfu6+WYiCiwl7HtLjNSZZZis/MeM7NY3TaRKS40ooDeoiVqIultsrav92bi9c3a5KkkOsOJZpSS99m4k/0zPng4Gks9JSbB+8DIcoQfnjwpZCHv5W+ip4aQrKrB0uOikYhiMCBw1/uPoQUMBADs=")
  282. load_image("n_bool", "R0lGODdhEAAQAPAAAAgICP///ywAAAAAEAAQAAACIISPacHtvp5kcb5qG85hZ2+BkyiRF8BBaEqtrKkqslEAADs=")
  283. load_image("y_bool", "R0lGODdhEAAQAPEAAAgICADQAP///wAAACwAAAAAEAAQAAACMoSPacLtvlh4YrIYsst2cV19AvaVF9CUXBNJJoum7ymrsKuCnhiupIWjSSjAFuWhSCIKADs=")
  284. load_image("n_tri", "R0lGODlhEAAQAPD/AAEBAf///yH5BAUKAAIALAAAAAAQABAAAAInlI+pBrAKQnCPSUlXvFhznlkfeGwjKZhnJ65h6nrfi6h0st2QXikFADs=")
  285. load_image("m_tri", "R0lGODlhEAAQAPEDAAEBAeQMuv///wAAACH5BAUKAAMALAAAAAAQABAAAAI5nI+pBrAWAhPCjYhiAJQCnWmdoElHGVBoiK5M21ofXFpXRIrgiecqxkuNciZIhNOZFRNI24PhfEoLADs=")
  286. load_image("y_tri", "R0lGODlhEAAQAPEDAAICAgDQAP///wAAACH5BAUKAAMALAAAAAAQABAAAAI0nI+pBrAYBhDCRRUypfmergmgZ4xjMpmaw2zmxk7cCB+pWiVqp4MzDwn9FhGZ5WFjIZeGAgA7")
  287. load_image("m_my", "R0lGODlhEAAQAPEDAAAAAOQMuv///wAAACH5BAUKAAMALAAAAAAQABAAAAI5nIGpxiAPI2ghxFinq/ZygQhc94zgZopmOLYf67anGr+oZdp02emfV5n9MEHN5QhqICETxkABbQ4KADs=")
  288. load_image("y_my", "R0lGODlhEAAQAPH/AAAAAADQAAPRA////yH5BAUKAAQALAAAAAAQABAAAAM+SArcrhCMSSuIM9Q8rxxBWIXawIBkmWonupLd565Um9G1PIs59fKmzw8WnAlusBYR2SEIN6DmAmqBLBxYSAIAOw==")
  289. load_image("n_locked", "R0lGODlhEAAQAPABAAAAAP///yH5BAUKAAEALAAAAAAQABAAAAIgjB8AyKwN04pu0vMutpqqz4Hih4ydlnUpyl2r23pxUAAAOw==")
  290. load_image("m_locked", "R0lGODlhEAAQAPD/AAAAAOQMuiH5BAUKAAIALAAAAAAQABAAAAIylC8AyKwN04ohnGcqqlZmfXDWI26iInZoyiore05walolV39ftxsYHgL9QBBMBGFEFAAAOw==")
  291. load_image("y_locked", "R0lGODlhEAAQAPD/AAAAAADQACH5BAUKAAIALAAAAAAQABAAAAIylC8AyKzNgnlCtoDTwvZwrHydIYpQmR3KWq4uK74IOnp0HQPmnD3cOVlUIAgKsShkFAAAOw==")
  292. load_image("not_selected", "R0lGODlhEAAQAPD/AAAAAP///yH5BAUKAAIALAAAAAAQABAAAAIrlA2px6IBw2IpWglOvTYhzmUbGD3kNZ5QqrKn2YrqigCxZoMelU6No9gdCgA7")
  293. load_image("selected", "R0lGODlhEAAQAPD/AAAAAP///yH5BAUKAAIALAAAAAAQABAAAAIzlA2px6IBw2IpWglOvTah/kTZhimASJomiqonlLov1qptHTsgKSEzh9H8QI0QzNPwmRoFADs=")
  294. load_image("edit", "R0lGODlhEAAQAPIFAAAAAKOLAMuuEPvXCvrxvgAAAAAAAAAAACH5BAUKAAUALAAAAAAQABAAAANCWLqw/gqMBp8cszJxcwVC2FEOEIAi5kVBi3IqWZhuCGMyfdpj2e4pnK+WAshmvxeAcETWlsxPkkBtsqBMa8TIBSQAADs=")
  295. def _fix_treeview_issues():
  296. # Fixes some Treeview issues
  297. global _treeview_rowheight
  298. style = ttk.Style()
  299. # The treeview rowheight isn't adjusted automatically on high-DPI displays,
  300. # so do it ourselves. The font will probably always be TkDefaultFont, but
  301. # play it safe and look it up.
  302. _treeview_rowheight = font.Font(font=style.lookup("Treeview", "font")) \
  303. .metrics("linespace") + 2
  304. style.configure("Treeview", rowheight=_treeview_rowheight)
  305. # Work around regression in https://core.tcl.tk/tk/tktview?name=509cafafae,
  306. # which breaks tag background colors
  307. for option in "foreground", "background":
  308. # Filter out any styles starting with ("!disabled", "!selected", ...).
  309. # style.map() returns an empty list for missing options, so this should
  310. # be future-safe.
  311. style.map(
  312. "Treeview",
  313. **{option: [elm for elm in style.map("Treeview", query_opt=option)
  314. if elm[:2] != ("!disabled", "!selected")]})
  315. def _init_misc_ui():
  316. # Does misc. UI initialization, like setting the title, icon, and theme
  317. _root.title(_kconf.mainmenu_text)
  318. # iconphoto() isn't available in Python 2's Tkinter
  319. _root.tk.call("wm", "iconphoto", _root._w, "-default", _icon_img)
  320. # Reducing the width of the window to 1 pixel makes it move around, at
  321. # least on GNOME. Prevent weird stuff like that.
  322. _root.minsize(128, 128)
  323. _root.protocol("WM_DELETE_WINDOW", _on_quit)
  324. # Use the 'clam' theme on *nix if it's available. It looks nicer than the
  325. # 'default' theme.
  326. if _root.tk.call("tk", "windowingsystem") == "x11":
  327. style = ttk.Style()
  328. if "clam" in style.theme_names():
  329. style.theme_use("clam")
  330. def _create_top_widgets():
  331. # Creates the controls above the Kconfig tree in the main window
  332. global _show_all_var
  333. global _show_name_var
  334. global _single_menu_var
  335. global _menupath
  336. global _backbutton
  337. topframe = ttk.Frame(_root)
  338. topframe.grid(column=0, row=0, sticky="ew")
  339. ttk.Button(topframe, text="Save", command=_save) \
  340. .grid(column=0, row=0, sticky="ew", padx=".05c", pady=".05c")
  341. ttk.Button(topframe, text="Save as...", command=_save_as) \
  342. .grid(column=1, row=0, sticky="ew")
  343. ttk.Button(topframe, text="Save minimal (advanced)...",
  344. command=_save_minimal) \
  345. .grid(column=2, row=0, sticky="ew", padx=".05c")
  346. ttk.Button(topframe, text="Open...", command=_open) \
  347. .grid(column=3, row=0)
  348. ttk.Button(topframe, text="Jump to...", command=_jump_to_dialog) \
  349. .grid(column=4, row=0, padx=".05c")
  350. _show_name_var = BooleanVar()
  351. ttk.Checkbutton(topframe, text="Show name", command=_do_showname,
  352. variable=_show_name_var) \
  353. .grid(column=0, row=1, sticky="nsew", padx=".05c", pady="0 .05c",
  354. ipady=".2c")
  355. _show_all_var = BooleanVar()
  356. ttk.Checkbutton(topframe, text="Show all", command=_do_showall,
  357. variable=_show_all_var) \
  358. .grid(column=1, row=1, sticky="nsew", pady="0 .05c")
  359. # Allow the show-all and single-menu status to be queried via plain global
  360. # Python variables, which is faster and simpler
  361. def show_all_updated(*_):
  362. global _show_all
  363. _show_all = _show_all_var.get()
  364. _trace_write(_show_all_var, show_all_updated)
  365. _show_all_var.set(False)
  366. _single_menu_var = BooleanVar()
  367. ttk.Checkbutton(topframe, text="Single-menu mode", command=_do_tree_mode,
  368. variable=_single_menu_var) \
  369. .grid(column=2, row=1, sticky="nsew", padx=".05c", pady="0 .05c")
  370. _backbutton = ttk.Button(topframe, text="<--", command=_leave_menu,
  371. state="disabled")
  372. _backbutton.grid(column=0, row=4, sticky="nsew", padx=".05c", pady="0 .05c")
  373. def tree_mode_updated(*_):
  374. global _single_menu
  375. _single_menu = _single_menu_var.get()
  376. if _single_menu:
  377. _backbutton.grid()
  378. else:
  379. _backbutton.grid_remove()
  380. _trace_write(_single_menu_var, tree_mode_updated)
  381. _single_menu_var.set(False)
  382. # Column to the right of the buttons that the menu path extends into, so
  383. # that it can grow wider than the buttons
  384. topframe.columnconfigure(5, weight=1)
  385. _menupath = ttk.Label(topframe)
  386. _menupath.grid(column=0, row=3, columnspan=6, sticky="w", padx="0.05c",
  387. pady="0 .05c")
  388. def _create_kconfig_tree_and_desc(parent):
  389. # Creates a Panedwindow with a Treeview that shows Kconfig nodes and a Text
  390. # that shows a description of the selected node. Returns a tuple with the
  391. # Panedwindow and the Treeview. This code is shared between the main window
  392. # and the jump-to dialog.
  393. panedwindow = ttk.Panedwindow(parent, orient=VERTICAL)
  394. tree_frame, tree = _create_kconfig_tree(panedwindow)
  395. desc_frame, desc = _create_kconfig_desc(panedwindow)
  396. panedwindow.add(tree_frame, weight=1)
  397. panedwindow.add(desc_frame)
  398. def tree_select(_):
  399. # The Text widget does not allow editing the text in its disabled
  400. # state. We need to temporarily enable it.
  401. desc["state"] = "normal"
  402. sel = tree.selection()
  403. if not sel:
  404. desc.delete("1.0", "end")
  405. desc["state"] = "disabled"
  406. return
  407. # Text.replace() is not available in Python 2's Tkinter
  408. desc.delete("1.0", "end")
  409. desc.insert("end", _info_str(_id_to_node[sel[0]]))
  410. desc["state"] = "disabled"
  411. tree.bind("<<TreeviewSelect>>", tree_select)
  412. tree.bind("<1>", _tree_click)
  413. tree.bind("<Double-1>", _tree_double_click)
  414. tree.bind("<Return>", _tree_enter)
  415. tree.bind("<KP_Enter>", _tree_enter)
  416. tree.bind("<space>", _tree_toggle)
  417. tree.bind("n", _tree_set_val(0))
  418. tree.bind("m", _tree_set_val(1))
  419. tree.bind("y", _tree_set_val(2))
  420. return panedwindow, tree
  421. def _create_kconfig_tree(parent):
  422. # Creates a Treeview for showing Kconfig nodes
  423. frame = ttk.Frame(parent)
  424. tree = ttk.Treeview(frame, selectmode="browse", height=20,
  425. columns=("name",))
  426. tree.heading("#0", text="Option", anchor="w")
  427. tree.heading("name", text="Name", anchor="w")
  428. tree.tag_configure("n-bool", image=_n_bool_img)
  429. tree.tag_configure("y-bool", image=_y_bool_img)
  430. tree.tag_configure("m-tri", image=_m_tri_img)
  431. tree.tag_configure("n-tri", image=_n_tri_img)
  432. tree.tag_configure("m-tri", image=_m_tri_img)
  433. tree.tag_configure("y-tri", image=_y_tri_img)
  434. tree.tag_configure("m-my", image=_m_my_img)
  435. tree.tag_configure("y-my", image=_y_my_img)
  436. tree.tag_configure("n-locked", image=_n_locked_img)
  437. tree.tag_configure("m-locked", image=_m_locked_img)
  438. tree.tag_configure("y-locked", image=_y_locked_img)
  439. tree.tag_configure("not-selected", image=_not_selected_img)
  440. tree.tag_configure("selected", image=_selected_img)
  441. tree.tag_configure("edit", image=_edit_img)
  442. tree.tag_configure("invisible", foreground="red")
  443. tree.grid(column=0, row=0, sticky="nsew")
  444. _add_vscrollbar(frame, tree)
  445. frame.columnconfigure(0, weight=1)
  446. frame.rowconfigure(0, weight=1)
  447. # Create items for all menu nodes. These can be detached/moved later.
  448. # Micro-optimize this a bit.
  449. insert = tree.insert
  450. id_ = id
  451. Symbol_ = Symbol
  452. for node in _kconf.node_iter():
  453. item = node.item
  454. insert("", "end", iid=id_(node),
  455. values=item.name if item.__class__ is Symbol_ else "")
  456. return frame, tree
  457. def _create_kconfig_desc(parent):
  458. # Creates a Text for showing the description of the selected Kconfig node
  459. frame = ttk.Frame(parent)
  460. desc = Text(frame, height=12, wrap="none", borderwidth=0,
  461. state="disabled")
  462. desc.grid(column=0, row=0, sticky="nsew")
  463. # Work around not being to Ctrl-C/V text from a disabled Text widget, with a
  464. # tip found in https://stackoverflow.com/questions/3842155/is-there-a-way-to-make-the-tkinter-text-widget-read-only
  465. desc.bind("<1>", lambda _: desc.focus_set())
  466. _add_vscrollbar(frame, desc)
  467. frame.columnconfigure(0, weight=1)
  468. frame.rowconfigure(0, weight=1)
  469. return frame, desc
  470. def _add_vscrollbar(parent, widget):
  471. # Adds a vertical scrollbar to 'widget' that's only shown as needed
  472. vscrollbar = ttk.Scrollbar(parent, orient="vertical",
  473. command=widget.yview)
  474. vscrollbar.grid(column=1, row=0, sticky="ns")
  475. def yscrollcommand(first, last):
  476. # Only show the scrollbar when needed. 'first' and 'last' are
  477. # strings.
  478. if float(first) <= 0.0 and float(last) >= 1.0:
  479. vscrollbar.grid_remove()
  480. else:
  481. vscrollbar.grid()
  482. vscrollbar.set(first, last)
  483. widget["yscrollcommand"] = yscrollcommand
  484. def _create_status_bar():
  485. # Creates the status bar at the bottom of the main window
  486. global _status_label
  487. _status_label = ttk.Label(_root, anchor="e", padding="0 0 0.4c 0")
  488. _status_label.grid(column=0, row=3, sticky="ew")
  489. def _set_status(s):
  490. # Sets the text in the status bar to 's'
  491. _status_label["text"] = s
  492. def _set_conf_changed(changed):
  493. # Updates the status re. whether there are unsaved changes
  494. global _conf_changed
  495. _conf_changed = changed
  496. if changed:
  497. _set_status("Modified")
  498. def _update_tree():
  499. # Updates the Kconfig tree in the main window by first detaching all nodes
  500. # and then updating and reattaching them. The tree structure might have
  501. # changed.
  502. # If a selected/focused item is detached and later reattached, it stays
  503. # selected/focused. That can give multiple selections even though
  504. # selectmode=browse. Save and later restore the selection and focus as a
  505. # workaround.
  506. old_selection = _tree.selection()
  507. old_focus = _tree.focus()
  508. # Detach all tree items before re-stringing them. This is relatively fast,
  509. # luckily.
  510. _tree.detach(*_id_to_node.keys())
  511. if _single_menu:
  512. _build_menu_tree()
  513. else:
  514. _build_full_tree(_kconf.top_node)
  515. _tree.selection_set(old_selection)
  516. _tree.focus(old_focus)
  517. def _build_full_tree(menu):
  518. # Updates the tree starting from menu.list, in full-tree mode. To speed
  519. # things up, only open menus are updated. The menu-at-a-time logic here is
  520. # to deal with invisible items that can show up outside show-all mode (see
  521. # _shown_full_nodes()).
  522. for node in _shown_full_nodes(menu):
  523. _add_to_tree(node, _kconf.top_node)
  524. # _shown_full_nodes() includes nodes from menus rooted at symbols, so
  525. # we only need to check "real" menus/choices here
  526. if node.list and not isinstance(node.item, Symbol):
  527. if _tree.item(id(node), "open"):
  528. _build_full_tree(node)
  529. else:
  530. # We're just probing here, so _shown_menu_nodes() will work
  531. # fine, and might be a bit faster
  532. shown = _shown_menu_nodes(node)
  533. if shown:
  534. # Dummy element to make the open/closed toggle appear
  535. _tree.move(id(shown[0]), id(shown[0].parent), "end")
  536. def _shown_full_nodes(menu):
  537. # Returns the list of menu nodes shown in 'menu' (a menu node for a menu)
  538. # for full-tree mode. A tricky detail is that invisible items need to be
  539. # shown if they have visible children.
  540. def rec(node):
  541. res = []
  542. while node:
  543. if _visible(node) or _show_all:
  544. res.append(node)
  545. if node.list and isinstance(node.item, Symbol):
  546. # Nodes from menu created from dependencies
  547. res += rec(node.list)
  548. elif node.list and isinstance(node.item, Symbol):
  549. # Show invisible symbols (defined with either 'config' and
  550. # 'menuconfig') if they have visible children. This can happen
  551. # for an m/y-valued symbol with an optional prompt
  552. # ('prompt "foo" is COND') that is currently disabled.
  553. shown_children = rec(node.list)
  554. if shown_children:
  555. res.append(node)
  556. res += shown_children
  557. node = node.next
  558. return res
  559. return rec(menu.list)
  560. def _build_menu_tree():
  561. # Updates the tree in single-menu mode. See _build_full_tree() as well.
  562. for node in _shown_menu_nodes(_cur_menu):
  563. _add_to_tree(node, _cur_menu)
  564. def _shown_menu_nodes(menu):
  565. # Used for single-menu mode. Similar to _shown_full_nodes(), but doesn't
  566. # include children of symbols defined with 'menuconfig'.
  567. def rec(node):
  568. res = []
  569. while node:
  570. if _visible(node) or _show_all:
  571. res.append(node)
  572. if node.list and not node.is_menuconfig:
  573. res += rec(node.list)
  574. elif node.list and isinstance(node.item, Symbol):
  575. shown_children = rec(node.list)
  576. if shown_children:
  577. # Invisible item with visible children
  578. res.append(node)
  579. if not node.is_menuconfig:
  580. res += shown_children
  581. node = node.next
  582. return res
  583. return rec(menu.list)
  584. def _visible(node):
  585. # Returns True if the node should appear in the menu (outside show-all
  586. # mode)
  587. return node.prompt and expr_value(node.prompt[1]) and not \
  588. (node.item == MENU and not expr_value(node.visibility))
  589. def _add_to_tree(node, top):
  590. # Adds 'node' to the tree, at the end of its menu. We rely on going through
  591. # the nodes linearly to get the correct order. 'top' holds the menu that
  592. # corresponds to the top-level menu, and can vary in single-menu mode.
  593. parent = node.parent
  594. _tree.move(id(node), "" if parent is top else id(parent), "end")
  595. _tree.item(
  596. id(node),
  597. text=_node_str(node),
  598. # The _show_all test avoids showing invisible items in red outside
  599. # show-all mode, which could look confusing/broken. Invisible symbols
  600. # are shown outside show-all mode if an invisible symbol has visible
  601. # children in an implicit menu.
  602. tags=_img_tag(node) if _visible(node) or not _show_all else
  603. _img_tag(node) + " invisible")
  604. def _node_str(node):
  605. # Returns the string shown to the right of the image (if any) for the node
  606. if node.prompt:
  607. if node.item == COMMENT:
  608. s = "*** {} ***".format(node.prompt[0])
  609. else:
  610. s = node.prompt[0]
  611. if isinstance(node.item, Symbol):
  612. sym = node.item
  613. # Print "(NEW)" next to symbols without a user value (from e.g. a
  614. # .config), but skip it for choice symbols in choices in y mode,
  615. # and for symbols of UNKNOWN type (which generate a warning though)
  616. if sym.user_value is None and sym.type and not \
  617. (sym.choice and sym.choice.tri_value == 2):
  618. s += " (NEW)"
  619. elif isinstance(node.item, Symbol):
  620. # Symbol without prompt (can show up in show-all)
  621. s = "<{}>".format(node.item.name)
  622. else:
  623. # Choice without prompt. Use standard_sc_expr_str() so that it shows up
  624. # as '<choice (name if any)>'.
  625. s = standard_sc_expr_str(node.item)
  626. if isinstance(node.item, Symbol):
  627. sym = node.item
  628. if sym.orig_type == STRING:
  629. s += ": " + sym.str_value
  630. elif sym.orig_type in (INT, HEX):
  631. s = "({}) {}".format(sym.str_value, s)
  632. elif isinstance(node.item, Choice) and node.item.tri_value == 2:
  633. # Print the prompt of the selected symbol after the choice for
  634. # choices in y mode
  635. sym = node.item.selection
  636. if sym:
  637. for sym_node in sym.nodes:
  638. # Use the prompt used at this choice location, in case the
  639. # choice symbol is defined in multiple locations
  640. if sym_node.parent is node and sym_node.prompt:
  641. s += " ({})".format(sym_node.prompt[0])
  642. break
  643. else:
  644. # If the symbol isn't defined at this choice location, then
  645. # just use whatever prompt we can find for it
  646. for sym_node in sym.nodes:
  647. if sym_node.prompt:
  648. s += " ({})".format(sym_node.prompt[0])
  649. break
  650. # In single-menu mode, print "--->" next to nodes that have menus that can
  651. # potentially be entered. Print "----" if the menu is empty. We don't allow
  652. # those to be entered.
  653. if _single_menu and node.is_menuconfig:
  654. s += " --->" if _shown_menu_nodes(node) else " ----"
  655. return s
  656. def _img_tag(node):
  657. # Returns the tag for the image that should be shown next to 'node', or the
  658. # empty string if it shouldn't have an image
  659. item = node.item
  660. if item in (MENU, COMMENT) or not item.orig_type:
  661. return ""
  662. if item.orig_type in (STRING, INT, HEX):
  663. return "edit"
  664. # BOOL or TRISTATE
  665. if _is_y_mode_choice_sym(item):
  666. # Choice symbol in y-mode choice
  667. return "selected" if item.choice.selection is item else "not-selected"
  668. if len(item.assignable) <= 1:
  669. # Pinned to a single value
  670. return "" if isinstance(item, Choice) else item.str_value + "-locked"
  671. if item.type == BOOL:
  672. return item.str_value + "-bool"
  673. # item.type == TRISTATE
  674. if item.assignable == (1, 2):
  675. return item.str_value + "-my"
  676. return item.str_value + "-tri"
  677. def _is_y_mode_choice_sym(item):
  678. # The choice mode is an upper bound on the visibility of choice symbols, so
  679. # we can check the choice symbols' own visibility to see if the choice is
  680. # in y mode
  681. return isinstance(item, Symbol) and item.choice and item.visibility == 2
  682. def _tree_click(event):
  683. # Click on the Kconfig Treeview
  684. tree = event.widget
  685. if tree.identify_element(event.x, event.y) == "image":
  686. item = tree.identify_row(event.y)
  687. # Select the item before possibly popping up a dialog for
  688. # string/int/hex items, so that its help is visible
  689. _select(tree, item)
  690. _change_node(_id_to_node[item], tree.winfo_toplevel())
  691. return "break"
  692. def _tree_double_click(event):
  693. # Double-click on the Kconfig treeview
  694. # Do an extra check to avoid weirdness when double-clicking in the tree
  695. # heading area
  696. if not _in_heading(event):
  697. return _tree_enter(event)
  698. def _in_heading(event):
  699. # Returns True if 'event' took place in the tree heading
  700. tree = event.widget
  701. return hasattr(tree, "identify_region") and \
  702. tree.identify_region(event.x, event.y) in ("heading", "separator")
  703. def _tree_enter(event):
  704. # Enter press or double-click within the Kconfig treeview. Prefer to
  705. # open/close/enter menus, but toggle the value if that's not possible.
  706. tree = event.widget
  707. sel = tree.focus()
  708. if sel:
  709. node = _id_to_node[sel]
  710. if tree.get_children(sel):
  711. _tree_toggle_open(sel)
  712. elif _single_menu_mode_menu(node, tree):
  713. _enter_menu_and_select_first(node)
  714. else:
  715. _change_node(node, tree.winfo_toplevel())
  716. return "break"
  717. def _tree_toggle(event):
  718. # Space press within the Kconfig treeview. Prefer to toggle the value, but
  719. # open/close/enter the menu if that's not possible.
  720. tree = event.widget
  721. sel = tree.focus()
  722. if sel:
  723. node = _id_to_node[sel]
  724. if _changeable(node):
  725. _change_node(node, tree.winfo_toplevel())
  726. elif _single_menu_mode_menu(node, tree):
  727. _enter_menu_and_select_first(node)
  728. elif tree.get_children(sel):
  729. _tree_toggle_open(sel)
  730. return "break"
  731. def _tree_left_key(_):
  732. # Left arrow key press within the Kconfig treeview
  733. if _single_menu:
  734. # Leave the current menu in single-menu mode
  735. _leave_menu()
  736. return "break"
  737. # Otherwise, default action
  738. def _tree_right_key(_):
  739. # Right arrow key press within the Kconfig treeview
  740. sel = _tree.focus()
  741. if sel:
  742. node = _id_to_node[sel]
  743. # If the node can be entered in single-menu mode, do it
  744. if _single_menu_mode_menu(node, _tree):
  745. _enter_menu_and_select_first(node)
  746. return "break"
  747. # Otherwise, default action
  748. def _single_menu_mode_menu(node, tree):
  749. # Returns True if single-menu mode is on and 'node' is an (interface)
  750. # menu that can be entered
  751. return _single_menu and tree is _tree and node.is_menuconfig and \
  752. _shown_menu_nodes(node)
  753. def _changeable(node):
  754. # Returns True if 'node' is a Symbol/Choice whose value can be changed
  755. sc = node.item
  756. if not isinstance(sc, (Symbol, Choice)):
  757. return False
  758. # This will hit for invisible symbols, which appear in show-all mode and
  759. # when an invisible symbol has visible children (which can happen e.g. for
  760. # symbols with optional prompts)
  761. if not (node.prompt and expr_value(node.prompt[1])):
  762. return False
  763. return sc.orig_type in (STRING, INT, HEX) or len(sc.assignable) > 1 \
  764. or _is_y_mode_choice_sym(sc)
  765. def _tree_toggle_open(item):
  766. # Opens/closes the Treeview item 'item'
  767. if _tree.item(item, "open"):
  768. _tree.item(item, open=False)
  769. else:
  770. node = _id_to_node[item]
  771. if not isinstance(node.item, Symbol):
  772. # Can only get here in full-tree mode
  773. _build_full_tree(node)
  774. _tree.item(item, open=True)
  775. def _tree_set_val(tri_val):
  776. def tree_set_val(event):
  777. # n/m/y press within the Kconfig treeview
  778. # Sets the value of the currently selected item to 'tri_val', if that
  779. # value can be assigned
  780. sel = event.widget.focus()
  781. if sel:
  782. sc = _id_to_node[sel].item
  783. if isinstance(sc, (Symbol, Choice)) and tri_val in sc.assignable:
  784. _set_val(sc, tri_val)
  785. return tree_set_val
  786. def _tree_open(_):
  787. # Lazily populates the Kconfig tree when menus are opened in full-tree mode
  788. if _single_menu:
  789. # Work around https://core.tcl.tk/tk/tktview?name=368fa4561e
  790. # ("ttk::treeview open/closed indicators can be toggled while hidden").
  791. # Clicking on the hidden indicator will call _build_full_tree() in
  792. # single-menu mode otherwise.
  793. return
  794. node = _id_to_node[_tree.focus()]
  795. # _shown_full_nodes() includes nodes from menus rooted at symbols, so we
  796. # only need to check "real" menus and choices here
  797. if not isinstance(node.item, Symbol):
  798. _build_full_tree(node)
  799. def _update_menu_path(_):
  800. # Updates the displayed menu path when nodes are selected in the Kconfig
  801. # treeview
  802. sel = _tree.selection()
  803. _menupath["text"] = _menu_path_info(_id_to_node[sel[0]]) if sel else ""
  804. def _item_row(item):
  805. # Returns the row number 'item' appears on within the Kconfig treeview,
  806. # starting from the top of the tree. Used to preserve scrolling.
  807. #
  808. # ttkTreeview.c in the Tk sources defines a RowNumber() function that does
  809. # the same thing, but it's not exposed.
  810. row = 0
  811. while True:
  812. prev = _tree.prev(item)
  813. if prev:
  814. item = prev
  815. row += _n_rows(item)
  816. else:
  817. item = _tree.parent(item)
  818. if not item:
  819. return row
  820. row += 1
  821. def _n_rows(item):
  822. # _item_row() helper. Returns the number of rows occupied by 'item' and #
  823. # its children.
  824. rows = 1
  825. if _tree.item(item, "open"):
  826. for child in _tree.get_children(item):
  827. rows += _n_rows(child)
  828. return rows
  829. def _attached(item):
  830. # Heuristic for checking if a Treeview item is attached. Doesn't seem to be
  831. # good APIs for this. Might fail for super-obscure cases with tiny trees,
  832. # but you'd just get a small scroll mess-up.
  833. return bool(_tree.next(item) or _tree.prev(item) or _tree.parent(item))
  834. def _change_node(node, parent):
  835. # Toggles/changes the value of 'node'. 'parent' is the parent window
  836. # (either the main window or the jump-to dialog), in case we need to pop up
  837. # a dialog.
  838. if not _changeable(node):
  839. return
  840. # sc = symbol/choice
  841. sc = node.item
  842. if sc.type in (INT, HEX, STRING):
  843. s = _set_val_dialog(node, parent)
  844. # Tkinter can return 'unicode' strings on Python 2, which Kconfiglib
  845. # can't deal with. UTF-8-encode the string to work around it.
  846. if _PY2 and isinstance(s, unicode):
  847. s = s.encode("utf-8", "ignore")
  848. if s is not None:
  849. _set_val(sc, s)
  850. elif len(sc.assignable) == 1:
  851. # Handles choice symbols for choices in y mode, which are a special
  852. # case: .assignable can be (2,) while .tri_value is 0.
  853. _set_val(sc, sc.assignable[0])
  854. else:
  855. # Set the symbol to the value after the current value in
  856. # sc.assignable, with wrapping
  857. val_index = sc.assignable.index(sc.tri_value)
  858. _set_val(sc, sc.assignable[(val_index + 1) % len(sc.assignable)])
  859. def _set_val(sc, val):
  860. # Wrapper around Symbol/Choice.set_value() for updating the menu state and
  861. # _conf_changed
  862. # Use the string representation of tristate values. This makes the format
  863. # consistent for all symbol types.
  864. if val in TRI_TO_STR:
  865. val = TRI_TO_STR[val]
  866. if val != sc.str_value:
  867. sc.set_value(val)
  868. _set_conf_changed(True)
  869. # Update the tree and try to preserve the scroll. Do a cheaper variant
  870. # than in the show-all case, that might mess up the scroll slightly in
  871. # rare cases, but is fast and flicker-free.
  872. stayput = _loc_ref_item() # Item to preserve scroll for
  873. old_row = _item_row(stayput)
  874. _update_tree()
  875. # If the reference item disappeared (can happen if the change was done
  876. # from the jump-to dialog), then avoid messing with the scroll and hope
  877. # for the best
  878. if _attached(stayput):
  879. _tree.yview_scroll(_item_row(stayput) - old_row, "units")
  880. if _jump_to_tree:
  881. _update_jump_to_display()
  882. def _set_val_dialog(node, parent):
  883. # Pops up a dialog for setting the value of the string/int/hex
  884. # symbol at node 'node'. 'parent' is the parent window.
  885. def ok(_=None):
  886. # No 'nonlocal' in Python 2
  887. global _entry_res
  888. s = entry.get()
  889. if sym.type == HEX and not s.startswith(("0x", "0X")):
  890. s = "0x" + s
  891. if _check_valid(dialog, entry, sym, s):
  892. _entry_res = s
  893. dialog.destroy()
  894. def cancel(_=None):
  895. global _entry_res
  896. _entry_res = None
  897. dialog.destroy()
  898. sym = node.item
  899. dialog = Toplevel(parent)
  900. dialog.title("Enter {} value".format(TYPE_TO_STR[sym.type]))
  901. dialog.resizable(False, False)
  902. dialog.transient(parent)
  903. dialog.protocol("WM_DELETE_WINDOW", cancel)
  904. ttk.Label(dialog, text=node.prompt[0] + ":") \
  905. .grid(column=0, row=0, columnspan=2, sticky="w", padx=".3c",
  906. pady=".2c .05c")
  907. entry = ttk.Entry(dialog, width=30)
  908. # Start with the previous value in the editbox, selected
  909. entry.insert(0, sym.str_value)
  910. entry.selection_range(0, "end")
  911. entry.grid(column=0, row=1, columnspan=2, sticky="ew", padx=".3c")
  912. entry.focus_set()
  913. range_info = _range_info(sym)
  914. if range_info:
  915. ttk.Label(dialog, text=range_info) \
  916. .grid(column=0, row=2, columnspan=2, sticky="w", padx=".3c",
  917. pady=".2c 0")
  918. ttk.Button(dialog, text="OK", command=ok) \
  919. .grid(column=0, row=4 if range_info else 3, sticky="e", padx=".3c",
  920. pady=".4c")
  921. ttk.Button(dialog, text="Cancel", command=cancel) \
  922. .grid(column=1, row=4 if range_info else 3, padx="0 .3c")
  923. # Give all horizontal space to the grid cell with the OK button, so that
  924. # Cancel moves to the right
  925. dialog.columnconfigure(0, weight=1)
  926. _center_on_root(dialog)
  927. # Hack to scroll the entry so that the end of the text is shown, from
  928. # https://stackoverflow.com/questions/29334544/why-does-tkinters-entry-xview-moveto-fail.
  929. # Related Tk ticket: https://core.tcl.tk/tk/info/2513186fff
  930. def scroll_entry(_):
  931. _root.update_idletasks()
  932. entry.unbind("<Expose>")
  933. entry.xview_moveto(1)
  934. entry.bind("<Expose>", scroll_entry)
  935. # The dialog must be visible before we can grab the input
  936. dialog.wait_visibility()
  937. dialog.grab_set()
  938. dialog.bind("<Return>", ok)
  939. dialog.bind("<KP_Enter>", ok)
  940. dialog.bind("<Escape>", cancel)
  941. # Wait for the user to be done with the dialog
  942. parent.wait_window(dialog)
  943. # Regrab the input in the parent
  944. parent.grab_set()
  945. return _entry_res
  946. def _center_on_root(dialog):
  947. # Centers 'dialog' on the root window. It often ends up at some bad place
  948. # like the top-left corner of the screen otherwise. See the menuconfig()
  949. # function, which has similar logic.
  950. dialog.withdraw()
  951. _root.update_idletasks()
  952. dialog_width = dialog.winfo_reqwidth()
  953. dialog_height = dialog.winfo_reqheight()
  954. screen_width = _root.winfo_screenwidth()
  955. screen_height = _root.winfo_screenheight()
  956. x = _root.winfo_rootx() + (_root.winfo_width() - dialog_width)//2
  957. y = _root.winfo_rooty() + (_root.winfo_height() - dialog_height)//2
  958. # Clamp so that no part of the dialog is outside the screen
  959. if x + dialog_width > screen_width:
  960. x = screen_width - dialog_width
  961. elif x < 0:
  962. x = 0
  963. if y + dialog_height > screen_height:
  964. y = screen_height - dialog_height
  965. elif y < 0:
  966. y = 0
  967. dialog.geometry("+{}+{}".format(x, y))
  968. dialog.deiconify()
  969. def _check_valid(dialog, entry, sym, s):
  970. # Returns True if the string 's' is a well-formed value for 'sym'.
  971. # Otherwise, pops up an error and returns False.
  972. if sym.type not in (INT, HEX):
  973. # Anything goes for non-int/hex symbols
  974. return True
  975. base = 10 if sym.type == INT else 16
  976. try:
  977. int(s, base)
  978. except ValueError:
  979. messagebox.showerror(
  980. "Bad value",
  981. "'{}' is a malformed {} value".format(
  982. s, TYPE_TO_STR[sym.type]),
  983. parent=dialog)
  984. entry.focus_set()
  985. return False
  986. for low_sym, high_sym, cond in sym.ranges:
  987. if expr_value(cond):
  988. low_s = low_sym.str_value
  989. high_s = high_sym.str_value
  990. if not int(low_s, base) <= int(s, base) <= int(high_s, base):
  991. messagebox.showerror(
  992. "Value out of range",
  993. "{} is outside the range {}-{}".format(s, low_s, high_s),
  994. parent=dialog)
  995. entry.focus_set()
  996. return False
  997. break
  998. return True
  999. def _range_info(sym):
  1000. # Returns a string with information about the valid range for the symbol
  1001. # 'sym', or None if 'sym' doesn't have a range
  1002. if sym.type in (INT, HEX):
  1003. for low, high, cond in sym.ranges:
  1004. if expr_value(cond):
  1005. return "Range: {}-{}".format(low.str_value, high.str_value)
  1006. return None
  1007. def _save(_=None):
  1008. # Tries to save the configuration
  1009. if _try_save(_kconf.write_config, _conf_filename, "configuration"):
  1010. _set_conf_changed(False)
  1011. _tree.focus_set()
  1012. def _save_as():
  1013. # Pops up a dialog for saving the configuration to a specific location
  1014. global _conf_filename
  1015. filename = _conf_filename
  1016. while True:
  1017. filename = filedialog.asksaveasfilename(
  1018. title="Save configuration as",
  1019. initialdir=os.path.dirname(filename),
  1020. initialfile=os.path.basename(filename),
  1021. parent=_root)
  1022. if not filename:
  1023. break
  1024. if _try_save(_kconf.write_config, filename, "configuration"):
  1025. _conf_filename = filename
  1026. break
  1027. _tree.focus_set()
  1028. def _save_minimal():
  1029. # Pops up a dialog for saving a minimal configuration (defconfig) to a
  1030. # specific location
  1031. global _minconf_filename
  1032. filename = _minconf_filename
  1033. while True:
  1034. filename = filedialog.asksaveasfilename(
  1035. title="Save minimal configuration as",
  1036. initialdir=os.path.dirname(filename),
  1037. initialfile=os.path.basename(filename),
  1038. parent=_root)
  1039. if not filename:
  1040. break
  1041. if _try_save(_kconf.write_min_config, filename,
  1042. "minimal configuration"):
  1043. _minconf_filename = filename
  1044. break
  1045. _tree.focus_set()
  1046. def _open(_=None):
  1047. # Pops up a dialog for loading a configuration
  1048. global _conf_filename
  1049. if _conf_changed and \
  1050. not messagebox.askokcancel(
  1051. "Unsaved changes",
  1052. "You have unsaved changes. Load new configuration anyway?"):
  1053. return
  1054. filename = _conf_filename
  1055. while True:
  1056. filename = filedialog.askopenfilename(
  1057. title="Open configuration",
  1058. initialdir=os.path.dirname(filename),
  1059. initialfile=os.path.basename(filename),
  1060. parent=_root)
  1061. if not filename:
  1062. break
  1063. if _try_load(filename):
  1064. # Maybe something fancier could be done here later to try to
  1065. # preserve the scroll
  1066. _conf_filename = filename
  1067. _set_conf_changed(_needs_save())
  1068. if _single_menu and not _shown_menu_nodes(_cur_menu):
  1069. # Turn on show-all if we're in single-menu mode and would end
  1070. # up with an empty menu
  1071. _show_all_var.set(True)
  1072. _update_tree()
  1073. break
  1074. _tree.focus_set()
  1075. def _toggle_showname(_):
  1076. # Toggles show-name mode on/off
  1077. _show_name_var.set(not _show_name_var.get())
  1078. _do_showname()
  1079. def _do_showname():
  1080. # Updates the UI for the current show-name setting
  1081. # Columns do not automatically shrink/expand, so we have to update
  1082. # column widths ourselves
  1083. tree_width = _tree.winfo_width()
  1084. if _show_name_var.get():
  1085. _tree["displaycolumns"] = ("name",)
  1086. _tree["show"] = "tree headings"
  1087. name_width = tree_width//3
  1088. _tree.column("#0", width=max(tree_width - name_width, 1))
  1089. _tree.column("name", width=name_width)
  1090. else:
  1091. _tree["displaycolumns"] = ()
  1092. _tree["show"] = "tree"
  1093. _tree.column("#0", width=tree_width)
  1094. _tree.focus_set()
  1095. def _toggle_showall(_):
  1096. # Toggles show-all mode on/off
  1097. _show_all_var.set(not _show_all)
  1098. _do_showall()
  1099. def _do_showall():
  1100. # Updates the UI for the current show-all setting
  1101. # Don't allow turning off show-all if we'd end up with no visible nodes
  1102. if _nothing_shown():
  1103. _show_all_var.set(True)
  1104. return
  1105. # Save scroll information. old_scroll can end up negative here, if the
  1106. # reference item isn't shown (only invisible items on the screen, and
  1107. # show-all being turned off).
  1108. stayput = _vis_loc_ref_item()
  1109. # Probe the middle of the first row, to play it safe. identify_row(0) seems
  1110. # to return the row before the top row.
  1111. old_scroll = _item_row(stayput) - \
  1112. _item_row(_tree.identify_row(_treeview_rowheight//2))
  1113. _update_tree()
  1114. if _show_all:
  1115. # Deep magic: Unless we call update_idletasks(), the scroll adjustment
  1116. # below is restricted to the height of the old tree, instead of the
  1117. # height of the new tree. Since the tree with show-all on is guaranteed
  1118. # to be taller, and we want the maximum range, we only call it when
  1119. # turning show-all on.
  1120. #
  1121. # Strictly speaking, something similar ought to be done when changing
  1122. # symbol values, but it causes annoying flicker, and in 99% of cases
  1123. # things work anyway there (with usually minor scroll mess-ups in the
  1124. # 1% case).
  1125. _root.update_idletasks()
  1126. # Restore scroll
  1127. _tree.yview(_item_row(stayput) - old_scroll)
  1128. _tree.focus_set()
  1129. def _nothing_shown():
  1130. # _do_showall() helper. Returns True if no nodes would get
  1131. # shown with the current show-all setting. Also handles the
  1132. # (obscure) case when there are no visible nodes in the entire
  1133. # tree, meaning guiconfig was automatically started in
  1134. # show-all mode, which mustn't be turned off.
  1135. return not _shown_menu_nodes(
  1136. _cur_menu if _single_menu else _kconf.top_node)
  1137. def _toggle_tree_mode(_):
  1138. # Toggles single-menu mode on/off
  1139. _single_menu_var.set(not _single_menu)
  1140. _do_tree_mode()
  1141. def _do_tree_mode():
  1142. # Updates the UI for the current tree mode (full-tree or single-menu)
  1143. loc_ref_node = _id_to_node[_loc_ref_item()]
  1144. if not _single_menu:
  1145. # _jump_to() -> _enter_menu() already updates the tree, but
  1146. # _jump_to() -> load_parents() doesn't, because it isn't always needed.
  1147. # We always need to update the tree here, e.g. to add/remove "--->".
  1148. _update_tree()
  1149. _jump_to(loc_ref_node)
  1150. _tree.focus_set()
  1151. def _enter_menu_and_select_first(menu):
  1152. # Enters the menu 'menu' and selects the first item. Used in single-menu
  1153. # mode.
  1154. _enter_menu(menu)
  1155. _select(_tree, _tree.get_children()[0])
  1156. def _enter_menu(menu):
  1157. # Enters the menu 'menu'. Used in single-menu mode.
  1158. global _cur_menu
  1159. _cur_menu = menu
  1160. _update_tree()
  1161. _backbutton["state"] = "disabled" if menu is _kconf.top_node else "normal"
  1162. def _leave_menu():
  1163. # Leaves the current menu. Used in single-menu mode.
  1164. global _cur_menu
  1165. if _cur_menu is not _kconf.top_node:
  1166. old_menu = _cur_menu
  1167. _cur_menu = _parent_menu(_cur_menu)
  1168. _update_tree()
  1169. _select(_tree, id(old_menu))
  1170. if _cur_menu is _kconf.top_node:
  1171. _backbutton["state"] = "disabled"
  1172. _tree.focus_set()
  1173. def _select(tree, item):
  1174. # Selects, focuses, and see()s 'item' in 'tree'
  1175. tree.selection_set(item)
  1176. tree.focus(item)
  1177. tree.see(item)
  1178. def _loc_ref_item():
  1179. # Returns a Treeview item that can serve as a reference for the current
  1180. # scroll location. We try to make this item stay on the same row on the
  1181. # screen when updating the tree.
  1182. # If the selected item is visible, use that
  1183. sel = _tree.selection()
  1184. if sel and _tree.bbox(sel[0]):
  1185. return sel[0]
  1186. # Otherwise, use the middle item on the screen. If it doesn't exist, the
  1187. # tree is probably really small, so use the first item in the entire tree.
  1188. return _tree.identify_row(_tree.winfo_height()//2) or \
  1189. _tree.get_children()[0]
  1190. def _vis_loc_ref_item():
  1191. # Like _loc_ref_item(), but finds a visible item around the reference item.
  1192. # Used when changing show-all mode, where non-visible (red) items will
  1193. # disappear.
  1194. item = _loc_ref_item()
  1195. vis_before = _vis_before(item)
  1196. if vis_before and _tree.bbox(vis_before):
  1197. return vis_before
  1198. vis_after = _vis_after(item)
  1199. if vis_after and _tree.bbox(vis_after):
  1200. return vis_after
  1201. return vis_before or vis_after
  1202. def _vis_before(item):
  1203. # _vis_loc_ref_item() helper. Returns the first visible (not red) item,
  1204. # searching backwards from 'item'.
  1205. while item:
  1206. if not _tree.tag_has("invisible", item):
  1207. return item
  1208. prev = _tree.prev(item)
  1209. item = prev if prev else _tree.parent(item)
  1210. return None
  1211. def _vis_after(item):
  1212. # _vis_loc_ref_item() helper. Returns the first visible (not red) item,
  1213. # searching forwards from 'item'.
  1214. while item:
  1215. if not _tree.tag_has("invisible", item):
  1216. return item
  1217. next = _tree.next(item)
  1218. if next:
  1219. item = next
  1220. else:
  1221. item = _tree.parent(item)
  1222. if not item:
  1223. break
  1224. item = _tree.next(item)
  1225. return None
  1226. def _on_quit(_=None):
  1227. # Called when the user wants to exit
  1228. if not _conf_changed:
  1229. _quit("No changes to save (for '{}')".format(_conf_filename))
  1230. return
  1231. while True:
  1232. ync = messagebox.askyesnocancel("Quit", "Save changes?")
  1233. if ync is None:
  1234. return
  1235. if not ync:
  1236. _quit("Configuration ({}) was not saved".format(_conf_filename))
  1237. return
  1238. if _try_save(_kconf.write_config, _conf_filename, "configuration"):
  1239. # _try_save() already prints the "Configuration saved to ..."
  1240. # message
  1241. _quit()
  1242. return
  1243. def _quit(msg=None):
  1244. # Quits the application
  1245. # Do not call sys.exit() here, in case we're being run from a script
  1246. _root.destroy()
  1247. if msg:
  1248. print(msg)
  1249. def _try_save(save_fn, filename, description):
  1250. # Tries to save a configuration file. Pops up an error and returns False on
  1251. # failure.
  1252. #
  1253. # save_fn:
  1254. # Function to call with 'filename' to save the file
  1255. #
  1256. # description:
  1257. # String describing the thing being saved
  1258. try:
  1259. # save_fn() returns a message to print
  1260. msg = save_fn(filename)
  1261. _set_status(msg)
  1262. print(msg)
  1263. return True
  1264. except EnvironmentError as e:
  1265. messagebox.showerror(
  1266. "Error saving " + description,
  1267. "Error saving {} to '{}': {} (errno: {})"
  1268. .format(description, e.filename, e.strerror,
  1269. errno.errorcode[e.errno]))
  1270. return False
  1271. def _try_load(filename):
  1272. # Tries to load a configuration file. Pops up an error and returns False on
  1273. # failure.
  1274. #
  1275. # filename:
  1276. # Configuration file to load
  1277. try:
  1278. msg = _kconf.load_config(filename)
  1279. _set_status(msg)
  1280. print(msg)
  1281. return True
  1282. except EnvironmentError as e:
  1283. messagebox.showerror(
  1284. "Error loading configuration",
  1285. "Error loading '{}': {} (errno: {})"
  1286. .format(filename, e.strerror, errno.errorcode[e.errno]))
  1287. return False
  1288. def _jump_to_dialog(_=None):
  1289. # Pops up a dialog for jumping directly to a particular node. Symbol values
  1290. # can also be changed within the dialog.
  1291. #
  1292. # Note: There's nothing preventing this from doing an incremental search
  1293. # like menuconfig.py does, but currently it's a bit jerky for large Kconfig
  1294. # trees, at least when inputting the beginning of the search string. We'd
  1295. # need to somehow only update the tree items that are shown in the Treeview
  1296. # to fix it.
  1297. global _jump_to_tree
  1298. def search(_=None):
  1299. _update_jump_to_matches(msglabel, entry.get())
  1300. def jump_to_selected(event=None):
  1301. # Jumps to the selected node and closes the dialog
  1302. # Ignore double clicks on the image and in the heading area
  1303. if event and (tree.identify_element(event.x, event.y) == "image" or
  1304. _in_heading(event)):
  1305. return
  1306. sel = tree.selection()
  1307. if not sel:
  1308. return
  1309. node = _id_to_node[sel[0]]
  1310. if node not in _shown_menu_nodes(_parent_menu(node)):
  1311. _show_all_var.set(True)
  1312. if not _single_menu:
  1313. # See comment in _do_tree_mode()
  1314. _update_tree()
  1315. _jump_to(node)
  1316. dialog.destroy()
  1317. def tree_select(_):
  1318. jumpto_button["state"] = "normal" if tree.selection() else "disabled"
  1319. dialog = Toplevel(_root)
  1320. dialog.geometry("+{}+{}".format(
  1321. _root.winfo_rootx() + 50, _root.winfo_rooty() + 50))
  1322. dialog.title("Jump to symbol/choice/menu/comment")
  1323. dialog.minsize(128, 128) # See _create_ui()
  1324. dialog.transient(_root)
  1325. ttk.Label(dialog, text=_JUMP_TO_HELP) \
  1326. .grid(column=0, row=0, columnspan=2, sticky="w", padx=".1c",
  1327. pady=".1c")
  1328. entry = ttk.Entry(dialog)
  1329. entry.grid(column=0, row=1, sticky="ew", padx=".1c", pady=".1c")
  1330. entry.focus_set()
  1331. entry.bind("<Return>", search)
  1332. entry.bind("<KP_Enter>", search)
  1333. ttk.Button(dialog, text="Search", command=search) \
  1334. .grid(column=1, row=1, padx="0 .1c", pady="0 .1c")
  1335. msglabel = ttk.Label(dialog)
  1336. msglabel.grid(column=0, row=2, sticky="w", pady="0 .1c")
  1337. panedwindow, tree = _create_kconfig_tree_and_desc(dialog)
  1338. panedwindow.grid(column=0, row=3, columnspan=2, sticky="nsew")
  1339. # Clear tree
  1340. tree.set_children("")
  1341. _jump_to_tree = tree
  1342. jumpto_button = ttk.Button(dialog, text="Jump to selected item",
  1343. state="disabled", command=jump_to_selected)
  1344. jumpto_button.grid(column=0, row=4, columnspan=2, sticky="ns", pady=".1c")
  1345. dialog.columnconfigure(0, weight=1)
  1346. # Only the pane with the Kconfig tree and description grows vertically
  1347. dialog.rowconfigure(3, weight=1)
  1348. # See the menuconfig() function
  1349. _root.update_idletasks()
  1350. dialog.geometry(dialog.geometry())
  1351. # The dialog must be visible before we can grab the input
  1352. dialog.wait_visibility()
  1353. dialog.grab_set()
  1354. tree.bind("<Double-1>", jump_to_selected)
  1355. tree.bind("<Return>", jump_to_selected)
  1356. tree.bind("<KP_Enter>", jump_to_selected)
  1357. # add=True to avoid overriding the description text update
  1358. tree.bind("<<TreeviewSelect>>", tree_select, add=True)
  1359. dialog.bind("<Escape>", lambda _: dialog.destroy())
  1360. # Wait for the user to be done with the dialog
  1361. _root.wait_window(dialog)
  1362. _jump_to_tree = None
  1363. _tree.focus_set()
  1364. def _update_jump_to_matches(msglabel, search_string):
  1365. # Searches for nodes matching the search string and updates
  1366. # _jump_to_matches. Puts a message in 'msglabel' if there are no matches,
  1367. # or regex errors.
  1368. global _jump_to_matches
  1369. _jump_to_tree.selection_set(())
  1370. try:
  1371. # We could use re.IGNORECASE here instead of lower(), but this is
  1372. # faster for regexes like '.*debug$' (though the '.*' is redundant
  1373. # there). Those probably have bad interactions with re.search(), which
  1374. # matches anywhere in the string.
  1375. regex_searches = [re.compile(regex).search
  1376. for regex in search_string.lower().split()]
  1377. except re.error as e:
  1378. msg = "Bad regular expression"
  1379. # re.error.msg was added in Python 3.5
  1380. if hasattr(e, "msg"):
  1381. msg += ": " + e.msg
  1382. msglabel["text"] = msg
  1383. # Clear tree
  1384. _jump_to_tree.set_children("")
  1385. return
  1386. _jump_to_matches = []
  1387. add_match = _jump_to_matches.append
  1388. for node in _sorted_sc_nodes():
  1389. # Symbol/choice
  1390. sc = node.item
  1391. for search in regex_searches:
  1392. # Both the name and the prompt might be missing, since
  1393. # we're searching both symbols and choices
  1394. # Does the regex match either the symbol name or the
  1395. # prompt (if any)?
  1396. if not (sc.name and search(sc.name.lower()) or
  1397. node.prompt and search(node.prompt[0].lower())):
  1398. # Give up on the first regex that doesn't match, to
  1399. # speed things up a bit when multiple regexes are
  1400. # entered
  1401. break
  1402. else:
  1403. add_match(node)
  1404. # Search menus and comments
  1405. for node in _sorted_menu_comment_nodes():
  1406. for search in regex_searches:
  1407. if not search(node.prompt[0].lower()):
  1408. break
  1409. else:
  1410. add_match(node)
  1411. msglabel["text"] = "" if _jump_to_matches else "No matches"
  1412. _update_jump_to_display()
  1413. if _jump_to_matches:
  1414. item = id(_jump_to_matches[0])
  1415. _jump_to_tree.selection_set(item)
  1416. _jump_to_tree.focus(item)
  1417. def _update_jump_to_display():
  1418. # Updates the images and text for the items in _jump_to_matches, and sets
  1419. # them as the items of _jump_to_tree
  1420. # Micro-optimize a bit
  1421. item = _jump_to_tree.item
  1422. id_ = id
  1423. node_str = _node_str
  1424. img_tag = _img_tag
  1425. visible = _visible
  1426. for node in _jump_to_matches:
  1427. item(id_(node),
  1428. text=node_str(node),
  1429. tags=img_tag(node) if visible(node) else
  1430. img_tag(node) + " invisible")
  1431. _jump_to_tree.set_children("", *map(id, _jump_to_matches))
  1432. def _jump_to(node):
  1433. # Jumps directly to 'node' and selects it
  1434. if _single_menu:
  1435. _enter_menu(_parent_menu(node))
  1436. else:
  1437. _load_parents(node)
  1438. _select(_tree, id(node))
  1439. # Obscure Python: We never pass a value for cached_nodes, and it keeps pointing
  1440. # to the same list. This avoids a global.
  1441. def _sorted_sc_nodes(cached_nodes=[]):
  1442. # Returns a sorted list of symbol and choice nodes to search. The symbol
  1443. # nodes appear first, sorted by name, and then the choice nodes, sorted by
  1444. # prompt and (secondarily) name.
  1445. if not cached_nodes:
  1446. # Add symbol nodes
  1447. for sym in sorted(_kconf.unique_defined_syms,
  1448. key=lambda sym: sym.name):
  1449. # += is in-place for lists
  1450. cached_nodes += sym.nodes
  1451. # Add choice nodes
  1452. choices = sorted(_kconf.unique_choices,
  1453. key=lambda choice: choice.name or "")
  1454. cached_nodes += sorted(
  1455. [node for choice in choices for node in choice.nodes],
  1456. key=lambda node: node.prompt[0] if node.prompt else "")
  1457. return cached_nodes
  1458. def _sorted_menu_comment_nodes(cached_nodes=[]):
  1459. # Returns a list of menu and comment nodes to search, sorted by prompt,
  1460. # with the menus first
  1461. if not cached_nodes:
  1462. def prompt_text(mc):
  1463. return mc.prompt[0]
  1464. cached_nodes += sorted(_kconf.menus, key=prompt_text)
  1465. cached_nodes += sorted(_kconf.comments, key=prompt_text)
  1466. return cached_nodes
  1467. def _load_parents(node):
  1468. # Menus are lazily populated as they're opened in full-tree mode, but
  1469. # jumping to an item needs its parent menus to be populated. This function
  1470. # populates 'node's parents.
  1471. # Get all parents leading up to 'node', sorted with the root first
  1472. parents = []
  1473. cur = node.parent
  1474. while cur is not _kconf.top_node:
  1475. parents.append(cur)
  1476. cur = cur.parent
  1477. parents.reverse()
  1478. for i, parent in enumerate(parents):
  1479. if not _tree.item(id(parent), "open"):
  1480. # Found a closed menu. Populate it and all the remaining menus
  1481. # leading up to 'node'.
  1482. for parent in parents[i:]:
  1483. # We only need to populate "real" menus/choices. Implicit menus
  1484. # are populated when their parents menus are entered.
  1485. if not isinstance(parent.item, Symbol):
  1486. _build_full_tree(parent)
  1487. return
  1488. def _parent_menu(node):
  1489. # Returns the menu node of the menu that contains 'node'. In addition to
  1490. # proper 'menu's, this might also be a 'menuconfig' symbol or a 'choice'.
  1491. # "Menu" here means a menu in the interface.
  1492. menu = node.parent
  1493. while not menu.is_menuconfig:
  1494. menu = menu.parent
  1495. return menu
  1496. def _trace_write(var, fn):
  1497. # Makes fn() be called whenever the Tkinter Variable 'var' changes value
  1498. # trace_variable() is deprecated according to the docstring,
  1499. # which recommends trace_add()
  1500. if hasattr(var, "trace_add"):
  1501. var.trace_add("write", fn)
  1502. else:
  1503. var.trace_variable("w", fn)
  1504. def _info_str(node):
  1505. # Returns information about the menu node 'node' as a string.
  1506. #
  1507. # The helper functions are responsible for adding newlines. This allows
  1508. # them to return "" if they don't want to add any output.
  1509. if isinstance(node.item, Symbol):
  1510. sym = node.item
  1511. return (
  1512. _name_info(sym) +
  1513. _help_info(sym) +
  1514. _direct_dep_info(sym) +
  1515. _defaults_info(sym) +
  1516. _select_imply_info(sym) +
  1517. _kconfig_def_info(sym)
  1518. )
  1519. if isinstance(node.item, Choice):
  1520. choice = node.item
  1521. return (
  1522. _name_info(choice) +
  1523. _help_info(choice) +
  1524. 'Mode: {}\n\n'.format(choice.str_value) +
  1525. _choice_syms_info(choice) +
  1526. _direct_dep_info(choice) +
  1527. _defaults_info(choice) +
  1528. _kconfig_def_info(choice)
  1529. )
  1530. # node.item in (MENU, COMMENT)
  1531. return _kconfig_def_info(node)
  1532. def _name_info(sc):
  1533. # Returns a string with the name of the symbol/choice. Choices are shown as
  1534. # <choice (name if any)>.
  1535. return (sc.name if sc.name else standard_sc_expr_str(sc)) + "\n\n"
  1536. def _value_info(sym):
  1537. # Returns a string showing 'sym's value
  1538. # Only put quotes around the value for string symbols
  1539. return "Value: {}\n".format(
  1540. '"{}"'.format(sym.str_value)
  1541. if sym.orig_type == STRING
  1542. else sym.str_value)
  1543. def _choice_syms_info(choice):
  1544. # Returns a string listing the choice symbols in 'choice'. Adds
  1545. # "(selected)" next to the selected one.
  1546. s = "Choice symbols:\n"
  1547. for sym in choice.syms:
  1548. s += " - " + sym.name
  1549. if sym is choice.selection:
  1550. s += " (selected)"
  1551. s += "\n"
  1552. return s + "\n"
  1553. def _help_info(sc):
  1554. # Returns a string with the help text(s) of 'sc' (Symbol or Choice).
  1555. # Symbols and choices defined in multiple locations can have multiple help
  1556. # texts.
  1557. s = ""
  1558. for node in sc.nodes:
  1559. if node.help is not None:
  1560. s += node.help + "\n\n"
  1561. return s
  1562. def _direct_dep_info(sc):
  1563. # Returns a string describing the direct dependencies of 'sc' (Symbol or
  1564. # Choice). The direct dependencies are the OR of the dependencies from each
  1565. # definition location. The dependencies at each definition location come
  1566. # from 'depends on' and dependencies inherited from parent items.
  1567. return "" if sc.direct_dep is _kconf.y else \
  1568. 'Direct dependencies (={}):\n{}\n' \
  1569. .format(TRI_TO_STR[expr_value(sc.direct_dep)],
  1570. _split_expr_info(sc.direct_dep, 2))
  1571. def _defaults_info(sc):
  1572. # Returns a string describing the defaults of 'sc' (Symbol or Choice)
  1573. if not sc.defaults:
  1574. return ""
  1575. s = "Default"
  1576. if len(sc.defaults) > 1:
  1577. s += "s"
  1578. s += ":\n"
  1579. for val, cond in sc.orig_defaults:
  1580. s += " - "
  1581. if isinstance(sc, Symbol):
  1582. s += _expr_str(val)
  1583. # Skip the tristate value hint if the expression is just a single
  1584. # symbol. _expr_str() already shows its value as a string.
  1585. #
  1586. # This also avoids showing the tristate value for string/int/hex
  1587. # defaults, which wouldn't make any sense.
  1588. if isinstance(val, tuple):
  1589. s += ' (={})'.format(TRI_TO_STR[expr_value(val)])
  1590. else:
  1591. # Don't print the value next to the symbol name for choice
  1592. # defaults, as it looks a bit confusing
  1593. s += val.name
  1594. s += "\n"
  1595. if cond is not _kconf.y:
  1596. s += " Condition (={}):\n{}" \
  1597. .format(TRI_TO_STR[expr_value(cond)],
  1598. _split_expr_info(cond, 4))
  1599. return s + "\n"
  1600. def _split_expr_info(expr, indent):
  1601. # Returns a string with 'expr' split into its top-level && or || operands,
  1602. # with one operand per line, together with the operand's value. This is
  1603. # usually enough to get something readable for long expressions. A fancier
  1604. # recursive thingy would be possible too.
  1605. #
  1606. # indent:
  1607. # Number of leading spaces to add before the split expression.
  1608. if len(split_expr(expr, AND)) > 1:
  1609. split_op = AND
  1610. op_str = "&&"
  1611. else:
  1612. split_op = OR
  1613. op_str = "||"
  1614. s = ""
  1615. for i, term in enumerate(split_expr(expr, split_op)):
  1616. s += "{}{} {}".format(indent*" ",
  1617. " " if i == 0 else op_str,
  1618. _expr_str(term))
  1619. # Don't bother showing the value hint if the expression is just a
  1620. # single symbol. _expr_str() already shows its value.
  1621. if isinstance(term, tuple):
  1622. s += " (={})".format(TRI_TO_STR[expr_value(term)])
  1623. s += "\n"
  1624. return s
  1625. def _select_imply_info(sym):
  1626. # Returns a string with information about which symbols 'select' or 'imply'
  1627. # 'sym'. The selecting/implying symbols are grouped according to which
  1628. # value they select/imply 'sym' to (n/m/y).
  1629. def sis(expr, val, title):
  1630. # sis = selects/implies
  1631. sis = [si for si in split_expr(expr, OR) if expr_value(si) == val]
  1632. if not sis:
  1633. return ""
  1634. res = title
  1635. for si in sis:
  1636. res += " - {}\n".format(split_expr(si, AND)[0].name)
  1637. return res + "\n"
  1638. s = ""
  1639. if sym.rev_dep is not _kconf.n:
  1640. s += sis(sym.rev_dep, 2,
  1641. "Symbols currently y-selecting this symbol:\n")
  1642. s += sis(sym.rev_dep, 1,
  1643. "Symbols currently m-selecting this symbol:\n")
  1644. s += sis(sym.rev_dep, 0,
  1645. "Symbols currently n-selecting this symbol (no effect):\n")
  1646. if sym.weak_rev_dep is not _kconf.n:
  1647. s += sis(sym.weak_rev_dep, 2,
  1648. "Symbols currently y-implying this symbol:\n")
  1649. s += sis(sym.weak_rev_dep, 1,
  1650. "Symbols currently m-implying this symbol:\n")
  1651. s += sis(sym.weak_rev_dep, 0,
  1652. "Symbols currently n-implying this symbol (no effect):\n")
  1653. return s
  1654. def _kconfig_def_info(item):
  1655. # Returns a string with the definition of 'item' in Kconfig syntax,
  1656. # together with the definition location(s) and their include and menu paths
  1657. nodes = [item] if isinstance(item, MenuNode) else item.nodes
  1658. s = "Kconfig definition{}, with parent deps. propagated to 'depends on'\n" \
  1659. .format("s" if len(nodes) > 1 else "")
  1660. s += (len(s) - 1)*"="
  1661. for node in nodes:
  1662. s += "\n\n" \
  1663. "At {}:{}\n" \
  1664. "{}" \
  1665. "Menu path: {}\n\n" \
  1666. "{}" \
  1667. .format(node.filename, node.linenr,
  1668. _include_path_info(node),
  1669. _menu_path_info(node),
  1670. node.custom_str(_name_and_val_str))
  1671. return s
  1672. def _include_path_info(node):
  1673. if not node.include_path:
  1674. # In the top-level Kconfig file
  1675. return ""
  1676. return "Included via {}\n".format(
  1677. " -> ".join("{}:{}".format(filename, linenr)
  1678. for filename, linenr in node.include_path))
  1679. def _menu_path_info(node):
  1680. # Returns a string describing the menu path leading up to 'node'
  1681. path = ""
  1682. while node.parent is not _kconf.top_node:
  1683. node = node.parent
  1684. # Promptless choices might appear among the parents. Use
  1685. # standard_sc_expr_str() for them, so that they show up as
  1686. # '<choice (name if any)>'.
  1687. path = " -> " + (node.prompt[0] if node.prompt else
  1688. standard_sc_expr_str(node.item)) + path
  1689. return "(Top)" + path
  1690. def _name_and_val_str(sc):
  1691. # Custom symbol/choice printer that shows symbol values after symbols
  1692. # Show the values of non-constant (non-quoted) symbols that don't look like
  1693. # numbers. Things like 123 are actually symbol references, and only work as
  1694. # expected due to undefined symbols getting their name as their value.
  1695. # Showing the symbol value for those isn't helpful though.
  1696. if isinstance(sc, Symbol) and not sc.is_constant and not _is_num(sc.name):
  1697. if not sc.nodes:
  1698. # Undefined symbol reference
  1699. return "{}(undefined/n)".format(sc.name)
  1700. return '{}(={})'.format(sc.name, sc.str_value)
  1701. # For other items, use the standard format
  1702. return standard_sc_expr_str(sc)
  1703. def _expr_str(expr):
  1704. # Custom expression printer that shows symbol values
  1705. return expr_str(expr, _name_and_val_str)
  1706. def _is_num(name):
  1707. # Heuristic to see if a symbol name looks like a number, for nicer output
  1708. # when printing expressions. Things like 16 are actually symbol names, only
  1709. # they get their name as their value when the symbol is undefined.
  1710. try:
  1711. int(name)
  1712. except ValueError:
  1713. if not name.startswith(("0x", "0X")):
  1714. return False
  1715. try:
  1716. int(name, 16)
  1717. except ValueError:
  1718. return False
  1719. return True
  1720. if __name__ == "__main__":
  1721. _main()