aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/file_io.lua
blob: ecfb35e0c0c39044fa5ffb39e774216a11174ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
-- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.

---
-- Provides file input/output routines for Textadept.
-- Opens and saves files and sessions and reads API files.
--
-- Events:
--   file_opened(filename)
--   file_saved_as(filename)
module('textadept.io', package.seeall)

local events = textadept.events

---
-- List of recently opened files.
-- @class table
-- @name recent_files
recent_files = {}

---
-- [Local function] Opens a file or goes to its already open buffer.
-- @param filename The absolute path to the file to open.
local function open_helper(filename)
  if not filename then return end
  for index, buffer in ipairs(textadept.buffers) do
    if filename == buffer.filename then view:goto_buffer(index) return end
  end
  local buffer = textadept.new_buffer()
  local f, err = io.open(filename)
  if f then
    buffer:set_text( f:read('*all') )
    buffer:empty_undo_buffer()
    f:close()
  end
  buffer.filename = filename
  buffer:set_save_point()
  events.handle('file_opened', filename)
  recent_files[#recent_files + 1] = filename
end

---
-- Opens a list of files.
-- @param filenames A '|' separated list of filenames to open. If none
--   specified, the user is prompted to open files from a dialog.
-- @usage textadept.io.open(filename)
function open(filenames)
  filenames = filenames or cocoa_dialog( 'fileselect', {
    title = 'Open',
    text = 'Select a file(s) to open',
    ['select-multiple'] = true,
    ['with-directory'] = (buffer.filename or ''):match('.+/')
  } )
  for filename in filenames:gmatch('[^\n]+') do open_helper(filename) end
end

---
-- Reloads the file in a given buffer.
-- @param buffer The buffer to reload. This must be the currently focused
--   buffer.
-- @usage buffer:reload()
function reload(buffer)
  textadept.check_focused_buffer(buffer)
  if not buffer.filename then return end
  local f, err = io.open(buffer.filename)
  if f then
    local pos = buffer.current_pos
    buffer:set_text( f:read('*all') )
    buffer.current_pos = pos
    buffer:set_save_point()
    f:close()
  end
end

---
-- Saves the current buffer to a file.
-- @param buffer The buffer to save. Its 'filename' property is used as the
--   path of the file to save to. This must be the currently focused buffer.
-- @usage buffer:save()
function save(buffer)
  textadept.check_focused_buffer(buffer)
  if not buffer.filename then return save_as(buffer) end
  prepare = _m.textadept.editing.prepare_for_save
  if prepare then prepare() end
  local f, err = io.open(buffer.filename, 'w')
  if f then
    local txt, _ = buffer:get_text(buffer.length)
    f:write(txt)
    f:close()
    buffer:set_save_point()
  else
    events.error(err)
  end
end

---
-- Saves the current buffer to a file different than its filename property.
-- @param buffer The buffer to save. This must be the currently focused buffer.
-- @filename The new filepath to save the buffer to.
-- @usage buffer:save_as(filename)
function save_as(buffer, filename)
  textadept.check_focused_buffer(buffer)
  if not filename then
    filename = cocoa_dialog( 'filesave', {
      title = 'Save',
      ['with-directory'] = (buffer.filename or ''):match('.+/'),
      ['with-file'] = (buffer.filename or ''):match('[^/]+$'),
      ['no-newline'] = true
    } )
  end
  if #filename > 0 then
    buffer.filename = filename
    buffer:save()
    events.handle('file_saved_as', filename)
  end
end

---
-- Saves all dirty buffers to their respective files.
-- @usage textadept.io.save_all()
function save_all()
  local current_buffer = buffer
  local current_index
  for idx, buffer in ipairs(textadept.buffers) do
    view:goto_buffer(idx)
    if buffer == current_buffer then current_index = idx end
    if buffer.filename and buffer.dirty then buffer:save() end
  end
  view:goto_buffer(current_index)
end

---
-- Closes the current buffer.
-- If the buffer is dirty, the user is prompted to continue. The buffer is not
-- saved automatically. It must be done manually.
-- @param buffer The buffer to close. This must be the currently focused
--   buffer.
-- @usage buffer:close()
function close(buffer)
  textadept.check_focused_buffer(buffer)
  if buffer.dirty and cocoa_dialog( 'yesno-msgbox', {
    title = 'Save?',
    text = 'Save changes before closing?',
    ['informative-text'] = 'You will have to save changes manually.',
    ['no-newline'] = true
  } ) ~= '2' then return false end
  buffer:delete()
  return true
end

---
-- Closes all open buffers.
-- If any buffer is dirty, the user is prompted to continue. No buffers are
-- saved automatically. They must be saved manually.
-- @usage textadept.io.close_all()
function close_all()
  while #textadept.buffers > 1 do
    view:goto_buffer(#textadept.buffers)
    if not buffer:close() then return end
  end
  buffer:close() -- the last one
end

---
-- Loads a Textadept session file.
-- Textadept restores split views, opened buffers, cursor information, and
-- project manager details.
-- @param filename The absolute path to the session file to load. Defaults to
--   $HOME/.ta_session if not specified.
-- @param only_pm Flag indicating whether or not to load only the Project
--   Manager session settings. Defaults to false.
-- @return true if the session file was opened and read; false otherwise.
-- @usage textadept.io.load_session(filename)
function load_session(filename, only_pm)
  if WIN32 then return end -- TODO:
  local textadept = textadept
  local f = io.open(filename or os.getenv('HOME')..'/.ta_session')
  local current_view, splits = 1, { [0] = {} }
  if f then
    for line in f:lines() do
      if not only_pm then
        if line:match('^buffer:') then
          local anchor, current_pos, first_visible_line, filename =
            line:match('^buffer: (%d+) (%d+) (%d+) (.+)$')
          textadept.io.open(filename or '')
          -- Restore saved buffer selection and view.
          local anchor = tonumber(anchor) or 0
          local current_pos = tonumber(current_pos) or 0
          local first_visible_line = tonumber(first_visible_line) or 0
          local buffer = buffer
          buffer._anchor, buffer._current_pos = anchor, current_pos
          buffer._first_visible_line = first_visible_line
          buffer:line_scroll( 0,
            buffer:visible_from_doc_line(first_visible_line) )
          buffer:set_sel(anchor, current_pos)
        elseif line:match('^%s*split%d:') then
          local level, num, type, size =
            line:match('^(%s*)split(%d): (%S+) (%d+)')
          local view =
            splits[#level] and splits[#level][ tonumber(num) ] or view
          splits[#level + 1] = { view:split(type == 'true') }
          splits[#level + 1][1].size = tonumber(size) -- could be 1 or 2
        elseif line:match('^%s*view%d:') then
          local level, num, buf_idx = line:match('^(%s*)view(%d): (%d+)$')
          local view = splits[#level][ tonumber(num) ] or view
          view:goto_buffer( tonumber(buf_idx) )
        elseif line:match('^current_view:') then
          local view_idx, buf_idx = line:match('^current_view: (%d+)')
          current_view = tonumber(view_idx) or 1
        end
      end
      if line:match('^pm:') then
        local width, text = line:match('^pm: (%d+) (.+)$')
        textadept.pm.width = width or 0
        textadept.pm.entry_text = text or ''
        textadept.pm.activate()
      end
    end
    f:close()
    textadept.views[current_view]:focus()
    return true
  end
  return false
end

---
-- Saves a Textadept session to a file.
-- Saves split views, opened buffers, cursor information, and project manager
-- details.
-- @param filename The absolute path to the session file to save. Defaults to
--   $HOME/.ta_session if not specified.
-- @usage textadept.io.save_session(filename)
function save_session(filename)
  if WIN32 then return end -- TODO:
  local session = ''
  local buffer_line = "buffer: %d %d %d %s\n" -- anchor, cursor, line, filename
  local split_line = "%ssplit%d: %s %d\n" -- level, number, type, size
  local view_line = "%sview%d: %d\n" -- level, number, doc index
  -- Write out opened buffers. (buffer: filename)
  local buffer_indices, offset = {}, 0
  for idx, buffer in ipairs(textadept.buffers) do
    if buffer.filename then
      local current = buffer.doc_pointer == textadept.focused_doc_pointer
      local anchor = current and 'anchor' or '_anchor'
      local current_pos = current and 'current_pos' or '_current_pos'
      local first_visible_line = current and 'first_visible_line' or
        '_first_visible_line'
      session = session..
        buffer_line:format(buffer[anchor] or 0, buffer[current_pos] or 0,
        buffer[first_visible_line] or 0, buffer.filename)
      buffer_indices[buffer.doc_pointer] = idx - offset
    else
      offset = offset + 1 -- don't save untitled files in session
    end
  end
  -- Write out split views.
  local function write_split(split, level, number)
    local c1, c2 = split[1], split[2]
    local vertical, size = tostring(split.vertical), split.size
    local spaces = (' '):rep(level)
    session = session..split_line:format(spaces, number, vertical, size)
    spaces = (' '):rep(level + 1)
    if type(c1) == 'table' then
      write_split(c1, level + 1, 1)
    else
      session = session..view_line:format(spaces, 1, c1)
    end
    if type(c2) == 'table' then
      write_split(c2, level + 1, 2)
    else
      session = session..view_line:format(spaces, 2, c2)
    end
  end
  local splits = textadept.get_split_table()
  if type(splits) == 'table' then
    write_split(splits, 0, 0)
  else
    session = session..view_line:format('', 1, splits)
  end
  -- Write out the current focused view.
  local current_view = view
  for idx, view in ipairs(textadept.views) do
    if view == current_view then current_view = idx break end
  end
  session = session..("current_view: %d\n"):format(current_view)
  -- Write out other things.
  local pm = textadept.pm
  session = session..("pm: %d %s\n"):format(pm.width, pm.entry_text)
  -- Write the session.
  local f = io.open(filename or os.getenv('HOME')..'/.ta_session', 'w')
  if f then f:write(session) f:close() end
end

---
-- Reads an API file.
-- Each non-empty line in the API file is structured as follows:
--   identifier (parameters) description
-- Whitespace is optional, but can used for formatting. In description, '\\n'
-- will be interpreted as a newline (\n) character. 'Overloaded' identifiers
-- are handled appropriately.
-- @param filename The absolute path to the API file to read.
-- @param word_chars Characters considered to be word characters for
--   determining the identifier to lookup. Its contents should be in Lua
--   pattern format suitable for the character class construct.
-- @return API table.
-- @usage textadept.io.read_api_file(filename, '%w_')
function read_api_file(filename, word_chars)
  local api = {}
  local f = io.open(filename)
  if f then
    for line in f:lines() do
      local func, params, desc =
        line:match('(['..word_chars..']+)%s*(%b())(.*)$')
      if func and params and desc then
        if not api[func] then api[func] = {} end
        api[func][ #api[func] + 1 ] = { params, desc }
      end
    end
    f:close()
  end
  return api
end