Class: Puppet::Pops::Parser::Locator::SubLocator

Inherits:
Puppet::Pops::Parser::Locator show all
Defined in:
lib/puppet/pops/parser/locator.rb

Overview

A Sublocator locates a concrete locator (subspace) in a virtual space. The ‘leading_line_count` is the (virtual) number of lines preceding the first line in the concrete locator. The `leading_offset` is the (virtual) byte offset of the first byte in the concrete locator. The `leading_line_offset` is the (virtual) offset / margin in characters for each line.

This illustrates characters in the sublocator (‘.`) inside the subspace (`X`):

1:XXXXXXXX
2:XXXX.... .. ... ..
3:XXXX. . .... ..
4:XXXX............

This sublocator would be configured with leading_line_count = 1, leading_offset=8, and leading_line_offset=4

Note that leading_offset must be the same for all lines and measured in characters.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Puppet::Pops::Parser::Locator

#line_index, locator

Constructor Details

#initialize(locator, leading_line_count, leading_offset, leading_line_offset) ⇒ SubLocator

Returns a new instance of SubLocator.



80
81
82
83
84
85
# File 'lib/puppet/pops/parser/locator.rb', line 80

def initialize(locator, leading_line_count, leading_offset, leading_line_offset)
  @locator = locator
  @leading_line_count = leading_line_count
  @leading_offset = leading_offset
  @leading_line_offset = leading_line_offset
end

Instance Attribute Details

#leading_line_countObject (readonly)



69
70
71
# File 'lib/puppet/pops/parser/locator.rb', line 69

def leading_line_count
  @leading_line_count
end

#leading_line_offsetObject (readonly)



71
72
73
# File 'lib/puppet/pops/parser/locator.rb', line 71

def leading_line_offset
  @leading_line_offset
end

#leading_offsetObject (readonly)



70
71
72
# File 'lib/puppet/pops/parser/locator.rb', line 70

def leading_offset
  @leading_offset
end

#locatorObject (readonly)



68
69
70
# File 'lib/puppet/pops/parser/locator.rb', line 68

def locator
  @locator
end

Class Method Details

.sub_locator(string, file, leading_line_count, leading_offset, leading_line_offset) ⇒ Object



73
74
75
76
77
78
# File 'lib/puppet/pops/parser/locator.rb', line 73

def self.sub_locator(string, file, leading_line_count, leading_offset, leading_line_offset)
  self.new(Puppet::Pops::Parser::Locator.locator(string, file),
    leading_line_count,
    leading_offset,
    leading_line_offset)
end

Instance Method Details

#char_length(offset, end_offset) ⇒ Object

Given offsets are offsets in the subspace



112
113
114
115
# File 'lib/puppet/pops/parser/locator.rb', line 112

def char_length(offset, end_offset)
  effective_line = @locator.line_for_offset(end_offset) - @locator.line_for_offset(offset)
  locator.char_length(offset, end_offset) + (effective_line * @leading_line_offset)
end

#char_offset(offset) ⇒ Object

Given offset is offset in the subspace



106
107
108
109
# File 'lib/puppet/pops/parser/locator.rb', line 106

def char_offset(offset)
  effective_line = @locator.line_for_offset(offset)
  locator.char_offset(offset) + (effective_line * @leading_line_offset) + @leading_offset
end

#fileObject



87
88
89
# File 'lib/puppet/pops/parser/locator.rb', line 87

def file
  @locator.file
end

#line_for_offset(offset) ⇒ Object

Given offset is offset in the subspace



96
97
98
# File 'lib/puppet/pops/parser/locator.rb', line 96

def line_for_offset(offset)
  @locator.line_for_offset(offset) + @leading_line_count
end

#offset_on_line(offset) ⇒ Object

Given offset is offset in the subspace



101
102
103
# File 'lib/puppet/pops/parser/locator.rb', line 101

def offset_on_line(offset)
  @locator.offset_on_line(offset) + @leading_line_offset
end

#pos_on_line(offset) ⇒ Object



117
118
119
# File 'lib/puppet/pops/parser/locator.rb', line 117

def pos_on_line(offset)
  offset_on_line(offset) +1
end

#stringObject



91
92
93
# File 'lib/puppet/pops/parser/locator.rb', line 91

def string
  @locator.string
end