/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ package org.apache.poi.hslf.model; import org.apache.poi.ddf.EscherContainerRecord; import org.apache.poi.ddf.EscherProperties; import org.apache.poi.ddf.EscherSpRecord; import org.apache.poi.hslf.record.ExEmbed; import org.apache.poi.hslf.record.ExObjList; import org.apache.poi.hslf.record.ExObjRefAtom; import org.apache.poi.hslf.record.HSLFEscherClientDataRecord; import org.apache.poi.hslf.record.Record; import org.apache.poi.hslf.record.RecordTypes; import org.apache.poi.hslf.usermodel.HSLFObjectData; import org.apache.poi.hslf.usermodel.HSLFPictureData; import org.apache.poi.hslf.usermodel.HSLFPictureShape; import org.apache.poi.hslf.usermodel.HSLFShape; import org.apache.poi.hslf.usermodel.HSLFSlideShow; import org.apache.poi.hslf.usermodel.HSLFTextParagraph; import org.apache.poi.sl.usermodel.ShapeContainer; import org.apache.poi.util.POILogFactory; import org.apache.poi.util.POILogger; /** * A shape representing embedded OLE obejct. */ public final class OLEShape extends HSLFPictureShape { private static final POILogger LOG = POILogFactory.getLogger(OLEShape.class); private ExEmbed _exEmbed; /** * Create a new <code>OLEShape</code> * * @param data the picture data */ public OLEShape(HSLFPictureData data){ super(data); } /** * Create a new <code>OLEShape</code> * * @param data the picture data * @param parent the parent shape */ public OLEShape(HSLFPictureData data, ShapeContainer<HSLFShape,HSLFTextParagraph> parent) { super(data, parent); } /** * Create a <code>OLEShape</code> object * * @param escherRecord the <code>EscherSpContainer</code> record which holds information about * this picture in the <code>Slide</code> * @param parent the parent shape of this picture */ public OLEShape(EscherContainerRecord escherRecord, ShapeContainer<HSLFShape,HSLFTextParagraph> parent){ super(escherRecord, parent); } /** * Returns unique identifier for the OLE object. * * @return the unique identifier for the OLE object */ public int getObjectID(){ return getEscherProperty(EscherProperties.BLIP__PICTUREID); } /** * Set the unique identifier for the OLE object and * register it in the necessary structures * * @param objectId the unique identifier for the OLE object */ public void setObjectID(int objectId){ setEscherProperty(EscherProperties.BLIP__PICTUREID, objectId); EscherContainerRecord ecr = getSpContainer(); EscherSpRecord spRecord = ecr.getChildById(EscherSpRecord.RECORD_ID); spRecord.setFlags(spRecord.getFlags()|EscherSpRecord.FLAG_OLESHAPE); HSLFEscherClientDataRecord cldata = getClientData(true); ExObjRefAtom uer = null; for (Record r : cldata.getHSLFChildRecords()) { if (r.getRecordType() == RecordTypes.ExObjRefAtom.typeID) { uer = (ExObjRefAtom)r; break; } } if (uer == null) { uer = new ExObjRefAtom(); cldata.addChild(uer); } uer.setExObjIdRef(objectId); } /** * Returns unique identifier for the OLE object. * * @return the unique identifier for the OLE object */ @SuppressWarnings("resource") public HSLFObjectData getObjectData(){ HSLFSlideShow ppt = getSheet().getSlideShow(); HSLFObjectData[] ole = ppt.getEmbeddedObjects(); //persist reference ExEmbed exEmbed = getExEmbed(); HSLFObjectData data = null; if(exEmbed != null) { int ref = exEmbed.getExOleObjAtom().getObjStgDataRef(); for (int i = 0; i < ole.length; i++) { if(ole[i].getExOleObjStg().getPersistId() == ref) { data=ole[i]; } } } if (data==null) { LOG.log(POILogger.WARN, "OLE data not found"); } return data; } /** * Return the record container for this embedded object. * * <p> * It contains: * 1. ExEmbedAtom.(4045) * 2. ExOleObjAtom (4035) * 3. CString (4026), Instance MenuName (1) used for menus and the Links dialog box. * 4. CString (4026), Instance ProgID (2) that stores the OLE Programmatic Identifier. * A ProgID is a string that uniquely identifies a given object. * 5. CString (4026), Instance ClipboardName (3) that appears in the paste special dialog. * 6. MetaFile( 4033), optional * </p> */ @SuppressWarnings("resource") public ExEmbed getExEmbed(){ if(_exEmbed == null){ HSLFSlideShow ppt = getSheet().getSlideShow(); ExObjList lst = ppt.getDocumentRecord().getExObjList(false); if(lst == null){ LOG.log(POILogger.WARN, "ExObjList not found"); return null; } int id = getObjectID(); Record[] ch = lst.getChildRecords(); for (int i = 0; i < ch.length; i++) { if(ch[i] instanceof ExEmbed){ ExEmbed embd = (ExEmbed)ch[i]; if( embd.getExOleObjAtom().getObjID() == id) _exEmbed = embd; } } } return _exEmbed; } /** * Returns the instance name of the embedded object, e.g. "Document" or "Workbook". * * @return the instance name of the embedded object */ public String getInstanceName(){ ExEmbed ee = getExEmbed(); return (ee == null) ? null : ee.getMenuName(); } /** * Returns the full name of the embedded object, * e.g. "Microsoft Word Document" or "Microsoft Office Excel Worksheet". * * @return the full name of the embedded object */ public String getFullName(){ ExEmbed ee = getExEmbed(); return (ee == null) ? null : ee.getClipboardName(); } /** * Returns the ProgID that stores the OLE Programmatic Identifier. * A ProgID is a string that uniquely identifies a given object, for example, * "Word.Document.8" or "Excel.Sheet.8". * * @return the ProgID */ public String getProgID(){ ExEmbed ee = getExEmbed(); return (ee == null) ? null : ee.getProgId(); } }