Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mercurial-devel
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
mercurial-devel
Commits
bdac214a
Commit
bdac214a
authored
12 years ago
by
Pierre-Yves David
Browse files
Options
Downloads
Patches
Plain Diff
obsolete: obsstore.add now takes a list of markers.
This allow efficient IO and it greatly simplify the merging of markers.
parent
494a970f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mercurial/obsolete.py
+21
-21
21 additions, 21 deletions
mercurial/obsolete.py
with
21 additions
and
21 deletions
mercurial/obsolete.py
+
21
−
21
View file @
bdac214a
...
...
@@ -164,8 +164,7 @@
self
.
sopener
=
sopener
data
=
sopener
.
tryread
(
'
obsstore
'
)
if
data
:
for
marker
in
_readmarkers
(
data
):
self
.
_load
(
marker
)
self
.
_load
(
_readmarkers
(
data
))
def
__iter__
(
self
):
return
iter
(
self
.
_all
)
...
...
@@ -188,5 +187,8 @@
if
len
(
succ
)
!=
20
:
raise
ValueError
(
succ
)
marker
=
(
str
(
prec
),
tuple
(
succs
),
int
(
flag
),
encodemeta
(
metadata
))
self
.
add
(
transaction
,
marker
)
self
.
add
(
transaction
,
[
marker
])
def
add
(
self
,
transaction
,
markers
):
"""
Add new markers to the store
...
...
@@ -192,7 +194,8 @@
def
add
(
self
,
transaction
,
marker
):
"""
Add a new marker to the store
"""
if
marker
not
in
self
.
_all
:
Take care of filtering duplicate.
Return the number of new marker.
"""
new
=
[
m
for
m
in
markers
if
m
not
in
self
.
_all
]
if
new
:
f
=
self
.
sopener
(
'
obsstore
'
,
'
ab
'
)
try
:
# Whether the file's current position is at the begin or at
...
...
@@ -204,9 +207,9 @@
offset
=
f
.
tell
()
transaction
.
add
(
'
obsstore
'
,
offset
)
# offset == 0: new file - add the version header
for
bytes
in
_encodemarkers
(
[
marker
]
,
offset
==
0
):
for
bytes
in
_encodemarkers
(
new
,
offset
==
0
):
f
.
write
(
bytes
)
finally
:
# XXX: f.close() == filecache invalidation == obsstore rebuilt.
# call 'filecacheentry.refresh()' here
f
.
close
()
...
...
@@ -208,8 +211,9 @@
f
.
write
(
bytes
)
finally
:
# XXX: f.close() == filecache invalidation == obsstore rebuilt.
# call 'filecacheentry.refresh()' here
f
.
close
()
self
.
_load
(
marker
)
self
.
_load
(
new
)
return
len
(
new
)
def
mergemarkers
(
self
,
transation
,
data
):
...
...
@@ -214,10 +218,5 @@
def
mergemarkers
(
self
,
transation
,
data
):
other
=
_readmarkers
(
data
)
local
=
set
(
self
.
_all
)
new
=
[
m
for
m
in
other
if
m
not
in
local
]
for
marker
in
new
:
# XXX: N marker == N x (open, write, close)
# we should write them all at once
self
.
add
(
transation
,
marker
)
markers
=
_readmarkers
(
data
)
self
.
add
(
transation
,
markers
)
...
...
@@ -223,10 +222,11 @@
def
_load
(
self
,
marker
):
self
.
_all
.
append
(
marker
)
pre
,
sucs
=
marker
[:
2
]
self
.
precursors
.
setdefault
(
pre
,
set
()).
add
(
marker
)
for
suc
in
sucs
:
self
.
successors
.
setdefault
(
suc
,
set
()).
add
(
marker
)
def
_load
(
self
,
markers
):
for
mark
in
markers
:
self
.
_all
.
append
(
mark
)
pre
,
sucs
=
mark
[:
2
]
self
.
precursors
.
setdefault
(
pre
,
set
()).
add
(
mark
)
for
suc
in
sucs
:
self
.
successors
.
setdefault
(
suc
,
set
()).
add
(
mark
)
def
_encodemarkers
(
markers
,
addheader
=
False
):
# Kept separate from flushmarkers(), it will be reused for
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment