All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.ooxml.dev.OOXMLLister Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   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.ooxml.dev;

import java.io.*;
import java.util.ArrayList;

import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
import org.apache.poi.openxml4j.opc.OPCPackage;
import org.apache.poi.openxml4j.opc.PackageAccess;
import org.apache.poi.openxml4j.opc.PackagePart;
import org.apache.poi.openxml4j.opc.PackageRelationship;
import org.apache.poi.openxml4j.opc.PackageRelationshipCollection;

/**
 * Prints out the contents of a OOXML container.
 * Useful for seeing what parts are defined, and how
 *  they're all related to each other.
 */
public class OOXMLLister implements Closeable {
    private final OPCPackage container;
    private final PrintStream disp;

    public OOXMLLister(OPCPackage container) {
        this(container, System.out);
    }
    public OOXMLLister(OPCPackage container, PrintStream disp) {
        this.container = container;
        this.disp = disp;
    }

    /**
     * Figures out how big a given PackagePart is.
     *
     * @param part the PackagePart
     * @return the size of the PackagePart
     *
     * @throws IOException if the part can't be read
     */
    public static long getSize(PackagePart part) throws IOException {
        try (InputStream in = part.getInputStream()) {
            byte[] b = new byte[8192];
            long size = 0;
            int read = 0;

            while (read > -1) {
                read = in.read(b);
                if (read > 0) {
                    size += read;
                }
            }

            return size;
        }
    }

    /**
     * Displays information on all the different
     *  parts of the OOXML file container.
     * @throws InvalidFormatException if the package relations are invalid
     * @throws IOException if the package can't be read
     */
    public void displayParts() throws InvalidFormatException, IOException {
        ArrayList parts = container.getParts();
        for (PackagePart part : parts) {
            disp.println(part.getPartName());
            disp.println("\t" + part.getContentType());

            if(! part.getPartName().toString().equals("/docProps/core.xml")) {
                disp.println("\t" + getSize(part) + " bytes");
            }

            if(! part.isRelationshipPart()) {
                disp.println("\t" + part.getRelationships().size() + " relations");
                for(PackageRelationship rel : part.getRelationships()) {
                    displayRelation(rel, "\t  ");
                }
            }
        }
    }
    /**
     * Displays information on all the different
     *  relationships between different parts
     *  of the OOXML file container.
     */
    public void displayRelations() {
        PackageRelationshipCollection rels =
                container.getRelationships();
        for (PackageRelationship rel : rels) {
            displayRelation(rel, "");
        }
    }

    private void displayRelation(PackageRelationship rel, String indent) {
        disp.println(indent+"Relationship:");
        disp.println(indent+"\tFrom: "+ rel.getSourceURI());
        disp.println(indent+"\tTo:   " + rel.getTargetURI());
        disp.println(indent+"\tID:   " + rel.getId());
        disp.println(indent+"\tMode: " + rel.getTargetMode());
        disp.println(indent+"\tType: " + rel.getRelationshipType());
    }

    @Override
    public void close() throws IOException {
        container.close();
    }

    public static void main(String[] args) throws IOException, InvalidFormatException {
        if(args.length == 0) {
            System.err.println("Use:");
            System.err.println("\tjava OOXMLLister ");
            System.exit(1);
        }

        File f = new File(args[0]);
        if(! f.exists()) {
            System.err.println("Error, file not found!");
            System.err.println("\t" + f);
            System.exit(2);
        }

        try (OOXMLLister lister = new OOXMLLister(
                OPCPackage.open(f.toString(), PackageAccess.READ)
        )) {
            lister.disp.println(f + "\n");
            lister.displayParts();
            lister.disp.println();
            lister.displayRelations();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy