/* * Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved. * * Licensed 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 com.hazelcast.security.permission; import com.hazelcast.config.matcher.WildcardConfigPatternMatcher; import java.security.Permission; /** * TODO: Object Permission */ public abstract class InstancePermission extends ClusterPermission { protected static final int NONE = 0; protected static final int CREATE = 1; protected static final int DESTROY = 2; private static final WildcardConfigPatternMatcher CONFIG_PATTERN_MATCHER = new WildcardConfigPatternMatcher(); protected final int mask; protected final String actions; public InstancePermission(String name, String... actions) { super(name); if (name == null || "".equals(name)) { throw new IllegalArgumentException("Permission name is mandatory!"); } mask = initMask(actions); final StringBuilder s = new StringBuilder(); for (String action : actions) { s.append(action).append(" "); } this.actions = s.toString(); } /** * init mask */ protected abstract int initMask(String[] actions); @Override public boolean implies(Permission permission) { if (this.getClass() != permission.getClass()) { return false; } InstancePermission that = (InstancePermission) permission; boolean maskTest = ((this.mask & that.mask) == that.mask); if (!maskTest) { return false; } return CONFIG_PATTERN_MATCHER.matches(getName(), that.getName()); } @Override public String getActions() { return actions; } @Override public int hashCode() { int result = super.hashCode(); result = 31 * result + mask; result = 31 * result + actions.hashCode(); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } InstancePermission other = (InstancePermission) obj; if (getName() == null && other.getName() != null) { return false; } if (!getName().equals(other.getName())) { return false; } if (mask != other.mask) { return false; } return true; } }