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

com.google.errorprone.bugpatterns.threadsafety.HeldLockSet Maven / Gradle / Ivy

There is a newer version: 2.28.0
Show newest version
/*
 * Copyright 2014 The Error Prone Authors.
 *
 * 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.google.errorprone.bugpatterns.threadsafety;

import com.google.errorprone.annotations.CheckReturnValue;
import java.util.Collection;
import org.pcollections.Empty;
import org.pcollections.PSet;

/**
 * A set of held locks.
 *
 * 

Wrapper around a {@link PSet} of {@link GuardedByExpression}s. Using a persistent collection * makes it easy to handle adding locks to the set only while visiting the scope where those locks * are held, without mutating the underlying collection. * * @author [email protected] (Liam Miller-Cushon) */ class HeldLockSet { final PSet locks; private HeldLockSet() { this(Empty.set()); } private HeldLockSet(PSet locks) { this.locks = locks; } static HeldLockSet empty() { return new HeldLockSet(); } @CheckReturnValue public HeldLockSet plus(GuardedByExpression lock) { return new HeldLockSet(locks.plus(lock)); } @CheckReturnValue public HeldLockSet plusAll(Collection locks) { return new HeldLockSet(this.locks.plusAll(locks)); } public Collection allLocks() { return locks; } @Override public String toString() { return locks.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy