Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
eead7c05
Commit
eead7c05
authored
Jul 14, 2004
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
first working implementation
parent
08b98c4c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
7 deletions
+46
-7
lib/python/Products/ZCatalog/ProgressHandler.py
lib/python/Products/ZCatalog/ProgressHandler.py
+30
-4
lib/python/Products/ZCatalog/ZCatalog.py
lib/python/Products/ZCatalog/ZCatalog.py
+16
-3
No files found.
lib/python/Products/ZCatalog/ProgressHandler.py
View file @
eead7c05
...
...
@@ -15,7 +15,34 @@
$Id: ZCatalog.py 25050 2004-05-27 15:06:40Z chrisw $
"""
class
ProgressHandler
:
import
time
,
sys
class
DefaultProgressHandler
:
""" A simple progress handler """
def
__init__
(
self
,
steps
=
100
):
self
.
_steps
=
steps
def
init
(
self
,
ident
,
max
):
self
.
_ident
=
ident
self
.
_max
=
max
self
.
_start
=
time
.
time
()
self
.
fp
=
sys
.
stdout
self
.
output
(
'started'
)
def
finish
(
self
):
self
.
output
(
'terminated. Duration: %0.2f seconds'
%
\
(
time
.
time
()
-
self
.
_start
))
def
report
(
self
,
current
,
*
args
,
**
kw
):
if
current
%
self
.
_steps
==
0
:
self
.
output
(
'%d/%d (%.2f%%)'
%
(
current
,
self
.
_max
,
(
100.0
*
current
/
self
.
_max
)))
def
output
(
self
,
text
):
print
>>
self
.
fp
,
'%s: %s'
%
(
self
.
_ident
,
text
)
class
ProgressMixin
:
""" A simple machinery to provide progres informations for long running
ZCatalog operations like reindexing.
"""
...
...
@@ -23,11 +50,10 @@ class ProgressHandler:
def
pg_register
(
self
,
handler
=
None
):
self
.
_v_pg_handler
=
handler
def
pg_init
(
self
,
max
):
def
pg_init
(
self
,
ident
,
max
):
handler
=
getattr
(
self
,
'_v_pg_handler'
,
None
)
if
not
handler
:
return
handler
.
init
(
max
)
handler
.
init
(
ident
,
max
)
def
pg_finish
(
self
):
handler
=
getattr
(
self
,
'_v_pg_handler'
,
None
)
...
...
lib/python/Products/ZCatalog/ZCatalog.py
View file @
eead7c05
...
...
@@ -38,6 +38,7 @@ from Products.PluginIndexes.TextIndex import Splitter
import
urllib
,
time
,
sys
import
string
,
logging
from
IZCatalog
import
IZCatalog
from
ProgressHandler
import
ProgressMixin
,
DefaultProgressHandler
LOG
=
logging
.
getLogger
(
'Zope.ZCatalog'
)
...
...
@@ -56,7 +57,7 @@ def manage_addZCatalog(self, id, title,
return
self
.
manage_main
(
self
,
REQUEST
,
update_menu
=
1
)
class
ZCatalog
(
Folder
,
Persistent
,
Implicit
):
class
ZCatalog
(
Folder
,
Persistent
,
Implicit
,
ProgressMixin
):
"""ZCatalog object
A ZCatalog contains arbirary index like references to Zope
...
...
@@ -463,13 +464,23 @@ class ZCatalog(Folder, Persistent, Implicit):
def
reindexIndex
(
self
,
name
,
REQUEST
):
if
isinstance
(
name
,
str
):
name
=
(
name
,)
for
p
in
self
.
_catalog
.
uids
.
keys
():
paths
=
self
.
_catalog
.
uids
.
keys
()
num_paths
=
len
(
paths
)
# inefficient
i
=
0
self
.
pg_register
(
DefaultProgressHandler
(
steps
=
10
))
self
.
pg_init
(
'reindexing %s'
%
name
,
num_paths
)
for
p
in
paths
:
i
+=
1
self
.
pg_report
(
i
)
obj
=
self
.
resolve_path
(
p
)
if
not
obj
:
obj
=
self
.
resolve_url
(
p
,
REQUEST
)
if
obj
is
None
:
LOG
.
error
(
'reindexIndex could not resolve '
'an object from the uid %r.'
%
(
uid
)
)
'an object from the uid %r.'
%
p
)
else
:
# don't update metadata when only reindexing a single
# index via the UI
...
...
@@ -487,6 +498,8 @@ class ZCatalog(Folder, Persistent, Implicit):
DeprecationWarning
)
self
.
catalog_object
(
obj
,
p
,
idxs
=
name
)
self
.
pg_finish
()
def
manage_reindexIndex
(
self
,
ids
=
None
,
REQUEST
=
None
,
RESPONSE
=
None
,
URL1
=
None
):
"""Reindex indexe(s) from a ZCatalog"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment