Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
GitPython/smmap/smmap/buf.py at 3.1.61 · gitpython-developers/GitPython · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
gitpython-developers
/
GitPython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
998
Star
5.2k
Code
Issues
6
Pull requests
1
Discussions
Actions
Security and quality
35
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Files
Expand file tree
3.1.61
Breadcrumbs
GitPython
/
smmap
/
smmap
/
buf.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
143 lines (123 loc) · 5.63 KB
3.1.61
Breadcrumbs
GitPython
/
smmap
/
smmap
/
buf.py
Copy path
Top
File metadata and controls
Code
Blame
143 lines (123 loc) · 5.63 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
"""Module with a simple buffer implementation using the memory manager"""
import
sys
__all__
=
[
"SlidingWindowMapBuffer"
]
class
SlidingWindowMapBuffer
:
"""A buffer like object which allows direct byte-wise object and slicing into
memory of a mapped file. The mapping is controlled by the provided cursor.
The buffer is relative, that is if you map an offset, index 0 will map to the
first byte at the offset you used during initialization or begin_access
**Note:** Although this type effectively hides the fact that there are mapped windows
underneath, it can unfortunately not be used in any non-pure python method which
needs a buffer or string"""
__slots__
=
(
'_c'
,
# our cursor
'_size'
,
# our supposed size
)
def
__init__
(
self
,
cursor
=
None
,
offset
=
0
,
size
=
sys
.
maxsize
,
flags
=
0
):
"""Initialize the instance to operate on the given cursor.
:param cursor: if not None, the associated cursor to the file you want to access
If None, you have call begin_access before using the buffer and provide a cursor
:param offset: absolute offset in bytes
:param size: the total size of the mapping. Defaults to the maximum possible size
From that point on, the __len__ of the buffer will be the given size or the file size.
If the size is larger than the mappable area, you can only access the actually available
area, although the length of the buffer is reported to be your given size.
Hence it is in your own interest to provide a proper size !
:param flags: Additional flags to be passed to os.open
:raise ValueError: if the buffer could not achieve a valid state"""
self
.
_c
=
cursor
if
cursor
and
not
self
.
begin_access
(
cursor
,
offset
,
size
,
flags
):
raise
ValueError
(
"Failed to allocate the buffer - probably the given offset is out of bounds"
)
# END handle offset
def
__del__
(
self
):
self
.
end_access
()
def
__enter__
(
self
):
return
self
def
__exit__
(
self
,
exc_type
,
exc_value
,
traceback
):
self
.
end_access
()
def
__len__
(
self
):
return
self
.
_size
def
__getitem__
(
self
,
i
):
if
isinstance
(
i
,
slice
):
return
self
.
__getslice__
(
i
.
start
or
0
,
i
.
stop
or
self
.
_size
)
c
=
self
.
_c
assert
c
.
is_valid
()
if
i
<
0
:
i
=
self
.
_size
+
i
if
not
c
.
includes_ofs
(
i
):
c
.
use_region
(
i
,
1
)
# END handle region usage
return
c
.
buffer
()[
i
-
c
.
ofs_begin
()]
def
__getslice__
(
self
,
i
,
j
):
c
=
self
.
_c
# fast path, slice fully included - safes a concatenate operation and
# should be the default
assert
c
.
is_valid
()
if
i
<
0
:
i
=
self
.
_size
+
i
if
j
==
sys
.
maxsize
:
j
=
self
.
_size
if
j
<
0
:
j
=
self
.
_size
+
j
if
(
c
.
ofs_begin
()
<=
i
)
and
(
j
<
c
.
ofs_end
()):
b
=
c
.
ofs_begin
()
return
c
.
buffer
()[
i
-
b
:
j
-
b
]
else
:
l
=
j
-
i
# total length
ofs
=
i
# It's fastest to keep tokens and join later, especially in py3, which was 7 times slower
# in the previous iteration of this code
md
=
list
()
while
l
:
c
.
use_region
(
ofs
,
l
)
assert
c
.
is_valid
()
d
=
c
.
buffer
()[:
l
]
ofs
+=
len
(
d
)
l
-=
len
(
d
)
# Make sure we don't keep references, as c.use_region() might attempt to free resources, but
# can't unless we use pure bytes
if
hasattr
(
d
,
'tobytes'
):
d
=
d
.
tobytes
()
md
.
append
(
d
)
# END while there are bytes to read
return
b''
.
join
(
md
)
# END fast or slow path
#{ Interface
def
begin_access
(
self
,
cursor
=
None
,
offset
=
0
,
size
=
sys
.
maxsize
,
flags
=
0
):
"""Call this before the first use of this instance. The method was already
called by the constructor in case sufficient information was provided.
For more information no the parameters, see the __init__ method
:param path: if cursor is None the existing one will be used.
:return: True if the buffer can be used"""
if
cursor
:
self
.
_c
=
cursor
# END update our cursor
# reuse existing cursors if possible
if
self
.
_c
is
not
None
and
self
.
_c
.
is_associated
():
res
=
self
.
_c
.
use_region
(
offset
,
size
,
flags
).
is_valid
()
if
res
:
# if given size is too large or default, we computer a proper size
# If its smaller, we assume the combination between offset and size
# as chosen by the user is correct and use it !
# If not, the user is in trouble.
if
size
>
self
.
_c
.
file_size
():
size
=
self
.
_c
.
file_size
()
-
offset
# END handle size
self
.
_size
=
size
# END set size
return
res
# END use our cursor
return
False
def
end_access
(
self
):
"""Call this method once you are done using the instance. It is automatically
called on destruction, and should be called just in time to allow system
resources to be freed.
Once you called end_access, you must call begin access before reusing this instance!"""
self
.
_size
=
0
if
self
.
_c
is
not
None
:
self
.
_c
.
unuse_region
()
# END unuse region
def
cursor
(
self
):
""":return: the currently set cursor which provides access to the data"""
return
self
.
_c
#}END interface
You can’t perform that action at this time.