b1b41319e5527610cf84eb649bcf9db669b099e2
[controller.git] / opendaylight / md-sal / mdsal-trace / dom-impl / src / main / java / org / opendaylight / controller / md / sal / trace / closetracker / 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.controller.md.sal.trace.closetracker.impl;
9
10 import java.util.Objects;
11 import javax.annotation.Nullable;
12
13 /**
14  * Implementation of {@link CloseTracked} which can be used as a field in
15  * another class which implements {@link CloseTracked} and delegates its methods
16  * to this.
17  *
18  * <p>This is useful if that class already has another parent class.
19  * If it does not, then it's typically more convenient to just extend AbstractCloseTracked.
20  *
21  * @author Michael Vorburger.ch
22  */
23 public class CloseTrackedTrait<T extends CloseTracked<T>> implements CloseTracked<T> {
24
25     private final @Nullable Throwable allocationContext;
26     private final CloseTrackedRegistry<T> closeTrackedRegistry;
27     private final CloseTracked<T> realCloseTracked;
28
29     public CloseTrackedTrait(CloseTrackedRegistry<T> transactionChainRegistry, CloseTracked<T> realCloseTracked) {
30         if (transactionChainRegistry.isDebugContextEnabled()) {
31             this.allocationContext = new Throwable("allocated at");
32         } else {
33             this.allocationContext = null;
34         }
35         this.realCloseTracked = Objects.requireNonNull(realCloseTracked, "realCloseTracked");
36         this.closeTrackedRegistry = Objects.requireNonNull(transactionChainRegistry, "transactionChainRegistry");
37         this.closeTrackedRegistry.add(this);
38     }
39
40     @Override
41     public StackTraceElement[] getAllocationContextStackTrace() {
42         return allocationContext != null ? allocationContext.getStackTrace() : null;
43     }
44
45     public void removeFromTrackedRegistry() {
46         closeTrackedRegistry.remove(this);
47     }
48
49     @Override
50     public CloseTracked<T> getRealCloseTracked() {
51         return realCloseTracked;
52     }
53
54 }