Skip to content
This repository was archived by the owner on Apr 4, 2024. It is now read-only.

Commit 80cb448

Browse files
authored
Trickybrain Creating the LineReader file (#14)
2 parents f90bfaf + ab1fe76 commit 80cb448

File tree

3 files changed

+79
-0
lines changed

3 files changed

+79
-0
lines changed
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import io
2+
3+
4+
class LineReader:
5+
def __init__(self, content: bytes):
6+
self.__buffer = io.BytesIO(content)
7+
self.__uses_unix_newlines = self.__detect_newline_type()
8+
self.__line_count = 0 # Initialize line count
9+
10+
@classmethod
11+
def for_binary(cls, content: bytes):
12+
return cls(content)
13+
14+
@classmethod
15+
def for_string(cls, content: str):
16+
return cls(content.encode("utf-8"))
17+
18+
def __detect_newline_type(self) -> bool:
19+
first_line = self.__buffer.readline()
20+
self.__buffer.seek(0) # Reset buffer for actual reading
21+
return b"\r\n" not in first_line
22+
23+
def unix_newlines(self) -> bool:
24+
return self.__uses_unix_newlines
25+
26+
def read_line(self) -> str:
27+
line_bytes = self.__buffer.readline()
28+
if line_bytes:
29+
self.__line_count += 1 # Increment line count for each line read
30+
line = line_bytes.decode("utf-8")
31+
return line.rstrip("\r\n" if not self.__uses_unix_newlines else "\n")
32+
33+
# Method to get the current line number
34+
def get_line_number(self) -> int:
35+
return self.__line_count
+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
from .LineReader import LineReader as LineReader
12
from .Slice import Slice as Slice
3+
+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
from selfie_lib import LineReader
2+
3+
def test_should_find_unix_separator_from_binary():
4+
reader = LineReader.for_binary(b"This is a new line\n")
5+
assert reader.unix_newlines() is True
6+
assert reader.read_line() == "This is a new line"
7+
8+
def test_should_find_windows_separator_from_binary():
9+
reader = LineReader.for_binary(b"This is a new line\r\n")
10+
assert reader.unix_newlines() is False
11+
assert reader.read_line() == "This is a new line"
12+
13+
def test_should_find_unix_separator_from_string():
14+
reader = LineReader.for_string("This is a new line\n")
15+
assert reader.unix_newlines() is True
16+
assert reader.read_line() == "This is a new line"
17+
18+
def test_should_find_windows_separator_from_string():
19+
reader = LineReader.for_string("This is a new line\r\n")
20+
assert reader.unix_newlines() is False
21+
assert reader.read_line() == "This is a new line"
22+
23+
def test_should_get_unix_line_separator_when_there_is_none():
24+
reader = LineReader.for_binary(b"This is a new line")
25+
assert reader.unix_newlines() is True
26+
assert reader.read_line() == "This is a new line"
27+
28+
def test_should_read_next_line_without_problem():
29+
reader = LineReader.for_binary(b"First\r\nSecond\r\n")
30+
assert reader.unix_newlines() is False
31+
assert reader.read_line() == "First"
32+
assert reader.unix_newlines() is False
33+
assert reader.read_line() == "Second"
34+
assert reader.unix_newlines() is False
35+
36+
def test_should_use_first_line_separator_and_ignore_next():
37+
reader = LineReader.for_binary(b"First\r\nAnother separator\n")
38+
assert reader.unix_newlines() is False
39+
assert reader.read_line() == "First"
40+
assert reader.unix_newlines() is False
41+
assert reader.read_line() == "Another separator"
42+
assert reader.unix_newlines() is False

0 commit comments

Comments
 (0)