org.red5.server.net.rtmp.event.AllocationDebugger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-rmtp-client Show documentation
Show all versions of android-rmtp-client Show documentation
A standalone RTMP client library ported from the Red5 project
The newest version!
package org.red5.server.net.rtmp.event;
/*
* RED5 Open Source Flash Server - http://code.google.com/p/red5/
*
* Copyright (c) 2006-2010 by respective authors (see below). All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation; either version 2.1 of the License, or (at your option) any later
* version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with this library; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
import java.util.Map.Entry;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.atomic.AtomicInteger;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Simple allocation debugger for Event reference counting.
*
* @author The Red5 Project ([email protected])
* @author Steven Gong ([email protected]) on behalf of
* ([email protected])
* @author Paul Gregoire ([email protected])
*/
public class AllocationDebugger {
/**
* Information on references count
*/
private static class Info {
/**
* References count
*/
public AtomicInteger refcount = new AtomicInteger(1);
/** Constructs a new Info. */
public Info() {
}
}
/**
* Allocation debugger istance
*/
private static AllocationDebugger instance = new AllocationDebugger();
/**
* Logger
*/
private Logger log;
/**
* Events-to-information objects map
*/
private ConcurrentMap events;
/**
* Getter for instance
*
* @return Allocation debugger instance
*/
public static AllocationDebugger getInstance() {
return instance;
}
/** Do not instantiate AllocationDebugger. */
private AllocationDebugger() {
log = LoggerFactory.getLogger(getClass());
events = new ConcurrentHashMap();
}
/**
* Add event to map
*
* @param event
* Event
*/
protected void create(BaseEvent event) {
events.put(event, new Info());
}
/**
* Retain event
*
* @param event
* Event
*/
protected void retain(BaseEvent event) {
Info info = events.get(event);
if (info != null) {
info.refcount.incrementAndGet();
} else {
log.warn("Retain called on already released event.");
}
}
/**
* Release event if there's no more references to it
*
* @param event
* Event
*/
protected void release(BaseEvent event) {
Info info = events.get(event);
if (info != null) {
if (info.refcount.decrementAndGet() == 0) {
events.remove(event);
}
} else {
log.warn("Release called on already released event.");
}
}
/**
* Dumps allocations
*/
public synchronized void dump() {
if (log.isDebugEnabled()) {
log.debug("dumping allocations {}", events.size());
for (Entry entry : events.entrySet()) {
log.debug("{} {}", entry.getKey(), entry.getValue().refcount);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy