Fix seeking for buffered input (#1145)
authorAndres Noetzli <andres.noetzli@gmail.com>
Wed, 27 Sep 2017 07:43:30 +0000 (00:43 -0700)
committerGitHub <noreply@github.com>
Wed, 27 Sep 2017 07:43:30 +0000 (00:43 -0700)
commit2567868bdf5664e95f998e76512c84d2c63f09a2
tree2ddbfc324bf04fed2d45aaaecf9aae10510ae063
parentf82e4308d1f1b8cc033ca6bfd70e707e4695a47d
Fix seeking for buffered input (#1145)

CVC4's implementation of seek was calculating the pointer difference
between the current position in the input and the seek point to
determine how many characters to consume. This was causing problems when
ANTLR was seeking to a pointer on a line after the current line because
it would result in a big number of characters to consume because each
line is allocated separately.  This resulted in issue #1113, where CVC4
was computing a large number of characters to consume and would block
until it received all of them.  This commit fixes and simplifies the
code by simply consuming characters until the seek point is reached
without computing a count beforehand.
src/parser/antlr_line_buffered_input.cpp