Package org.apache.sling.replication.serialization.impl.vlt

Source Code of org.apache.sling.replication.serialization.impl.vlt.FileVaultReplicationPackage

/*
* 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.sling.replication.serialization.impl.vlt;

import javax.annotation.Nonnull;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.List;

import org.apache.jackrabbit.vault.fs.api.PathFilterSet;
import org.apache.jackrabbit.vault.fs.api.WorkspaceFilter;
import org.apache.jackrabbit.vault.fs.config.DefaultWorkspaceFilter;
import org.apache.jackrabbit.vault.fs.config.MetaInf;
import org.apache.jackrabbit.vault.packaging.VaultPackage;
import org.apache.sling.replication.communication.ReplicationActionType;
import org.apache.sling.replication.packaging.ReplicationPackage;
import org.apache.sling.replication.serialization.impl.AbstractReplicationPackage;

/**
* a FileVault {@link ReplicationPackage}
*/
public class FileVaultReplicationPackage extends AbstractReplicationPackage implements ReplicationPackage {

    private static final long serialVersionUID = 1L;

    private final String id;

    private final String[] paths;

    private final VaultPackage pkg;

    private final String action;

    public FileVaultReplicationPackage(VaultPackage pkg) {
        this.pkg = pkg;
        MetaInf metaInf = pkg.getMetaInf();
        String[] paths = new String[0];
        if (metaInf != null) {
            WorkspaceFilter filter = metaInf.getFilter();
            if (filter == null) {
                filter = new DefaultWorkspaceFilter();
            }
            List<PathFilterSet> filterSets = filter.getFilterSets();
            paths = new String[filterSets.size()];
            for (int i = 0; i < paths.length; i++) {
                paths[i] = filterSets.get(i).getRoot();
            }
        }
        this.paths = paths;
        this.id = pkg.getFile().getAbsolutePath();
        this.action = ReplicationActionType.ADD.toString();
    }

    @Nonnull
    public String getId() {
        return id;
    }

    @Nonnull
    public String[] getPaths() {
        return paths;
    }

    @Nonnull
    public InputStream createInputStream() throws IOException {
        return new FileInputStream(pkg.getFile());
    }

    public long getLength() {
        return pkg.getFile().length();
    }

    @Nonnull
    public String getType() {
        return FileVaultReplicationPackageBuilder.PACKAGING_TYPE;
    }

    @Nonnull
    public String getAction() {
        return action;
    }

    public void close() {
        pkg.close();
    }

    public void delete() {
        close();
        try {
            File file = new File(id);
            if (file.exists()) {
                file.delete();
            }
        } catch (Exception e) {
        }
    }

    @Override
    public String toString() {
        return "FileVaultReplicationPackage{" +
                "id='" + id + '\'' +
                ", paths=" + Arrays.toString(paths) +
                ", pkg=" + pkg +
                ", action='" + action + '\'' +
                '}';
    }
}
TOP

Related Classes of org.apache.sling.replication.serialization.impl.vlt.FileVaultReplicationPackage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.