Adopt odlparent-10.0.0/yangtools-8.0.0-SNAPSHOT
[mdsal.git] / trace / mdsal-trace-impl / src / main / java / org / opendaylight / mdsal / trace / impl / CloseTrackedTrait.java
1 /*
2  * Copyright (c) 2017 Red Hat, Inc. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.trace.impl;
9
10 import static java.util.Objects.requireNonNull;
11
12 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
13 import org.eclipse.jdt.annotation.Nullable;
14
15 /**
16  * Implementation of {@link CloseTracked} which can be used as a field in
17  * another class which implements {@link CloseTracked} and delegates its methods
18  * to this.
19  *
20  * <p>This is useful if that class already has another parent class.
21  * If it does not, then it's typically more convenient to just extend AbstractCloseTracked.
22  *
23  * @author Michael Vorburger.ch
24  */
25 final class CloseTrackedTrait<T extends CloseTracked<T>> implements CloseTracked<T> {
26
27     // NB: It's important that we keep a Throwable here, and not directly the StackTraceElement[] !
28     // This is because creating a new Throwable() is a lot less expensive in terms of runtime overhead
29     // than actually calling its getStackTrace(), which we can delay until we really need to.
30     // see also e.g. https://stackoverflow.com/a/26122232/421602
31     private final @Nullable Throwable allocationContext;
32     private final CloseTrackedRegistry<T> closeTrackedRegistry;
33     private final CloseTracked<T> realCloseTracked;
34
35     CloseTrackedTrait(final CloseTrackedRegistry<T> transactionChainRegistry, final CloseTracked<T> realCloseTracked) {
36         if (transactionChainRegistry.isDebugContextEnabled()) {
37             // NB: We're NOT doing the (expensive) getStackTrace() here just yet (only below)
38             // TODO When we're on Java 9, then instead use the new java.lang.StackWalker API..
39             this.allocationContext = new Throwable();
40         } else {
41             this.allocationContext = null;
42         }
43         this.realCloseTracked = requireNonNull(realCloseTracked, "realCloseTracked");
44         this.closeTrackedRegistry = requireNonNull(transactionChainRegistry, "transactionChainRegistry");
45         this.closeTrackedRegistry.add(this);
46     }
47
48     @Override
49     @SuppressFBWarnings("PZLA_PREFER_ZERO_LENGTH_ARRAYS")
50     public @Nullable StackTraceElement[] getAllocationContextStackTrace() {
51         return allocationContext != null ? allocationContext.getStackTrace() : null;
52     }
53
54     public void removeFromTrackedRegistry() {
55         closeTrackedRegistry.remove(this);
56     }
57
58     @Override
59     public CloseTracked<T> getRealCloseTracked() {
60         return realCloseTracked;
61     }
62 }