mirror of
https://github.com/atom/atom.git
synced 2026-01-25 06:48:28 -05:00
658 lines
19 KiB
CoffeeScript
658 lines
19 KiB
CoffeeScript
_ = require './underscore–extensions'
|
||
telepath = require 'telepath'
|
||
{Point, Range} = telepath
|
||
fsUtils = require './fs-utils'
|
||
File = require './file'
|
||
EventEmitter = require './event-emitter'
|
||
Subscriber = require './subscriber'
|
||
guid = require 'guid'
|
||
|
||
# Private: Represents the contents of a file.
|
||
#
|
||
# The `Buffer` is often associated with a {File}. However, this is not always
|
||
# the case, as a `Buffer` could be an unsaved chunk of text.
|
||
module.exports =
|
||
class TextBuffer
|
||
_.extend @prototype, EventEmitter
|
||
_.extend @prototype, Subscriber
|
||
|
||
@acceptsDocuments: true
|
||
@version: 2
|
||
registerDeserializer(this)
|
||
|
||
@deserialize: (state, params) ->
|
||
new this(state, params)
|
||
|
||
stoppedChangingDelay: 300
|
||
stoppedChangingTimeout: null
|
||
cachedDiskContents: null
|
||
cachedMemoryContents: null
|
||
conflict: false
|
||
file: null
|
||
refcount: 0
|
||
|
||
# Creates a new buffer.
|
||
#
|
||
# path - A {String} representing the file path
|
||
# initialText - A {String} setting the starting text
|
||
constructor: (optionsOrState={}, params={}) ->
|
||
if optionsOrState instanceof telepath.Document
|
||
{@project} = params
|
||
@state = optionsOrState
|
||
@id = @state.get('id')
|
||
filePath = @state.get('relativePath')
|
||
@text = @state.get('text')
|
||
reloadFromDisk = @state.get('isModified') is false
|
||
else
|
||
{@project, filePath, initialText} = optionsOrState
|
||
@text = site.createDocument(initialText ? '', shareStrings: true)
|
||
reloadFromDisk = true
|
||
@id = guid.create().toString()
|
||
@state = site.createDocument
|
||
id: @id
|
||
deserializer: @constructor.name
|
||
version: @constructor.version
|
||
text: @text
|
||
|
||
@subscribe @text, 'changed', @handleTextChange
|
||
@subscribe @text, 'marker-created', (marker) => @trigger 'marker-created', marker
|
||
@subscribe @text, 'markers-updated', => @trigger 'markers-updated'
|
||
|
||
if filePath
|
||
@setPath(@project.resolve(filePath))
|
||
if fsUtils.exists(@getPath())
|
||
@updateCachedDiskContents()
|
||
@reload() if reloadFromDisk and @isModified()
|
||
@text.clearUndoStack()
|
||
|
||
### Internal ###
|
||
|
||
handleTextChange: (event) =>
|
||
@cachedMemoryContents = null
|
||
@conflict = false if @conflict and !@isModified()
|
||
bufferChangeEvent = _.pick(event, 'oldRange', 'newRange', 'oldText', 'newText')
|
||
@trigger 'changed', bufferChangeEvent
|
||
@scheduleModifiedEvents()
|
||
|
||
destroy: ->
|
||
unless @destroyed
|
||
@file?.off()
|
||
@unsubscribe()
|
||
@destroyed = true
|
||
@project?.removeBuffer(this)
|
||
|
||
isRetained: -> @refcount > 0
|
||
|
||
retain: ->
|
||
@refcount++
|
||
this
|
||
|
||
release: ->
|
||
@refcount--
|
||
@destroy() unless @isRetained()
|
||
this
|
||
|
||
serialize: ->
|
||
state = @state.clone()
|
||
state.set('isModified', @isModified())
|
||
for marker in state.get('text').getMarkers() when marker.isRemote()
|
||
marker.destroy()
|
||
state
|
||
|
||
getState: -> @state
|
||
|
||
subscribeToFile: ->
|
||
@file.on "contents-changed", =>
|
||
if @isModified()
|
||
@conflict = true
|
||
@updateCachedDiskContents()
|
||
@trigger "contents-conflicted"
|
||
else
|
||
@reload()
|
||
|
||
@file.on "removed", =>
|
||
@updateCachedDiskContents()
|
||
@triggerModifiedStatusChanged(@isModified())
|
||
|
||
@file.on "moved", =>
|
||
@state.set('relativePath', @project.relativize(@getPath()))
|
||
@trigger "path-changed", this
|
||
|
||
### Public ###
|
||
|
||
# Identifies if the buffer belongs to multiple editors.
|
||
#
|
||
# For example, if the {Editor} was split.
|
||
#
|
||
# Returns a {Boolean}.
|
||
hasMultipleEditors: -> @refcount > 1
|
||
|
||
# Reloads a file in the {EditSession}.
|
||
#
|
||
# Essentially, this performs a force read of the file.
|
||
reload: ->
|
||
@trigger 'will-reload'
|
||
@updateCachedDiskContents()
|
||
@setText(@cachedDiskContents)
|
||
@triggerModifiedStatusChanged(false)
|
||
@trigger 'reloaded'
|
||
|
||
# Rereads the contents of the file, and stores them in the cache.
|
||
#
|
||
# Essentially, this performs a force read of the file on disk.
|
||
updateCachedDiskContents: ->
|
||
@cachedDiskContents = @file.read()
|
||
|
||
# Gets the file's basename--that is, the file without any directory information.
|
||
#
|
||
# Returns a {String}.
|
||
getBaseName: ->
|
||
@file?.getBaseName()
|
||
|
||
# Retrieves the path for the file.
|
||
#
|
||
# Returns a {String}.
|
||
getPath: ->
|
||
@file?.getPath()
|
||
|
||
getUri: ->
|
||
@getRelativePath()
|
||
|
||
getRelativePath: ->
|
||
@state.get('relativePath')
|
||
|
||
setRelativePath: (relativePath) ->
|
||
@setPath(@project.resolve(relativePath))
|
||
|
||
# Sets the path for the file.
|
||
#
|
||
# path - A {String} representing the new file path
|
||
setPath: (path) ->
|
||
return if path == @getPath()
|
||
|
||
@file?.off()
|
||
@file = new File(path)
|
||
@file.read() if @file.exists()
|
||
@subscribeToFile()
|
||
@state.set('relativePath', @project.relativize(path))
|
||
@trigger "path-changed", this
|
||
|
||
# Retrieves the current buffer's file extension.
|
||
#
|
||
# Returns a {String}.
|
||
getExtension: ->
|
||
if @getPath()
|
||
@getPath().split('/').pop().split('.').pop()
|
||
else
|
||
null
|
||
|
||
# Retrieves the cached buffer contents.
|
||
#
|
||
# Returns a {String}.
|
||
getText: ->
|
||
@cachedMemoryContents ?= @getTextInRange(@getRange())
|
||
|
||
# Replaces the current buffer contents.
|
||
#
|
||
# text - A {String} containing the new buffer contents.
|
||
setText: (text) ->
|
||
@change(@getRange(), text, normalizeLineEndings: false)
|
||
|
||
# Gets the range of the buffer contents.
|
||
#
|
||
# Returns a new {Range}, from `[0, 0]` to the end of the buffer.
|
||
getRange: ->
|
||
lastRow = @getLastRow()
|
||
new Range([0, 0], [lastRow, @lineLengthForRow(lastRow)])
|
||
|
||
# Given a range, returns the lines of text within it.
|
||
#
|
||
# range - A {Range} object specifying your points of interest
|
||
#
|
||
# Returns a {String} of the combined lines.
|
||
getTextInRange: (range) ->
|
||
@text.getTextInRange(@clipRange(range))
|
||
|
||
# Gets all the lines in a file.
|
||
#
|
||
# Returns an {Array} of {String}s.
|
||
getLines: ->
|
||
@text.getLines()
|
||
|
||
# Given a row, returns the line of text.
|
||
#
|
||
# row - A {Number} indicating the row.
|
||
#
|
||
# Returns a {String}.
|
||
lineForRow: (row) ->
|
||
@text.lineForRow(row)
|
||
|
||
# Given a row, returns its line ending.
|
||
#
|
||
# row - A {Number} indicating the row.
|
||
#
|
||
# Returns a {String}, or `undefined` if `row` is the final row.
|
||
lineEndingForRow: (row) ->
|
||
@text.lineEndingForRow(row)
|
||
|
||
suggestedLineEndingForRow: (row) ->
|
||
if row is @getLastRow()
|
||
@lineEndingForRow(row - 1)
|
||
else
|
||
@lineEndingForRow(row)
|
||
|
||
# Given a row, returns the length of the line of text.
|
||
#
|
||
# row - A {Number} indicating the row.
|
||
#
|
||
# Returns a {Number}.
|
||
lineLengthForRow: (row) ->
|
||
@text.lineLengthForRow(row)
|
||
|
||
# Given a row, returns the length of the line ending
|
||
#
|
||
# row - A {Number} indicating the row.
|
||
#
|
||
# Returns a {Number}.
|
||
lineEndingLengthForRow: (row) ->
|
||
(@lineEndingForRow(row) ? '').length
|
||
|
||
# Given a buffer row, this retrieves the range for that line.
|
||
#
|
||
# row - A {Number} identifying the row
|
||
# options - A hash with one key, `includeNewline`, which specifies whether you
|
||
# want to include the trailing newline
|
||
#
|
||
# Returns a {Range}.
|
||
rangeForRow: (row, { includeNewline } = {}) ->
|
||
if includeNewline and row < @getLastRow()
|
||
new Range([row, 0], [row + 1, 0])
|
||
else
|
||
new Range([row, 0], [row, @lineLengthForRow(row)])
|
||
|
||
# Gets the number of lines in a file.
|
||
#
|
||
# Returns a {Number}.
|
||
getLineCount: ->
|
||
@text.getLineCount()
|
||
|
||
# Gets the row number of the last line.
|
||
#
|
||
# Returns a {Number}.
|
||
getLastRow: ->
|
||
@getLineCount() - 1
|
||
|
||
# Finds the last line in the current buffer.
|
||
#
|
||
# Returns a {String}.
|
||
getLastLine: ->
|
||
@lineForRow(@getLastRow())
|
||
|
||
# Finds the last point in the current buffer.
|
||
#
|
||
# Returns a {Point} representing the last position.
|
||
getEofPosition: ->
|
||
lastRow = @getLastRow()
|
||
new Point(lastRow, @lineLengthForRow(lastRow))
|
||
|
||
characterIndexForPosition: (position) ->
|
||
@text.indexForPoint(@clipPosition(position))
|
||
|
||
positionForCharacterIndex: (index) ->
|
||
@text.pointForIndex(index)
|
||
|
||
# Given a row, this deletes it from the buffer.
|
||
#
|
||
# row - A {Number} representing the row to delete
|
||
deleteRow: (row) ->
|
||
@deleteRows(row, row)
|
||
|
||
# Deletes a range of rows from the buffer.
|
||
#
|
||
# start - A {Number} representing the starting row
|
||
# end - A {Number} representing the ending row
|
||
deleteRows: (start, end) ->
|
||
startPoint = null
|
||
endPoint = null
|
||
if end == @getLastRow()
|
||
if start > 0
|
||
startPoint = [start - 1, @lineLengthForRow(start - 1)]
|
||
else
|
||
startPoint = [start, 0]
|
||
endPoint = [end, @lineLengthForRow(end)]
|
||
else
|
||
startPoint = [start, 0]
|
||
endPoint = [end + 1, 0]
|
||
@delete(new Range(startPoint, endPoint))
|
||
|
||
# Adds text to the end of the buffer.
|
||
#
|
||
# text - A {String} of text to add
|
||
append: (text) ->
|
||
@insert(@getEofPosition(), text)
|
||
|
||
# Adds text to a specific point in the buffer
|
||
#
|
||
# position - A {Point} in the buffer to insert into
|
||
# text - A {String} of text to add
|
||
insert: (position, text) ->
|
||
@change(new Range(position, position), text)
|
||
|
||
# Deletes text from the buffer
|
||
#
|
||
# range - A {Range} whose text to delete
|
||
delete: (range) ->
|
||
@change(range, '')
|
||
|
||
# Given a position, this clips it to a real position.
|
||
#
|
||
# For example, if `position`'s row exceeds the row count of the buffer,
|
||
# or if its column goes beyond a line's length, this "sanitizes" the value
|
||
# to a real position.
|
||
#
|
||
# Returns the new, clipped {Point}. Note that this could be the same as `position` if no clipping was performed.
|
||
clipPosition: (position) ->
|
||
@text.clipPosition(position)
|
||
|
||
# Given a range, this clips it to a real range.
|
||
#
|
||
# For example, if `range`'s row exceeds the row count of the buffer,
|
||
# or if its column goes beyond a line's length, this "sanitizes" the value
|
||
# to a real range.
|
||
#
|
||
# range - The {Range} to clip
|
||
#
|
||
# Returns the new, clipped {Range}. Note that this could be the same as `range` if no clipping was performed.
|
||
clipRange: (range) ->
|
||
range = Range.fromObject(range)
|
||
new Range(@clipPosition(range.start), @clipPosition(range.end))
|
||
|
||
undo: ->
|
||
@text.undo()
|
||
|
||
redo: ->
|
||
@text.redo()
|
||
|
||
# Saves the buffer.
|
||
save: ->
|
||
@saveAs(@getPath()) if @isModified()
|
||
|
||
# Saves the buffer at a specific path.
|
||
#
|
||
# path - The path to save at.
|
||
saveAs: (path) ->
|
||
unless path then throw new Error("Can't save buffer with no file path")
|
||
|
||
@trigger 'will-be-saved'
|
||
@setPath(path)
|
||
@cachedDiskContents = @getText()
|
||
@file.write(@getText())
|
||
@triggerModifiedStatusChanged(false)
|
||
@trigger 'saved'
|
||
|
||
# Identifies if the buffer was modified.
|
||
#
|
||
# Returns a {Boolean}.
|
||
isModified: ->
|
||
if @file
|
||
@getText() != @cachedDiskContents
|
||
else
|
||
not @isEmpty()
|
||
|
||
# Identifies if a buffer is in a git conflict with `HEAD`.
|
||
#
|
||
# Returns a {Boolean}.
|
||
isInConflict: -> @conflict
|
||
|
||
# Identifies if a buffer is empty.
|
||
#
|
||
# Returns a {Boolean}.
|
||
isEmpty: -> @text.isEmpty()
|
||
|
||
# Returns all valid {StringMarker}s on the buffer.
|
||
getMarkers: ->
|
||
@text.getMarkers()
|
||
|
||
# Returns the {StringMarker} with the given id.
|
||
getMarker: (id) ->
|
||
@text.getMarker(id)
|
||
|
||
destroyMarker: (id) ->
|
||
@getMarker(id)?.destroy()
|
||
|
||
# Public: Finds the first marker satisfying the given attributes
|
||
#
|
||
# Returns a {String} marker-identifier
|
||
findMarker: (attributes) ->
|
||
@text.findMarker(attributes)
|
||
|
||
# Public: Finds all markers satisfying the given attributes
|
||
#
|
||
# attributes - The attributes against which to compare the markers' attributes
|
||
# There are some reserved keys that match against derived marker properties:
|
||
# startRow - The row at which the marker starts
|
||
# endRow - The row at which the marker ends
|
||
#
|
||
# Returns an {Array} of {StringMarker}s
|
||
findMarkers: (attributes) ->
|
||
@text.findMarkers(attributes)
|
||
|
||
# Retrieves the quantity of markers in a buffer.
|
||
#
|
||
# Returns a {Number}.
|
||
getMarkerCount: ->
|
||
@text.getMarkers().length
|
||
|
||
# Constructs a new marker at a given range.
|
||
#
|
||
# range - The marker {Range} (representing the distance between the head and tail)
|
||
# attributes - An optional hash of serializable attributes
|
||
# Any attributes you pass will be associated with the marker and can be retrieved
|
||
# or used in marker queries.
|
||
# The following attribute keys reserved, and control the marker's initial range
|
||
# isReversed - if `true`, the marker is reversed; that is, its head precedes the tail
|
||
# hasTail - if `false`, the marker is created without a tail
|
||
#
|
||
# Returns a {Number} representing the new marker's ID.
|
||
markRange: (range, options={}) ->
|
||
@text.markRange(range, options)
|
||
|
||
# Constructs a new marker at a given position.
|
||
#
|
||
# position - The marker {Point}; there won't be a tail
|
||
# options - Options to pass to the {StringMarker} constructor
|
||
#
|
||
# Returns a {Number} representing the new marker's ID.
|
||
markPosition: (position, options) ->
|
||
@text.markPosition(position, options)
|
||
|
||
# Identifies if a character sequence is within a certain range.
|
||
#
|
||
# regex - The {RegExp} to check
|
||
# startIndex - The starting row {Number}
|
||
# endIndex - The ending row {Number}
|
||
#
|
||
# Returns an {Array} of {RegExp}s, representing the matches.
|
||
matchesInCharacterRange: (regex, startIndex, endIndex) ->
|
||
text = @getText()
|
||
matches = []
|
||
|
||
regex.lastIndex = startIndex
|
||
while match = regex.exec(text)
|
||
matchLength = match[0].length
|
||
matchStartIndex = match.index
|
||
matchEndIndex = matchStartIndex + matchLength
|
||
|
||
if matchEndIndex > endIndex
|
||
regex.lastIndex = 0
|
||
if matchStartIndex < endIndex and submatch = regex.exec(text[matchStartIndex...endIndex])
|
||
submatch.index = matchStartIndex
|
||
matches.push submatch
|
||
break
|
||
|
||
matchEndIndex++ if matchLength is 0
|
||
regex.lastIndex = matchEndIndex
|
||
matches.push match
|
||
|
||
matches
|
||
|
||
# Scans for text in the buffer, calling a function on each match.
|
||
#
|
||
# regex - A {RegExp} representing the text to find
|
||
# iterator - A {Function} that's called on each match
|
||
scan: (regex, iterator) ->
|
||
@scanInRange(regex, @getRange(), iterator)
|
||
|
||
# Scans for text in a given range, calling a function on each match.
|
||
#
|
||
# regex - A {RegExp} representing the text to find
|
||
# range - A {Range} in the buffer to search within
|
||
# iterator - A {Function} that's called on each match
|
||
# reverse - A {Boolean} indicating if the search should be backwards (default: `false`)
|
||
scanInRange: (regex, range, iterator, reverse=false) ->
|
||
range = @clipRange(range)
|
||
global = regex.global
|
||
flags = "gm"
|
||
flags += "i" if regex.ignoreCase
|
||
regex = new RegExp(regex.source, flags)
|
||
|
||
startIndex = @characterIndexForPosition(range.start)
|
||
endIndex = @characterIndexForPosition(range.end)
|
||
|
||
matches = @matchesInCharacterRange(regex, startIndex, endIndex)
|
||
lengthDelta = 0
|
||
|
||
keepLooping = null
|
||
replacementText = null
|
||
stop = -> keepLooping = false
|
||
replace = (text) -> replacementText = text
|
||
|
||
matches.reverse() if reverse
|
||
for match in matches
|
||
matchLength = match[0].length
|
||
matchStartIndex = match.index
|
||
matchEndIndex = matchStartIndex + matchLength
|
||
|
||
startPosition = @positionForCharacterIndex(matchStartIndex + lengthDelta)
|
||
endPosition = @positionForCharacterIndex(matchEndIndex + lengthDelta)
|
||
range = new Range(startPosition, endPosition)
|
||
keepLooping = true
|
||
replacementText = null
|
||
iterator({match, range, stop, replace })
|
||
|
||
if replacementText?
|
||
@change(range, replacementText)
|
||
lengthDelta += replacementText.length - matchLength unless reverse
|
||
|
||
break unless global and keepLooping
|
||
|
||
# Scans for text in a given range _backwards_, calling a function on each match.
|
||
#
|
||
# regex - A {RegExp} representing the text to find
|
||
# range - A {Range} in the buffer to search within
|
||
# iterator - A {Function} that's called on each match
|
||
backwardsScanInRange: (regex, range, iterator) ->
|
||
@scanInRange regex, range, iterator, true
|
||
|
||
# Given a row, identifies if it is blank.
|
||
#
|
||
# row - A row {Number} to check
|
||
#
|
||
# Returns a {Boolean}.
|
||
isRowBlank: (row) ->
|
||
not /\S/.test @lineForRow(row)
|
||
|
||
# Given a row, this finds the next row above it that's empty.
|
||
#
|
||
# startRow - A {Number} identifying the row to start checking at
|
||
#
|
||
# Returns the row {Number} of the first blank row.
|
||
# Returns `null` if there's no other blank row.
|
||
previousNonBlankRow: (startRow) ->
|
||
return null if startRow == 0
|
||
|
||
startRow = Math.min(startRow, @getLastRow())
|
||
for row in [(startRow - 1)..0]
|
||
return row unless @isRowBlank(row)
|
||
null
|
||
|
||
# Given a row, this finds the next row that's blank.
|
||
#
|
||
# startRow - A row {Number} to check
|
||
#
|
||
# Returns the row {Number} of the next blank row.
|
||
# Returns `null` if there's no other blank row.
|
||
nextNonBlankRow: (startRow) ->
|
||
lastRow = @getLastRow()
|
||
if startRow < lastRow
|
||
for row in [(startRow + 1)..lastRow]
|
||
return row unless @isRowBlank(row)
|
||
null
|
||
|
||
# Identifies if the buffer has soft tabs anywhere.
|
||
#
|
||
# Returns a {Boolean},
|
||
usesSoftTabs: ->
|
||
for row in [0..@getLastRow()]
|
||
if match = @lineForRow(row).match(/^\s/)
|
||
return match[0][0] != '\t'
|
||
undefined
|
||
|
||
# Checks out the current `HEAD` revision of the file.
|
||
checkoutHead: ->
|
||
path = @getPath()
|
||
return unless path
|
||
@project.getRepo()?.checkoutHead(path)
|
||
|
||
# Checks to see if a file exists.
|
||
#
|
||
# Returns a {Boolean}.
|
||
fileExists: ->
|
||
@file? && @file.exists()
|
||
|
||
### Internal ###
|
||
|
||
transact: (fn) -> @text.transact fn
|
||
|
||
beginTransaction: -> @text.beginTransaction()
|
||
|
||
commitTransaction: -> @text.commitTransaction()
|
||
|
||
abortTransaction: -> @text.abortTransaction()
|
||
|
||
change: (oldRange, newText, options={}) ->
|
||
oldRange = @clipRange(oldRange)
|
||
newText = @normalizeLineEndings(oldRange.start.row, newText) if options.normalizeLineEndings ? true
|
||
@text.change(oldRange, newText, options)
|
||
|
||
normalizeLineEndings: (startRow, text) ->
|
||
if lineEnding = @suggestedLineEndingForRow(startRow)
|
||
text.replace(/\r?\n/g, lineEnding)
|
||
else
|
||
text
|
||
|
||
scheduleModifiedEvents: ->
|
||
clearTimeout(@stoppedChangingTimeout) if @stoppedChangingTimeout
|
||
stoppedChangingCallback = =>
|
||
@stoppedChangingTimeout = null
|
||
modifiedStatus = @isModified()
|
||
@trigger 'contents-modified', modifiedStatus
|
||
@triggerModifiedStatusChanged(modifiedStatus)
|
||
@stoppedChangingTimeout = setTimeout(stoppedChangingCallback, @stoppedChangingDelay)
|
||
|
||
triggerModifiedStatusChanged: (modifiedStatus) ->
|
||
return if modifiedStatus is @previousModifiedStatus
|
||
@previousModifiedStatus = modifiedStatus
|
||
@trigger 'modified-status-changed', modifiedStatus
|
||
|
||
logLines: (start=0, end=@getLastRow())->
|
||
for row in [start..end]
|
||
line = @lineForRow(row)
|
||
console.log row, line, line.length
|
||
|
||
getDebugSnapshot: ->
|
||
lines = ['Buffer:']
|
||
for row in [0..@getLastRow()]
|
||
lines.push "#{row}: #{@lineForRow(row)}"
|
||
lines.join('\n')
|