Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
GitPython/test/performance/test_streams.py at 3.1.57 · 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.57
Breadcrumbs
GitPython
/
test
/
performance
/
test_streams.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
170 lines (145 loc) · 6.16 KB
3.1.57
Breadcrumbs
GitPython
/
test
/
performance
/
test_streams.py
Copy path
Top
File metadata and controls
Code
Blame
170 lines (145 loc) · 6.16 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# This module is part of GitPython and is released under the
# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
"""Performance tests for data streaming."""
import
gc
import
os
import
os
.
path
as
osp
import
subprocess
import
sys
from
time
import
time
from
gitdb
import
LooseObjectDB
,
IStream
from
gitdb
.
test
.
lib
import
make_memory_file
from
git
.
util
import
bin_to_hex
from
test
.
lib
import
with_rw_repo
from
test
.
performance
.
lib
import
TestBigRepoR
class
TestObjDBPerformance
(
TestBigRepoR
):
large_data_size_bytes
=
1000
*
1000
*
10
# Some MiB should do it.
moderate_data_size_bytes
=
1000
*
1000
*
1
# Just 1 MiB.
@
with_rw_repo
(
"HEAD"
,
bare
=
True
)
def
test_large_data_streaming
(
self
,
rwrepo
):
# TODO: This part overlaps with the same file in
# gitdb.test.performance.test_stream. It should be shared if possible.
ldb
=
LooseObjectDB
(
osp
.
join
(
rwrepo
.
git_dir
,
"objects"
))
for
randomize
in
range
(
2
):
desc
=
(
randomize
and
"random "
)
or
""
print
(
"Creating %s data ..."
%
desc
,
file
=
sys
.
stderr
)
st
=
time
()
size
,
stream
=
make_memory_file
(
self
.
large_data_size_bytes
,
randomize
)
elapsed
=
time
()
-
st
print
(
"Done (in %f s)"
%
elapsed
,
file
=
sys
.
stderr
)
# Writing - due to the compression it will seem faster than it is.
st
=
time
()
binsha
=
ldb
.
store
(
IStream
(
"blob"
,
size
,
stream
)).
binsha
elapsed_add
=
time
()
-
st
assert
ldb
.
has_object
(
binsha
)
db_file
=
ldb
.
readable_db_object_path
(
bin_to_hex
(
binsha
))
fsize_kib
=
osp
.
getsize
(
db_file
)
/
1000
size_kib
=
size
/
1000
msg
=
"Added %i KiB (filesize = %i KiB) of %s data to loose odb in %f s ( %f Write KiB / s)"
msg
%=
(
size_kib
,
fsize_kib
,
desc
,
elapsed_add
,
size_kib
/
elapsed_add
)
print
(
msg
,
file
=
sys
.
stderr
)
# Reading all at once.
st
=
time
()
ostream
=
ldb
.
stream
(
binsha
)
shadata
=
ostream
.
read
()
elapsed_readall
=
time
()
-
st
stream
.
seek
(
0
)
assert
shadata
==
stream
.
getvalue
()
msg
=
"Read %i KiB of %s data at once from loose odb in %f s ( %f Read KiB / s)"
msg
%=
(
size_kib
,
desc
,
elapsed_readall
,
size_kib
/
elapsed_readall
)
print
(
msg
,
file
=
sys
.
stderr
)
# Reading in chunks of 1 MiB.
cs
=
512
*
1000
chunks
=
[]
st
=
time
()
ostream
=
ldb
.
stream
(
binsha
)
while
True
:
data
=
ostream
.
read
(
cs
)
chunks
.
append
(
data
)
if
len
(
data
)
<
cs
:
break
# END read in chunks
elapsed_readchunks
=
time
()
-
st
stream
.
seek
(
0
)
assert
b""
.
join
(
chunks
)
==
stream
.
getvalue
()
cs_kib
=
cs
/
1000
print
(
"Read %i KiB of %s data in %i KiB chunks from loose odb in %f s ( %f Read KiB / s)"
%
(
size_kib
,
desc
,
cs_kib
,
elapsed_readchunks
,
size_kib
/
elapsed_readchunks
,
),
file
=
sys
.
stderr
,
)
# del db file so git has something to do.
ostream
=
None
gc
.
collect
()
os
.
remove
(
db_file
)
# VS. CGIT
##########
# CGIT! Can using the cgit programs be faster?
proc
=
rwrepo
.
git
.
hash_object
(
"-w"
,
"--stdin"
,
as_process
=
True
,
istream
=
subprocess
.
PIPE
)
# Write file - pump everything in at once to be a fast as possible.
data
=
stream
.
getvalue
()
# Cache it.
st
=
time
()
proc
.
stdin
.
write
(
data
)
proc
.
stdin
.
close
()
gitsha
=
proc
.
stdout
.
read
().
strip
()
proc
.
wait
()
gelapsed_add
=
time
()
-
st
del
data
assert
gitsha
==
bin_to_hex
(
binsha
)
# We do it the same way, right?
# As it's the same sha, we reuse our path.
fsize_kib
=
osp
.
getsize
(
db_file
)
/
1000
msg
=
"Added %i KiB (filesize = %i KiB) of %s data to using git-hash-object in %f s ( %f Write KiB / s)"
msg
%=
(
size_kib
,
fsize_kib
,
desc
,
gelapsed_add
,
size_kib
/
gelapsed_add
)
print
(
msg
,
file
=
sys
.
stderr
)
# Compare.
print
(
"Git-Python is %f %% faster than git when adding big %s files"
%
(
100.0
-
(
elapsed_add
/
gelapsed_add
)
*
100
,
desc
),
file
=
sys
.
stderr
,
)
# Read all.
st
=
time
()
_hexsha
,
_typename
,
size
,
data
=
rwrepo
.
git
.
get_object_data
(
gitsha
)
gelapsed_readall
=
time
()
-
st
print
(
"Read %i KiB of %s data at once using git-cat-file in %f s ( %f Read KiB / s)"
%
(
size_kib
,
desc
,
gelapsed_readall
,
size_kib
/
gelapsed_readall
),
file
=
sys
.
stderr
,
)
# Compare.
print
(
"Git-Python is %f %% faster than git when reading big %sfiles"
%
(
100.0
-
(
elapsed_readall
/
gelapsed_readall
)
*
100
,
desc
),
file
=
sys
.
stderr
,
)
# Read chunks.
st
=
time
()
_hexsha
,
_typename
,
size
,
stream
=
rwrepo
.
git
.
stream_object_data
(
gitsha
)
while
True
:
data
=
stream
.
read
(
cs
)
if
len
(
data
)
<
cs
:
break
# END read stream
gelapsed_readchunks
=
time
()
-
st
msg
=
"Read %i KiB of %s data in %i KiB chunks from git-cat-file in %f s ( %f Read KiB / s)"
msg
%=
(
size_kib
,
desc
,
cs_kib
,
gelapsed_readchunks
,
size_kib
/
gelapsed_readchunks
,
)
print
(
msg
,
file
=
sys
.
stderr
)
# Compare.
print
(
"Git-Python is %f %% faster than git when reading big %s files in chunks"
%
(
100.0
-
(
elapsed_readchunks
/
gelapsed_readchunks
)
*
100
,
desc
),
file
=
sys
.
stderr
,
)
# END for each randomization factor
You can’t perform that action at this time.