![JAR search and dependency download from the Maven repository](/logo.png)
org.freedesktop.dbus.EfficientQueue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbus-java Show documentation
Show all versions of dbus-java Show documentation
Slightly improved version of the Java DBus library
provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/).
Changes:
- Fixed lot's of Java warnings
- Fixed broken 'Gettext' feature (Exceptions on unsupported languages, usage of "_" as method name).
- Renamed some classes/methods/variables to comply with Java naming scheme.
- Removed usage of proprietary logger and replaced it with sl4fj.
- Renamed/refactored some parts to be more 'Java' like (e.g. naming, shadowing)
- Fixed problems with DbusConnection.getConnection(SESSION) when using display export (e.g. SSH X11 forward)
/*
D-Bus Java Implementation
Copyright (c) 2005-2006 Matthew Johnson
This program is free software; you can redistribute it and/or modify it
under the terms of either the GNU Lesser General Public License Version 2 or the
Academic Free Licence Version 2.1.
Full licence texts are included in the COPYING file with this program.
*/
package org.freedesktop.dbus;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Provides a Message queue which doesn't allocate objects
* on insertion/removal. */
class EfficientQueue {
private final Logger logger = LoggerFactory.getLogger(getClass());
private Message[] mv;
private int start;
private int end;
private int initSize;
EfficientQueue(int _initialSize) {
initSize = _initialSize;
shrink();
}
private void grow() {
logger.debug("Growing");
// create new vectors twice as long
Message[] oldmv = mv;
mv = new Message[oldmv.length * 2];
// copy start->length to the start of the new vector
System.arraycopy(oldmv, start, mv, 0, oldmv.length - start);
// copy 0->end to the next part of the new vector
if (end != (oldmv.length - 1)) {
System.arraycopy(oldmv, 0, mv, oldmv.length - start, end + 1);
}
// reposition pointers
start = 0;
end = oldmv.length;
}
// create a new vector with just the valid keys in and return it
public Message[] getKeys() {
if (start == end) {
return new Message[0];
}
Message[] lv;
if (start < end) {
int size = end - start;
lv = new Message[size];
System.arraycopy(mv, start, lv, 0, size);
} else {
int size = mv.length - start + end;
lv = new Message[size];
System.arraycopy(mv, start, lv, 0, mv.length - start);
System.arraycopy(mv, 0, lv, mv.length - start, end);
}
return lv;
}
private void shrink() {
logger.debug("Shrinking");
if (null != mv && mv.length == initSize) {
return;
}
// reset to original size
mv = new Message[initSize];
start = 0;
end = 0;
}
public void add(Message m) {
logger.debug("Enqueueing Message " + m);
// put this at the end
mv[end] = m;
// move the end
if (end == (mv.length - 1)) {
end = 0;
} else {
end++;
}
// if we are out of space, grow.
if (end == start) {
grow();
}
}
public Message remove() {
if (start == end) {
return null;
}
// find the item
int pos = start;
// get the value
Message m = mv[pos];
// set it as unused
mv[pos] = null;
if (start == (mv.length - 1)) {
start = 0;
} else {
start++;
}
logger.debug("Dequeueing " + m);
return m;
}
public boolean isEmpty() {
// check if find succeeds
return start == end;
}
public int size() {
if (end >= start) {
return end - start;
} else {
return mv.length - start + end;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy