-
Notifications
You must be signed in to change notification settings - Fork 0
/
MakeCOMServer_old.py
166 lines (157 loc) · 5.43 KB
/
MakeCOMServer_old.py
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
# Copyright (C) 2005, Giovanni Bajo
# Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
import string, os, sys, win32api, Makespec
modspec = """\
%(mod)s.%(klass)s._reg_class_spec_ = "%(mod)s.%(klass)s"
if (not hasattr(%(mod)s.%(klass)s, '_reg_clsctx_') or
%(mod)s.%(klass)s._reg_clsctx_ & pythoncom.CLSCTX_INPROC):
%(mod)s.%(klass)s._reg_options_ = {'InprocServer32':
os.path.abspath(
os.path.join(
os.path.dirname(sys.executable), "%(dllname)s"))}
""" #mod, klass, dllname
tmplt = """\
import sys
import string
import os
inprocess = getattr(sys, 'frozen', None)
%(modimports)s
register = 0
for i in range(1, len(sys.argv)):
arg = sys.argv[i]
if string.find(arg, "reg") > -1:
register = 1
if arg == '/unreg':
sys.argv[i] = '--unregister'
if register:
import pythoncom
pythoncom.frozen = 1
%(modspecs)s
from win32com.server import register
register.UseCommandLine(%(regspecs)s, %(flags)s)
else:
#older Python's need to force this import before pythoncom does it
import win32com.server.policy
if inprocess == 'dll':
pass
else:
import win32com.server.localserver
win32com.server.localserver.main()
""" #modimports, modspecs regspecs, flags
def create(scripts, debug, verbosity, workdir, ascii=0):
infos = [] # (path, module, klasses)
for script in scripts:
infos.append(analscriptname(script))
outfnm = 'drive%s.py' % infos[0][1]
dllname = 'drive%s.dll' % infos[0][1]
if not os.path.exists(workdir):
os.makedirs(workdir)
outfnm = os.path.join(workdir, outfnm)
outf = open(outfnm, 'w')
modspecs = []
regspecs = []
modimports = []
flags = 'debug=0, quiet=%s' % (verbosity==0)
paths = []
for path, module, klasses in infos:
if path:
paths.append(path)
for klass in klasses:
d = { 'mod':module, 'klass':klass, 'dllname':dllname }
modspecs.append(modspec % d)
regspecs.append('%(mod)s.%(klass)s' % d)
modimports.append("import %(mod)s" % d)
for i in range(len(paths)):
path = paths[i]
paths[i] = win32api.GetShortPathName(os.path.normpath(path))
modspecs = string.join(modspecs, '\n')
modimports = string.join(modimports, '\n')
regspecs = string.join(regspecs, ', ')
d = { 'modspecs':modspecs,
'regspecs':regspecs,
'modimports':modimports,
'flags':flags }
outf.write( tmplt % d )
outf.close()
print "**********************************"
print "Driver script %s created" % outfnm
specfnm = Makespec.main([outfnm], console=debug, debug=debug,
workdir=workdir, pathex=paths, comserver=1, ascii=ascii)
print "Spec file %s created" % specfnm
def analscriptname(script):
# return (path, module, klasses)
path, basename = os.path.split(script)
module = os.path.splitext(basename)[0]
while ispkgdir(path):
path, basename = os.path.split(path)
module = '%s.%s' % (basename, module)
try:
__import__(module)
except ImportError:
oldpath = sys.path[:]
sys.path.insert(0, path)
try:
__import__(module)
finally:
sys.path = oldpath
else:
path = None
m = sys.modules[module]
klasses = []
for nm, thing in m.__dict__.items():
if hasattr(thing, '_reg_clsid_'):
klasses.append(nm)
return (path, module, klasses)
def ispkgdir(path):
try:
open(os.path.join(path, '__init__.py'), 'r')
except IOError:
try:
open(os.path.join(path, '__init__.pyc'), 'rb')
except IOError:
return 0
return 1
usage = """\
Usage: python %s [options] <scriptname>.py [<scriptname>.py ...]
--debug -> use debug console build and register COM servers with debug
--verbose -> use verbose flag in COM server registration
--out dir -> generate script and spec file in dir
The next step is to run Build.py against the generated spec file.
See doc/Tutorial.html for details.
"""
if __name__ == '__main__':
#scripts, debug, verbosity, workdir
debug = verbosity = ascii = 0
workdir = '.'
import getopt
opts, args = getopt.getopt(sys.argv[1:], '', ['debug', 'verbose', 'ascii', 'out='])
for opt, val in opts:
if opt == '--debug':
debug = 1
elif opt == '--verbose':
verbosity = 1
elif opt == '--out':
workdir = val
elif opt == '--ascii':
ascii = 1
else:
print usage % sys.argv[0]
sys.exit(1)
if not args:
print usage % sys.argv[0]
else:
create(args, debug, verbosity, workdir, ascii)