summary refs log tree commit diff stats
path: root/compiler/pretty.nim
blob: 17311f9e62bfdc22a19748ecaa194bd3930afbcf (plain) (blame)
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
#
#
#           The Nimrod Compiler
#        (c) Copyright 2014 Andreas Rumpf
#
#    See the file "copying.txt", included in this
#    distribution, for details about the copyright.
#

## This module implements the code "prettifier". This is part of the toolchain
## to convert Nimrod code into a consistent style.

import 
  strutils, os, options, ast, astalgo, msgs, ropes, idents, passes,
  intsets, strtabs, semdata
  
const
  removeTP = false # when true, "nimrod pretty" converts TTyp to Typ.

type
  TGen = object of TPassContext
    module*: PSym
  PGen = ref TGen
  
  TSourceFile = object
    lines: seq[string]
    dirty: bool
    fullpath: string

var
  gSourceFiles: seq[TSourceFile] = @[]
  gCheckExtern: bool
  rules: PStringTable

proc loadFile(info: TLineInfo) =
  let i = info.fileIndex
  if i >= gSourceFiles.len:
    gSourceFiles.setLen(i+1)
  if gSourceFiles[i].lines.isNil:
    gSourceFiles[i].lines = @[]
    let path = info.toFullPath
    gSourceFiles[i].fullpath = path
    # we want to die here for EIO:
    for line in lines(path):
      gSourceFiles[i].lines.add(line)

proc overwriteFiles*() =
  let overWrite = options.getConfigVar("pretty.overwrite").normalize == "on"
  let doStrip = options.getConfigVar("pretty.strip").normalize == "on"
  for i in 0 .. high(gSourceFiles):
    if not gSourceFiles[i].dirty: continue
    let newFile = if overWrite: gSourceFiles[i].fullpath
                  else: gSourceFiles[i].fullpath.changeFileExt(".pretty.nim")
    try:
      var f = open(newFile, fmWrite)
      for line in gSourceFiles[i].lines:
        if doStrip:
          f.write line.strip(leading = false, trailing = true)
        else:
          f.write line
        f.write("\L")
      f.close
    except EIO:
      rawMessage(errCannotOpenFile, newFile)

proc `=~`(s: string, a: openArray[string]): bool =
  for x in a:
    if s.startsWith(x): return true

proc beautifyName(s: string, k: TSymKind): string =
  # minimal set of rules here for transition:
  # GC_ is allowed

  let allUpper = allCharsInSet(s, {'A'..'Z', '0'..'9', '_'})
  if allUpper and k in {skConst, skEnumField, skType}: return s
  result = newStringOfCap(s.len)
  var i = 0
  case k
  of skType, skGenericParam:
    # Types should start with a capital unless builtins like 'int' etc.:
    when removeTP:
      if s[0] == 'T' and s[1] in {'A'..'Z'}:
        i = 1
    if s =~ ["int", "uint", "cint", "cuint", "clong", "cstring", "string",
             "char", "byte", "bool", "openArray", "seq", "array", "void",
             "pointer", "float", "csize", "cdouble", "cchar", "cschar",
             "cshort", "cu", "nil", "expr", "stmt", "typedesc", "auto", "any",
             "range", "openarray", "varargs", "set", "cfloat"
             ]:
      result.add s[i]
    else:
      result.add toUpper(s[i])
  of skConst, skEnumField:
    # for 'const' we keep how it's spelt; either upper case or lower case:
    result.add s[0]
  else:
    # as a special rule, don't transform 'L' to 'l'
    if s.len == 1 and s[0] == 'L': result.add 'L'
    elif '_' in s: result.add(s[i])
    else: result.add toLower(s[0])
  inc i
  while i < s.len:
    if s[i] == '_':
      if i > 0 and s[i-1] in {'A'..'Z'}:
        # don't skip '_' as it's essential for e.g. 'GC_disable'
        result.add('_')
        inc i
        result.add s[i]
      else:
        inc i
        result.add toUpper(s[i])
    elif allUpper:
      result.add toLower(s[i])
    else:
      result.add s[i]
    inc i

proc checkStyle*(info: TLineInfo, s: string, k: TSymKind) =
  let beau = beautifyName(s, k)
  if s != beau:
    message(info, errGenerated, "name should be: " & beau)

const
  Letters = {'a'..'z', 'A'..'Z', '0'..'9', '\x80'..'\xFF', '_'}

proc identLen(line: string, start: int): int =
  while start+result < line.len and line[start+result] in Letters:
    inc result

proc differ(line: string, a, b: int, x: string): bool =
  let y = line[a..b]
  result = cmpIgnoreStyle(y, x) == 0 and y != x
  when false:
    var j = 0
    for i in a..b:
      if line[i] != x[j]: return true
      inc j
    return false

proc checkDef*(n: PNode; s: PSym) =
  # operators stay as they are:
  if s.kind in {skResult, skTemp} or s.name.s[0] notin Letters: return
  if s.kind in {skType, skGenericParam} and sfAnon in s.flags: return

  if {sfImportc, sfExportc} * s.flags == {} or gCheckExtern:
    checkStyle(n.info, s.name.s, s.kind)

proc checkDef(c: PGen; n: PNode) =
  if n.kind != nkSym: return
  checkDef(n, n.sym)

proc checkUse*(info: TLineInfo; s: PSym) =
  if info.fileIndex < 0: return
  # we simply convert it to what it looks like in the definition
  # for consistency
  
  # operators stay as they are:
  if s.kind in {skResult, skTemp} or s.name.s[0] notin Letters: return
  if s.kind in {skType, skGenericParam} and sfAnon in s.flags: return
  let newName = s.name.s
  
  loadFile(info)
  
  let line = gSourceFiles[info.fileIndex].lines[info.line-1]
  var first = min(info.col.int, line.len)
  if first < 0: return
  #inc first, skipIgnoreCase(line, "proc ", first)
  while first > 0 and line[first-1] in Letters: dec first
  if first < 0: return
  if line[first] == '`': inc first
  
  let last = first+identLen(line, first)-1
  if differ(line, first, last, newName):
    # last-first+1 != newName.len or 
    var x = line.substr(0, first-1) & newName & line.substr(last+1)
    when removeTP:
      # the WinAPI module is full of 'TX = X' which after the substitution
      # becomes 'X = X'. We remove those lines:
      if x.match(peg"\s* {\ident} \s* '=' \s* y$1 ('#' .*)?"):
        x = ""
    
    system.shallowCopy(gSourceFiles[info.fileIndex].lines[info.line-1], x)
    gSourceFiles[info.fileIndex].dirty = true

when false:
  var cannotRename = initIntSet()

  proc beautifyName(s: string, k: TSymKind): string =
    let allUpper = allCharsInSet(s, {'A'..'Z', '0'..'9', '_'})
    result = newStringOfCap(s.len)
    var i = 0
    case k
    of skType, skGenericParam:
      # skip leading 'T'
      when removeTP:
        if s[0] == 'T' and s[1] in {'A'..'Z'}:
          i = 1
      if s =~ ["int", "uint", "cint", "cuint", "clong", "cstring", "string",
               "char", "byte", "bool", "openArray", "seq", "array", "void",
               "pointer", "float", "csize", "cdouble", "cchar", "cschar",
               "cshort", "cu"]:
        result.add s[i]
      else:
        result.add toUpper(s[i])
    of skConst, skEnumField:
      # for 'const' we keep how it's spelt; either upper case or lower case:
      result.add s[0]
    else:
      # as a special rule, don't transform 'L' to 'l'
      if s.len == 1 and s[0] == 'L': result.add 'L'
      else: result.add toLower(s[0])
    inc i
    while i < s.len:
      if s[i] == '_':
        inc i
        result.add toUpper(s[i])
      elif allUpper:
        result.add toLower(s[i])
      else:
        result.add s[i]
      inc i

proc check(c: PGen, n: PNode) =
  case n.kind
  of nkSym: checkUse(n.info, n.sym)
  of nkBlockStmt, nkBlockExpr, nkBlockType:
    checkDef(c, n[0])
    check(c, n.sons[1])
  of nkForStmt, nkParForStmt:
    let L = n.len
    for i in countup(0, L-3):
      checkDef(c, n[i])
    check(c, n[L-2])
    check(c, n[L-1])
  of nkProcDef, nkLambdaKinds, nkMethodDef, nkIteratorDef, nkTemplateDef,
      nkMacroDef, nkConverterDef:
    checkDef(c, n[namePos])
    for i in namePos+1 .. <n.len: check(c, n.sons[i])
  of nkIdentDefs, nkVarTuple:
    let a = n
    checkMinSonsLen(a, 3)
    let L = len(a)
    for j in countup(0, L-3): checkDef(c, a.sons[j])
    check(c, a.sons[L-2])
    check(c, a.sons[L-1])
  of nkTypeSection, nkConstSection:
    for i in countup(0, sonsLen(n) - 1): 
      let a = n.sons[i]
      if a.kind == nkCommentStmt: continue 
      checkSonsLen(a, 3)
      checkDef(c, a.sons[0])
      check(c, a.sons[1])
      check(c, a.sons[2])
  else:
    for i in 0 .. <n.safeLen: check(c, n.sons[i])

proc processSym(c: PPassContext, n: PNode): PNode = 
  result = n
  check(PGen(c), n)

proc myOpen(module: PSym): PPassContext =
  var g: PGen
  new(g)
  g.module = module
  gCheckExtern = options.getConfigVar("pretty.checkextern").normalize == "on"
  result = g
  if rules.isNil:
    rules = newStringTable(modeStyleInsensitive)
    when removeTP:
      # XXX activate when the T/P stuff is deprecated
      let path = joinPath([getPrefixDir(), "config", "rename.rules.cfg"])
      for line in lines(path):
        if line.len > 0:
          let colon = line.find(':')
          if colon > 0:
            rules[line.substr(0, colon-1)] = line.substr(colon+1)
          else:
            rules[line] = line

const prettyPass* = makePass(open = myOpen, process = processSym)
d">"""Add values to be autocompleted by Profanity for a command, or command argument. If the key already exists, Profanity will add the items to the existing autocomplete items for that key. :param key: the prefix to trigger autocompletion :param items: the items to return on autocompletion :type key: str or unicode :type items: list of str or unicode Examples: :: prof.completer_add("/mycommand", [ "action1", "action2", "dosomething" ]) prof.completer_add("/mycommand dosomething", [ "thing1", "thing2" ]) """ pass def completer_remove(key, items): """Remove values from autocompletion for a command, or command argument. :param key: the prefix from which to remove the autocompletion items :param items: the items to remove :type key: str or unicode :type items: list of str or unicode Examples: :: prof.completer_remove("/mycommand", [ "action1", "action2" ]) prof.completer_add("/mycommand dosomething", [ "thing1" ]) """ pass def completer_clear(key): """Remove all values from autocompletion for a command, or command argument. :param key: the prefix from which to clear the autocompletion items Examples: :: prof.completer_clear("/mycommand") prof.completer_add("/mycommand dosomething") """ pass def send_line(line): """Send a line of input to Profanity to execute. :param line: the line to send :type line: str or unicode Example: :: prof.send_line("/who online") """ pass def notify(message, timeout, category): """Send a desktop notification. :param message: the message to display in the notification :param timeout: the length of time before the notification disappears in milliseconds :param category: the category of the notification, also displayed :type message: str or unicode :type timeout: int :type category: str or unicode Example: :: prof.notify("Example notification for 5 seconds", 5000, "Example plugin") """ pass def get_current_recipient(): """Retrieve the Jabber ID of the current chat recipient, when in a chat window. :return: the Jabber ID of the current chat recipient e.g. ``"buddy@chat.org"``, or ``None`` if not in a chat window. :rtype: str """ pass def get_current_muc(): """Retrieve the Jabber ID of the current room, when in a chat room window. :return: the Jabber ID of the current chat room e.g. ``"metalchat@conference.chat.org"``, or ``None`` if not in a chat room window. :rtype: str """ pass def get_current_nick(): """Retrieve the users nickname in a chat room, when in a chat room window. :return: the users nickname in the current chat room e.g. ``"eddie"``, or ``None`` if not in a chat room window. :rtype: str """ pass def get_current_occupants(): """Retrieve nicknames of all occupants in a chat room, when in a chat room window. :return: nicknames of all occupants in the current room or an empty list if not in a chat room window. :rtype: list of str """ pass def current_win_is_console(): """Determine whether or not the Console window is currently focussed. :return: ``True`` if the user is currently in the Console window, ``False`` otherwise. :rtype: boolean """ pass def log_debug(message): """Write to the Profanity log at level ``DEBUG``. :param message: the message to log :type message: str or unicode """ pass def log_info(): """Write to the Profanity log at level ``INFO``. :param message: the message to log :type message: str or unicode """ pass def log_warning(): """Write to the Profanity log at level ``WARNING``. :param message: the message to log :type message: str or unicode """ pass def log_error(): """Write to the Profanity log at level ``ERROR``. :param message: the message to log :type message: str or unicode """ pass def win_exists(tag): """Determine whether or not a plugin window currently exists for the tag. :param tag: The tag used when creating the plugin window :type tag: str or unicode :return: ``True`` if the window exists, ``False`` otherwise. :rtype: boolean Example: :: prof.win_exists("My Plugin") """ pass def win_create(tag, callback): """Create a plugin window. :param tag: The tag used to refer to the window :type tag: str or unicode :param callback: function to call when the window receives input :type callback: function Example: :: prof.win_create("My Plugin", window_handler) """ pass def win_focus(tag): """Focus a plugin window. :param tag: The tag of the window to focus :type tag: str or unicode Example: :: prof.win_focus("My Plugin") """ pass def win_show(tag, message): """Show a message in the plugin window. :param tag: The tag of the window to display the message :type tag: str or unicode :param message: the message to print :type message: str or unicode Example: :: prof.win_show("My Plugin", "This will appear in the plugin window") """ pass def win_show_themed(tag, group, key, default, message): """Show a message in the plugin window, using the specified theme.\n Themes must be specified in ``~/.local/share/profanity/plugin_themes`` :param tag: The tag of the window to display the message :type tag: str or unicode :param group: the group name in the themes file :param key: the item name within the group :param default: default colour if the theme cannot be found :param message: the message to print :type group: str, unicode or None :type key: str, unicode or None :type default: str, unicode or None :type message: str or unicode Example: :: prof.win_show_themed("My Plugin", "myplugin", "text", None, "Plugin themed message") """ pass def send_stanza(stanza): """Send an XMPP stanza :param stanza: An XMPP stanza :type stanza: str or unicode :return: ``True`` if the stanza was sent successfully, ``False`` otherwise :rtype: boolean Example: :: prof.send_stanza("<iq to='juliet@capulet.lit/balcony' id='s2c1' type='get'><ping xmlns='urn:xmpp:ping'/></iq>") """ pass def settings_boolean_get(group, key, default): """Get a boolean setting\n Settings must be specified in ``~/.local/share/profanity/plugin_settings`` :param group: the group name in the settings file :param key: the item name within the group :param default: default value if setting not found :type group: str or unicode :type key: str or unicode :type default: boolean Example: :: prof.settings_get_boolean("myplugin", "notify", False) """ pass def settings_boolean_set(group, key, value): """Set a boolean setting\n Settings must be specified in ``~/.local/share/profanity/plugin_settings`` :param group: the group name in the settings file :param key: the item name within the group :param value: value to set :type group: str or unicode :type key: str or unicode :type value: boolean Example: :: prof.settings_set_boolean("myplugin", "activate", True) """ pass def settings_string_get(group, key, default): """Get a string setting\n Settings must be specified in ``~/.local/share/profanity/plugin_settings`` :param group: the group name in the settings file :param key: the item name within the group :param default: default value if setting not found :type group: str or unicode :type key: str or unicode :type default: str Example: :: prof.settings_get_string("myplugin", "prefix", "prefix-->") """ pass def settings_string_set(group, key, value): """Set a string setting\n Settings must be specified in ``~/.local/share/profanity/plugin_settings`` :param group: the group name in the settings file :param key: the item name within the group :param value: value to set :type group: str or unicode :type key: str or unicode :type value: str Example: :: prof.settings_set_string("myplugin", "prefix", "myplugin, ") """ pass def settings_string_list_get(group, key): """Get a string list setting\n Settings must be specified in ``~/.local/share/profanity/plugin_settings``\n The string list setting items are separated by semicolons. :param group: the group name in the settings file :param key: the item name within the group :type group: str or unicode :type key: str or unicode :return: the list setting :rtype: list of str or unicode Example: :: prof.settings_get_string_list("someplugin", "somelist") """ def settings_string_list_add(group, key, value): """Add an item to a string list setting\n Settings must be specified in ``~/.local/share/profanity/plugin_settings``\n If the list does not exist, a new one will be created with the element added :param group: the group name in the settings file :param key: the item name within the group :param value: item to add :type group: str or unicode :type key: str or unicode :type value: str Example: :: prof.settings_string_list_add("someplugin", "somelist", "anelement") """ def settings_string_list_remove(group, key, value): """Remove an item from a string list setting\n Settings must be specified in ``~/.local/share/profanity/plugin_settings``\n :param group: the group name in the settings file :param key: the item name within the group :param value: item to remove :type group: str or unicode :type key: str or unicode :type value: str :return: ``True`` if the item was removed, or is not in the list, ``False`` if the list does not exist :rtype: boolean Example: :: prof.settings_string_list_remove("someplugin", "somelist", "anelement") """ def settings_string_list_clear(group, key): """Remove all items from a string list setting\n Settings must be specified in ``~/.local/share/profanity/plugin_settings``\n :param group: the group name in the settings file :param key: the item name within the group :type group: str or unicode :type key: str or unicode :return: ``True`` if the list was cleared, ``False`` if the list does not exist :rtype: boolean Example: :: prof.settings_string_list_remove_all("someplugin", "somelist") """ def settings_int_get(group, key, default): """Get an integer setting\n Settings must be specified in ``~/.local/share/profanity/plugin_settings`` :param group: the group name in the settings file :param key: the item name within the group :param default: default value if setting not found :type group: str or unicode :type key: str or unicode :type default: int Example: :: prof.settings_get_int("myplugin", "timeout", 10) """ pass def settings_int_set(group, key, value): """Set an integer setting\n Settings must be specified in ``~/.local/share/profanity/plugin_settings`` :param group: the group name in the settings file :param key: the item name within the group :param value: value to set :type group: str or unicode :type key: str or unicode :type value: int Example: :: prof.settings_set_int("myplugin", "timeout", 100) """ pass def incoming_message(barejid, resource, message): """Trigger incoming message handling, this plugin will make profanity act as if the message has been received :param barejid: Jabber ID of the sender of the message :param resource: resource of the sender of the message :param message: the message text :type barejid: str or unicode :type resource: str or unicode :type message: str or unicode Example: :: prof.incoming_message("bob@server.org", "laptop", "Hello there") """ def disco_add_feature(feature): """Add a service discovery feature the list supported by Profanity.\n If a session is already connected, a presence update will be sent to allow any client/server caches to update their feature list for Profanity :param feature: the service discovery feature to be added :type feature: str Example: :: prof.disco_add_feature("urn:xmpp:omemo:0:devicelist+notify") """ pass