[Zope-CVS] CVS: Products/ExternalEditor/Plugins - powerpnt.py:1.1
Casey Duncan
casey@zope.com
Fri, 29 Nov 2002 00:47:56 -0500
Update of /cvs-repository/Products/ExternalEditor/Plugins
In directory cvs.zope.org:/tmp/cvs-serv17488
Added Files:
powerpnt.py
Log Message:
Added Powerpoint plugin
=== Added File Products/ExternalEditor/Plugins/powerpnt.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 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.
#
##############################################################################
"""External Editor MSPowerpoint Plugin
$Id: powerpnt.py,v 1.1 2002/11/29 05:47:56 caseman Exp $
"""
import os
from time import sleep
import win32com
from win32com import client # Initialize Client module
class EditorProcess:
def __init__(self, file):
"""Launch editor process"""
ppt = win32com.client.Dispatch('Powerpoint.Application')
# Try to open the file, keep retrying until we succeed or timeout
i = 0
timeout = 45
while i < timeout:
try:
ppt.Presentations.Open(file)
except:
i += 1
if i >= timeout:
raise RuntimeError('Could not launch Powerpoint.')
sleep(1)
else:
break
self.powerpntapp = ppt
self.file = file
def wait(self, timeout):
"""Wait for editor to exit or until timeout"""
sleep(timeout)
def isAlive(self):
"""Returns true if the editor process is still alive"""
head, tail = os.path.split(self.file)
head, tail = head.lower(), tail.lower()
for doc in self.powerpntapp.Presentations:
if head == doc.Path.lower() and tail == doc.Name.lower():
return 1
return 0
def test():
import os
from time import sleep
from tempfile import mktemp
fn = 'c:\\program files\\microsoft office\\office10\\1033\\quikanim.ppt'
print 'Connecting to Powerpoint...'
f = EditorProcess(fn)
print 'Attached to %s %s' % (`f.powerpntapp`, f.powerpntapp.Version)
print ('%s is open...' % fn),
if f.isAlive():
print 'yes'
print 'Test Passed.'
else:
print 'no'
print 'Test Failed.'
if __name__ == '__main__':
test()