Codebase list jd-gui / beb5dc6 services / src / main / java / org / jd / gui / service / treenode / ZipFileTreeNodeFactoryProvider.java
beb5dc6

Tree @beb5dc6 (Download .tar.gz)

ZipFileTreeNodeFactoryProvider.java @beb5dc6raw · history · blame

/*
 * Copyright (c) 2008-2019 Emmanuel Dupuy.
 * This project is distributed under the GPLv3 license.
 * This is a Copyleft license that gives the user the right to use,
 * copy and modify the code freely for non-commercial purposes.
 */

package org.jd.gui.service.treenode;

import org.jd.gui.api.API;
import org.jd.gui.api.feature.ContainerEntryGettable;
import org.jd.gui.api.feature.UriGettable;
import org.jd.gui.api.model.Container;
import org.jd.gui.spi.TreeNodeFactory;
import org.jd.gui.view.data.TreeNodeBean;

import javax.swing.*;
import javax.swing.tree.DefaultMutableTreeNode;
import java.io.File;

public class ZipFileTreeNodeFactoryProvider extends DirectoryTreeNodeFactoryProvider {
    protected static final ImageIcon ICON = new ImageIcon(ZipFileTreeNodeFactoryProvider.class.getClassLoader().getResource("org/jd/gui/images/zip_obj.png"));

    @Override public String[] getSelectors() { return appendSelectors("*:file:*.zip", "*:file:*.aar"); }

    @Override
    @SuppressWarnings("unchecked")
    public <T extends DefaultMutableTreeNode & ContainerEntryGettable & UriGettable> T make(API api, Container.Entry entry) {
        int lastSlashIndex = entry.getPath().lastIndexOf("/");
        String label = entry.getPath().substring(lastSlashIndex+1);
        String location = new File(entry.getUri()).getPath();
        T node = (T)new TreeNode(entry, new TreeNodeBean(label, "Location: " + location, ICON));
        // Add dummy node
        node.add(new DefaultMutableTreeNode());
        return node;
    }

    protected static class TreeNode extends DirectoryTreeNodeFactoryProvider.TreeNode {
        public TreeNode(Container.Entry entry, Object userObject) {
            super(entry, userObject);
        }

        // --- TreeNodeExpandable --- //
        public void populateTreeNode(API api) {
            if (!initialized) {
                removeAllChildren();

                for (Container.Entry e : getChildren()) {
                    TreeNodeFactory factory = api.getTreeNodeFactory(e);
                    if (factory != null) {
                        add(factory.make(api, e));
                    }
                }

                initialized = true;
            }
        }
    }
}