Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
0f22342c
Commit
0f22342c
authored
Jan 22, 2003
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Script to create a ZEO instance.
parent
17c3f482
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
152 additions
and
0 deletions
+152
-0
src/ZEO/mkzeoinst.py
src/ZEO/mkzeoinst.py
+152
-0
No files found.
src/ZEO/mkzeoinst.py
0 → 100755
View file @
0f22342c
#!python
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
#
##############################################################################
"""mkzeoinst.py -- create a ZEO instance.
Usage: mkzeoinst.py home [port]
Given an "instance home directory" <home> and some configuration options (all
of which have default values), create the following:
<home>/etc/zeo.conf -- ZEO config file with default values filled in
<home>/etc/runner.conf -- ZEO config file with default values filled in
<home>/var/ -- Directory for Data.fs
<home>/log/ -- Directory for log files: zeo.log and runner.log
<home>/bin/zeoctl -- start/stop script (a shim for zdctl.py)
The script will not overwrite existing files; instead, it will issue a
warning if an existing file is found that differs from the file that
would be written if it didn't exist.
"""
import
os
import
sys
import
stat
import
getopt
zeo_conf_template
=
"""# ZEO configuration file
<zeo>
address %(port)d
read-only false
invalidation-queue-size 100
# monitor-address PORT
# transaction-timeout SECONDS
</zeo>
<filestorage 1>
path %(home)s/var/Data.fs
</filestorage>
<logger>
level info
<logfile>
path %(home)s/log/zeo.log
</logfile>
</logger>
"""
runner_conf_template
=
"""# runner configuration file
<runner>
program %(runzeo)s -C %(home)s/etc/zeo.conf
</runner>
"""
zeoctl_template
=
"""#!/bin/sh
# ZEO instance start script
exec %(zdctl)s -C %(home)s/etc/runner.conf ${1+"$@"}
"""
def
main
():
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
""
)
except
getopt
.
error
,
msg
:
print
msg
sys
.
exit
(
2
)
if
len
(
args
)
not
in
[
1
,
2
]:
print
"Usage: mkzeoinst.py home [port]"
sys
.
exit
(
2
)
home
=
sys
.
argv
[
1
]
if
sys
.
argv
[
2
:]:
port
=
int
(
sys
.
argv
[
2
])
else
:
port
=
9999
makedir
(
home
)
makedir
(
home
,
"etc"
)
makedir
(
home
,
"var"
)
makedir
(
home
,
"log"
)
makedir
(
home
,
"bin"
)
makefile
(
zeo_conf_template
,
home
,
"etc"
,
"zeo.conf"
,
home
=
home
,
port
=
port
)
makefile
(
runner_conf_template
,
home
,
"etc"
,
"runner.conf"
,
home
=
home
,
runzeo
=
which
(
"runzeo.py"
))
makexfile
(
zeoctl_template
,
home
,
"bin"
,
"zeoctl"
,
home
=
home
,
python
=
sys
.
executable
,
zdctl
=
which
(
"zdctl.py"
))
print
"All done."
def
which
(
program
):
strpath
=
os
.
getenv
(
"PATH"
)
binpath
=
strpath
.
split
(
os
.
pathsep
)
for
dir
in
binpath
:
path
=
os
.
path
.
join
(
dir
,
program
)
if
os
.
path
.
isfile
(
path
)
and
os
.
access
(
path
,
os
.
X_OK
):
return
path
raise
IOError
,
"can't find %r on path %r"
%
(
program
,
strpath
)
def
makedir
(
*
args
):
path
=
""
for
arg
in
args
:
path
=
os
.
path
.
join
(
path
,
arg
)
mkdirs
(
path
)
return
path
def
mkdirs
(
path
):
if
os
.
path
.
isdir
(
path
):
return
head
,
tail
=
os
.
path
.
split
(
path
)
if
head
and
tail
and
not
os
.
path
.
isdir
(
head
):
mkdirs
(
head
)
os
.
mkdir
(
path
)
print
"Created directory"
,
path
def
makefile
(
template
,
*
args
,
**
kwds
):
path
=
makedir
(
*
args
[:
-
1
])
path
=
os
.
path
.
join
(
path
,
args
[
-
1
])
data
=
template
%
kwds
if
os
.
path
.
exists
(
path
):
f
=
open
(
path
)
olddata
=
f
.
read
().
strip
()
f
.
close
()
if
olddata
:
if
olddata
!=
data
.
strip
():
print
"Warning: not overwriting existing file %r"
%
path
return
path
f
=
open
(
path
,
"w"
)
f
.
write
(
data
)
f
.
close
()
print
"Wrote file"
,
path
return
path
def
makexfile
(
template
,
*
args
,
**
kwds
):
path
=
makefile
(
template
,
*
args
,
**
kwds
)
umask
=
os
.
umask
(
022
)
os
.
umask
(
umask
)
mode
=
0777
&
~
umask
if
stat
.
S_IMODE
(
os
.
stat
(
path
)[
stat
.
ST_MODE
])
!=
mode
:
os
.
chmod
(
path
,
mode
)
print
"Changed mode for %s to %o"
%
(
path
,
mode
)
return
path
if
__name__
==
"__main__"
:
main
()
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