
git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
91 lines
3.2 KiB
Python
91 lines
3.2 KiB
Python
# FreeCAD Python script to work with the FCStd file format.
|
|
# (c) 2010 Werner Mayer
|
|
#
|
|
|
|
#***************************************************************************
|
|
#* *
|
|
#* This file is part of the FreeCAD CAx development system. *
|
|
#* *
|
|
#* This program is free software; you can redistribute it and/or modify *
|
|
#* it under the terms of the GNU General Public License (GPL) *
|
|
#* as published by the Free Software Foundation; either version 2 of *
|
|
#* the License, or (at your option) any later version. *
|
|
#* for detail see the LICENCE text file. *
|
|
#* *
|
|
#* FreeCAD 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 Library General Public License for more details. *
|
|
#* *
|
|
#* You should have received a copy of the GNU Library General Public *
|
|
#* License along with FreeCAD; if not, write to the Free Software *
|
|
#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
|
#* USA *
|
|
#* *
|
|
#***************************************************************************
|
|
|
|
#!/usr/bin/python
|
|
import os,sys,string
|
|
import xml.sax
|
|
import xml.sax.handler
|
|
import xml.sax.xmlreader
|
|
import zipfile
|
|
|
|
# SAX handler to parse the Document.xml
|
|
class DocumentHandler(xml.sax.handler.ContentHandler):
|
|
def __init__(self, dirname):
|
|
self.files = []
|
|
self.dirname = dirname
|
|
|
|
def startElement(self, name, attributes):
|
|
item=attributes.get("file")
|
|
if item != None:
|
|
self.files.append(os.path.join(self.dirname,str(item)))
|
|
|
|
def characters(self, data):
|
|
return
|
|
|
|
def endElement(self, name):
|
|
return
|
|
|
|
def extractDocument(filename, outpath):
|
|
zfile=zipfile.ZipFile(filename)
|
|
files=zfile.namelist()
|
|
|
|
for i in files:
|
|
data=zfile.read(i)
|
|
dirs=i.split("/")
|
|
if len(dirs) > 1:
|
|
dirs.pop()
|
|
curpath=outpath
|
|
for j in dirs:
|
|
curpath=curpath+"/"+j
|
|
os.mkdir(curpath)
|
|
output=open(outpath+"/"+i,'wb')
|
|
output.write(data)
|
|
output.close()
|
|
|
|
def createDocument(filename, outpath):
|
|
files=getFilesList(filename)
|
|
compress=zipfile.ZipFile(outpath,'w',zipfile.ZIP_DEFLATED)
|
|
for i in files:
|
|
dirs=os.path.split(i)
|
|
#print i, dirs[-1]
|
|
compress.write(i,dirs[-1],zipfile.ZIP_DEFLATED)
|
|
compress.close()
|
|
|
|
def getFilesList(filename):
|
|
dirname=os.path.dirname(filename)
|
|
handler=DocumentHandler(dirname)
|
|
parser=xml.sax.make_parser()
|
|
parser.setContentHandler(handler)
|
|
parser.parse(filename)
|
|
|
|
files=[]
|
|
files.append(filename)
|
|
files.extend(iter(handler.files))
|
|
dirname=os.path.join(dirname,"GuiDocument.xml")
|
|
if os.path.exists(dirname):
|
|
files.append(dirname)
|
|
return files
|