io.hops.transaction.context.INodeAttributesContext.java Source code

Java tutorial

Introduction

Here is the source code for io.hops.transaction.context.INodeAttributesContext.java

Source

/**
 * 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 io.hops.transaction.context;

import io.hops.exception.StorageCallPreventedException;
import io.hops.exception.StorageException;
import io.hops.exception.TransactionContextException;
import io.hops.metadata.common.FinderType;
import io.hops.metadata.hdfs.dal.INodeAttributesDataAccess;
import io.hops.metadata.hdfs.entity.INodeCandidatePrimaryKey;
import io.hops.transaction.lock.TransactionLocks;
import org.apache.commons.lang.exception.ExceptionUtils;
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
import org.apache.hadoop.hdfs.server.namenode.FSNamesystem;
import org.apache.hadoop.hdfs.server.namenode.INode;
import org.apache.hadoop.hdfs.server.namenode.INodeAttributes;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;

public class INodeAttributesContext extends BaseEntityContext<Integer, INodeAttributes> {

    private final INodeAttributesDataAccess<INodeAttributes> dataAccess;

    public INodeAttributesContext(INodeAttributesDataAccess<INodeAttributes> dataAccess) {
        this.dataAccess = dataAccess;
    }

    @Override
    public void update(INodeAttributes iNodeAttributes) throws TransactionContextException {
        if (iNodeAttributes.getInodeId() != INode.NON_EXISTING_ID) {
            super.update(iNodeAttributes);
            if (isLogDebugEnabled()) {
                log("updated-attributes", "id", iNodeAttributes.getInodeId(), "DSQ", iNodeAttributes.getDsQuota(),
                        "DS", iNodeAttributes.getDiskspace(), "NSQ", iNodeAttributes.getNsQuota(), "NS",
                        iNodeAttributes.getNsCount());
            }
        } else {
            if (isLogDebugEnabled()) {
                log("updated-attributes -- IGNORED as id is not set");
            }
        }
    }

    @Override
    public void remove(INodeAttributes iNodeAttributes) throws TransactionContextException {
        super.remove(iNodeAttributes);
        if (isLogDebugEnabled()) {
            log("removed-attributes", "id", iNodeAttributes.getInodeId());
            for (int i = 0; i < Thread.currentThread().getStackTrace().length; i++) {
                System.out.println(Thread.currentThread().getStackTrace()[i]);
            }
        }
    }

    @Override
    public INodeAttributes find(FinderType<INodeAttributes> finder, Object... params)
            throws TransactionContextException, StorageException {
        INodeAttributes.Finder qfinder = (INodeAttributes.Finder) finder;
        switch (qfinder) {
        case ByINodeId:
            return findByPrimaryKey(qfinder, params);
        }
        throw new UnsupportedOperationException(UNSUPPORTED_FINDER);
    }

    @Override
    public Collection<INodeAttributes> findList(FinderType<INodeAttributes> finder, Object... params)
            throws TransactionContextException, StorageException {
        INodeAttributes.Finder qfinder = (INodeAttributes.Finder) finder;
        switch (qfinder) {
        case ByINodeIds:
            return findByPrimaryKeys(qfinder, params);
        }
        throw new UnsupportedOperationException(UNSUPPORTED_FINDER);
    }

    @Override
    public void prepare(TransactionLocks tlm) throws TransactionContextException, StorageException {
        Collection<INodeAttributes> modified = new ArrayList<>(getModified());
        modified.addAll(getAdded());
        dataAccess.prepare(modified, getRemoved());
    }

    @Override
    Integer getKey(INodeAttributes iNodeAttributes) {
        return iNodeAttributes.getInodeId();
    }

    @Override
    public void snapshotMaintenance(TransactionContextMaintenanceCmds cmds, Object... params)
            throws TransactionContextException {
        HdfsTransactionContextMaintenanceCmds hopCmds = (HdfsTransactionContextMaintenanceCmds) cmds;
        switch (hopCmds) {
        case INodePKChanged:
            // need to update the rows with updated inodeId or partKey
            INode inodeBeforeChange = (INode) params[0];
            INode inodeAfterChange = (INode) params[1];
            break;
        case Concat:
            INodeCandidatePrimaryKey trg_param = (INodeCandidatePrimaryKey) params[0];
            List<INodeCandidatePrimaryKey> srcs_param = (List<INodeCandidatePrimaryKey>) params[1];
            List<BlockInfo> oldBlks = (List<BlockInfo>) params[2];
            updateAttributes(trg_param, srcs_param);
            break;
        }
    }

    private INodeAttributes findByPrimaryKey(INodeAttributes.Finder qfinder, Object[] params)
            throws StorageCallPreventedException, StorageException {
        final int inodeId = (Integer) params[0];
        INodeAttributes result = null;
        if (contains(inodeId)) {
            result = get(inodeId);
            hit(qfinder, result, "inodeid", inodeId);
        } else {
            aboutToAccessStorage(qfinder, params);
            result = dataAccess.findAttributesByPk(inodeId);
            gotFromDB(inodeId, result);
            miss(qfinder, result, "inodeid", inodeId, "size", size());
        }
        return result;
    }

    private Collection<INodeAttributes> findByPrimaryKeys(INodeAttributes.Finder qfinder, Object[] params)
            throws StorageCallPreventedException, StorageException {
        final List<INodeCandidatePrimaryKey> inodePks = (List<INodeCandidatePrimaryKey>) params[0];
        Collection<INodeAttributes> result = null;
        if (contains(inodePks)) {
            result = get(inodePks);
            hit(qfinder, result, "inodeids", inodePks);
        } else {
            aboutToAccessStorage(qfinder, inodePks);
            result = dataAccess.findAttributesByPkList(inodePks);
            gotFromDB(result);
            miss(qfinder, result, "inodeids", inodePks);
            if (result != null) {
                for (INodeAttributes iNodeAttributes : result) {
                    log("read-attributes", "id", iNodeAttributes.getInodeId(), "DSQ", iNodeAttributes.getDsQuota(),
                            "DS", iNodeAttributes.getDiskspace(), "NSQ", iNodeAttributes.getNsQuota(), "NS",
                            iNodeAttributes.getNsCount());
                }

            }
        }
        return result;
    }

    private boolean contains(List<INodeCandidatePrimaryKey> iNodeCandidatePKs) {
        for (INodeCandidatePrimaryKey pk : iNodeCandidatePKs) {
            if (!contains(pk.getInodeId())) {
                return false;
            }
        }
        return true;
    }

    private Collection<INodeAttributes> get(List<INodeCandidatePrimaryKey> iNodeCandidatePKs) {
        Collection<INodeAttributes> iNodeAttributeses = new ArrayList<>(iNodeCandidatePKs.size());
        for (INodeCandidatePrimaryKey pk : iNodeCandidatePKs) {
            iNodeAttributeses.add(get(pk.getInodeId()));
        }
        return iNodeAttributeses;
    }

    private void updateAttributes(INodeCandidatePrimaryKey trg_param,
            List<INodeCandidatePrimaryKey> toBeDeletedSrcs) throws TransactionContextException {
        toBeDeletedSrcs.remove(trg_param);
        for (INodeCandidatePrimaryKey src : toBeDeletedSrcs) {
            if (contains(src.getInodeId())) {
                INodeAttributes toBeDeleted = get(src.getInodeId());
                INodeAttributes toBeAdded = clone(toBeDeleted, trg_param.getInodeId());

                remove(toBeDeleted);
                if (isLogDebugEnabled()) {
                    log("snapshot-maintenance-removed-inode-attribute", "inodeId", toBeDeleted.getInodeId());
                }

                add(toBeAdded);
                if (isLogDebugEnabled()) {
                    log("snapshot-maintenance-added-inode-attribute", "inodeId", toBeAdded.getInodeId());
                }
            }
        }
    }

    private INodeAttributes clone(INodeAttributes src, int inodeId) {
        return new INodeAttributes(inodeId, src.getNsQuota(), src.getNsCount(), src.getDsQuota(),
                src.getDiskspace());
    }

}