Arch: stronger handling of errors in IFC export

This commit is contained in:
Yorik van Havre 2014-05-16 21:30:00 -03:00
parent 4906d8965f
commit 44e354bfdd
2 changed files with 23 additions and 11 deletions

View File

@ -470,10 +470,14 @@ class IfcDocument(object):
elt = create(self._fileobject,elttype,[uid(),self._owner,name,description,None,placement,prd,None]+extra)
except:
print "unable to create an ",elttype, " with attributes: ",[uid(),self._owner,name,description,None,placement,prd,None]+extra
print "supported attributes are: "
o = IfcImport.Entity(elttype)
print getPropertyNames(o)
raise
try:
o = IfcImport.Entity(elttype)
print "supported attributes are: "
print getPropertyNames(o)
except:
print "unable to create an element of type '"+elttype+"'"
print "WARNING: skipping object '"+name+"' of type "+elttype
return None
self.BuildingProducts.append(elt)
if not storey:
if self.Storeys:

View File

@ -969,6 +969,9 @@ def export(exportList,filename):
others.append(obj)
objectslist = buildings + floors + others
if DEBUG: print "adding ", len(objectslist), " objects"
global unprocessed
unprocessed = []
# process objects
for obj in objectslist:
@ -995,12 +998,6 @@ def export(exportList,filename):
ifctype = "ReinforcingBar"
if DEBUG: print "adding " + obj.Label + " as Ifc" + ifctype
# writing text log
spacer = ""
for i in range(36-len(obj.Label)):
spacer += " "
txt.append(obj.Label + spacer + ifctype)
# writing IFC data
if obj.isDerivedFrom("App::DocumentObjectGroup"):
@ -1074,7 +1071,15 @@ def export(exportList,filename):
if DEBUG: print " Type ",ifctype," is not supported by the current version of IfcOpenShell. Exporting as IfcBuildingElementProxy instead"
ifctype = "IfcBuildingElementProxy"
extra = ["ELEMENT"]
ifc.addProduct( ifctype, representation, storey=parent, placement=placement, name=name, description=descr, extra=extra )
p = ifc.addProduct( ifctype, representation, storey=parent, placement=placement, name=name, description=descr, extra=extra )
if p:
# writing text log
spacer = ""
for i in range(36-len(obj.Label)):
spacer += " "
txt.append(obj.Label + spacer + ifctype)
else:
unprocessed.append(obj)
else:
if DEBUG: print "IFC export: object type ", otype, " is not supported yet."
@ -1103,6 +1108,9 @@ def export(exportList,filename):
f.close()
FreeCAD.ActiveDocument.recompute()
if unprocessed:
print "Some objects were not exported. See importIFC.unprocessed"
def explore(filename=None):