Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2020, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* The Universal Permissive License (UPL), Version 1.0
*
* Subject to the condition set forth below, permission is hereby granted to any
* person obtaining a copy of this software, associated documentation and/or
* data (collectively the "Software"), free of charge and under any and all
* copyright rights in the Software, and any and all patent rights owned or
* freely licensable by each licensor hereunder covering either (i) the
* unmodified Software as contributed to or provided by such licensor, or (ii)
* the Larger Works (as defined below), to deal in both
*
* (a) the Software, and
*
* (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
* one is included with the Software each a "Larger Work" to which the Software
* is contributed by such licensors),
*
* without restriction, including without limitation the rights to copy, create
* derivative works of, display, perform, and distribute the Software and make,
* use, sell, offer for sale, import, export, have made, and have sold the
* Software and the Larger Work(s), and to sublicense the foregoing rights on
* either these or other terms.
*
* This license is subject to the following condition:
*
* The above copyright notice and either this complete permission notice or at a
* minimum a reference to the UPL must be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.oracle.truffle.api.instrumentation;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Deque;
import java.util.Map;
import java.util.WeakHashMap;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import java.util.function.BiConsumer;
import com.oracle.truffle.api.source.Source;
/*
* Lists of sources (executed or loaded, this description further mentions ony loaded sources,
* the same holds for executed) are initialized lazily, and, to prevent deadlocks, new sources
* can be loaded during this lazy initialization and also new bindings can be added at any time.
* In order to guarantee that each binding is notified about each source at most once without
* having to keep track of which binding was notified about which source, the notifications are
* added to a queue and resolving the sources is postponed to a time the notification is
* dequeued. The thread that adds the first notification to the queue is the one that will process them.
* Therefore, the notifications are serialized and the same order of sources for each binding is
* guaranteed. It is also guaranteed that each binding is notified about each source at most
* once and if the binding is added with notify=true, it is notified about each binding
* exactly once.
*/
final class SourceInstrumentationHandler {
/*
* Bindings can only be changed while holding the bindingsLock.writeLock() and read while
* holding the bindingsLock.readLock(); The only exceptions are the hasBindings and
* getBindingsArray methods which can be called without any locks.
*/
private final InstrumentationHandler.CopyOnWriteList> bindings = new InstrumentationHandler.CopyOnWriteList<>(new EventBinding.Source>[0]);
/*
* sources, sourcesList, notifications can only be accessed while holding the
* bindingsLock.writeLock() or while holding the bindingsLock.readLock() and sources lock.
*/
private final WeakHashMap