boot/src/main/java/org/apidesign/html/boot/impl/FnContext.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 06 Nov 2013 15:15:54 +0100
changeset 323 86aabecda7a3
parent 322 4a93f2679691
child 335 c74fed864c9c
child 358 80702021b851
permissions -rw-r--r--
Introducing Agent-Class to allow java.lang.instrument-like transforms of the @JavaScriptBody annotation
     1 /**
     2  * HTML via Java(tm) Language Bindings
     3  * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details. apidesign.org
    13  * designates this particular file as subject to the
    14  * "Classpath" exception as provided by apidesign.org
    15  * in the License file that accompanied this code.
    16  *
    17  * You should have received a copy of the GNU General Public License
    18  * along with this program. Look for COPYING file in the top folder.
    19  * If not, see http://wiki.apidesign.org/wiki/GPLwithClassPathException
    20  */
    21 package org.apidesign.html.boot.impl;
    22 
    23 import java.io.Closeable;
    24 import java.io.IOException;
    25 import java.util.logging.Logger;
    26 import org.apidesign.html.boot.spi.Fn;
    27 
    28 /**
    29  *
    30  * @author Jaroslav Tulach <jtulach@netbeans.org>
    31  */
    32 public final class FnContext implements Closeable {
    33     private static final Logger LOG = Logger.getLogger(FnContext.class.getName());
    34 
    35     private Object prev;
    36     private FnContext(Fn.Presenter p) {
    37         this.prev = p;
    38     }
    39 
    40     @Override
    41     public void close() throws IOException {
    42         if (prev != this) {
    43             currentPresenter((Fn.Presenter)prev);
    44             prev = this;
    45         }
    46     }
    47 /*
    48     @Override
    49     protected void finalize() throws Throwable {
    50         if (prev != null) {
    51             LOG.warning("Unclosed context!");
    52         }
    53     }
    54 */
    55     public static Closeable activate(Fn.Presenter newP) {
    56         return new FnContext(currentPresenter(newP));
    57     }
    58     
    59     
    60     private static final ThreadLocal<Fn.Presenter> CURRENT = new ThreadLocal<Fn.Presenter>();
    61 
    62     public static Fn.Presenter currentPresenter(Fn.Presenter p) {
    63         Fn.Presenter prev = CURRENT.get();
    64         CURRENT.set(p);
    65         return prev;
    66     }
    67 
    68     public static Fn.Presenter currentPresenter() {
    69         Fn.Presenter p = CURRENT.get();
    70         if (p == null) {
    71             throw new IllegalStateException("No current WebView context around!");
    72         }
    73         return p;
    74     }
    75     
    76 }