forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport PR pandas-dev#54534: REF: Move methods that can be shared wi…
…th new string dtype
- Loading branch information
1 parent
08edd64
commit 7272da7
Showing
2 changed files
with
89 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
from __future__ import annotations | ||
|
||
from typing import Literal | ||
|
||
import numpy as np | ||
|
||
from pandas.compat import pa_version_under7p0 | ||
|
||
if not pa_version_under7p0: | ||
import pyarrow as pa | ||
import pyarrow.compute as pc | ||
|
||
|
||
class ArrowStringArrayMixin: | ||
_pa_array = None | ||
|
||
def __init__(self, *args, **kwargs) -> None: | ||
raise NotImplementedError | ||
|
||
def _str_pad( | ||
self, | ||
width: int, | ||
side: Literal["left", "right", "both"] = "left", | ||
fillchar: str = " ", | ||
): | ||
if side == "left": | ||
pa_pad = pc.utf8_lpad | ||
elif side == "right": | ||
pa_pad = pc.utf8_rpad | ||
elif side == "both": | ||
pa_pad = pc.utf8_center | ||
else: | ||
raise ValueError( | ||
f"Invalid side: {side}. Side must be one of 'left', 'right', 'both'" | ||
) | ||
return type(self)(pa_pad(self._pa_array, width=width, padding=fillchar)) | ||
|
||
def _str_get(self, i: int): | ||
lengths = pc.utf8_length(self._pa_array) | ||
if i >= 0: | ||
out_of_bounds = pc.greater_equal(i, lengths) | ||
start = i | ||
stop = i + 1 | ||
step = 1 | ||
else: | ||
out_of_bounds = pc.greater(-i, lengths) | ||
start = i | ||
stop = i - 1 | ||
step = -1 | ||
not_out_of_bounds = pc.invert(out_of_bounds.fill_null(True)) | ||
selected = pc.utf8_slice_codeunits( | ||
self._pa_array, start=start, stop=stop, step=step | ||
) | ||
null_value = pa.scalar( | ||
None, type=self._pa_array.type # type: ignore[attr-defined] | ||
) | ||
result = pc.if_else(not_out_of_bounds, selected, null_value) | ||
return type(self)(result) | ||
|
||
def _str_slice_replace( | ||
self, start: int | None = None, stop: int | None = None, repl: str | None = None | ||
): | ||
if repl is None: | ||
repl = "" | ||
if start is None: | ||
start = 0 | ||
if stop is None: | ||
stop = np.iinfo(np.int64).max | ||
return type(self)(pc.utf8_replace_slice(self._pa_array, start, stop, repl)) | ||
|
||
def _str_capitalize(self): | ||
return type(self)(pc.utf8_capitalize(self._pa_array)) | ||
|
||
def _str_title(self): | ||
return type(self)(pc.utf8_title(self._pa_array)) | ||
|
||
def _str_swapcase(self): | ||
return type(self)(pc.utf8_swapcase(self._pa_array)) | ||
|
||
def _str_removesuffix(self, suffix: str): | ||
ends_with = pc.ends_with(self._pa_array, pattern=suffix) | ||
removed = pc.utf8_slice_codeunits(self._pa_array, 0, stop=-len(suffix)) | ||
result = pc.if_else(ends_with, removed, self._pa_array) | ||
return type(self)(result) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters