Skip to content
The Jenkins Controller is preparing for shutdown. No new builds can be started.
Unstable

Changes

Summary

  1. Version: Bump to 'devel' version .. (details)
  2. Platform: Add accurate currentTimeMillis() and currentTimeMicros() (details)
  3. Add Ringbuffer interface an 2 implementations, synchronized (locking) (details)
  4. *Ringbuffer: Remove Ringbuffer<T>.AllocEmptyArray interface to favor a (details)
  5. DynamicLibraryBundle: Remove unused imports (details)
  6. AndroidManifests Launcher/Test: Add Camera features and permission (details)
  7. Add URIQueryProps: Simple tool to process URI queries as properties (details)
  8. URIQueryProps: Custumize query separator, allowing user to favor ';' (details)
Commit 0fa150687e97bb6768ccd7755cd69af9d30b2f1c by Sven Gothel
Version: Bump to 'devel' version ..
The file was modified make/jogamp-env.xml (diff)
Commit 77687335f7fae3727c902c678b9525e6f4631da1 by Sven Gothel
Platform: Add accurate currentTimeMillis() and currentTimeMicros() native methods, based on 'gettimeofday(..)'
The file was modified src/java/com/jogamp/common/os/Platform.java (diff)
The file was addedsrc/native/common/Platforms.c (diff)
The file was modified make/build.xml (diff)
Commit 30475c6bbeb9a5d48899b281ead8bb305679028d by Sven Gothel
Add Ringbuffer interface an 2 implementations, synchronized (locking) SyncedRingbuffer and lock-free LFRingbuffer.

SyncedRingbuffer is moved from JOGL to GlueGen, and generalized w/ common interface Ringbuffer
to allow testing diff. implementations.

- Added Ringbuffer.AllocEmptyArray factory interface, allowing to pass a constructor
  to construct the generic array.

- Added functionality is growBuffer(..), allowing to either grow a full or empty buffer,
  using Ringbuffer.AllocEmptyArray.

- Removed explicit 'clearRef' at get*(..), always clear the taken reference for better
  interface generalization.

- Added LFRingbuffer, exposing lock-free get*(..) and put*(..) methods
  using the 'Always Keep One Slot Open' pattern using the read/write index as barriers only.

- Ctor's copy an optional passed user array into the internal array,
  utilizing Ringbuffer.AllocEmptyArray.

- Added unit tests.
The file was addedsrc/junit/com/jogamp/common/util/TestLFRingBuffer01.java (diff)
The file was addedsrc/java/com/jogamp/common/util/LFRingbuffer.java (diff)
The file was addedsrc/java/com/jogamp/common/util/Ringbuffer.java (diff)
The file was addedsrc/java/com/jogamp/common/util/SyncedRingbuffer.java (diff)
The file was addedsrc/junit/com/jogamp/common/util/TestSyncRingBuffer01.java (diff)
The file was modified make/scripts/runtest.sh (diff)
The file was addedsrc/junit/com/jogamp/common/util/RingBuffer01Base.java (diff)
Commit f9f881e59c78e3036cb3f956bc97cfc3197f620d by Sven Gothel
*Ringbuffer: Remove Ringbuffer<T>.AllocEmptyArray interface to favor a more simple approach; Split 'grow' into 'growEmpty' and 'growFull'

- java.lang.reflect.Array can instantiate an array w/ a given array-type and length

- array-type is Class<? extends T[]>

- We either deduct the array-type via array.getClass(), or pass it (ctor for empty Ringbuffer).

- Split 'growBuffer(T[] newElements, int amount, ..)' into:
  - 'growEmptyBuffer(T[] newElements)'
  - 'growFullBuffer(int amount)'
  Allowing a more clean API w/ simpler semantics.
The file was modified src/java/com/jogamp/common/util/Ringbuffer.java (diff)
The file was modified src/junit/com/jogamp/common/util/RingBuffer01Base.java (diff)
The file was modified src/junit/com/jogamp/common/util/TestLFRingBuffer01.java (diff)
The file was modified src/java/com/jogamp/common/util/SyncedRingbuffer.java (diff)
The file was modified src/junit/com/jogamp/common/util/TestSyncRingBuffer01.java (diff)
The file was modified make/scripts/runtest.sh (diff)
The file was modified src/java/com/jogamp/common/util/LFRingbuffer.java (diff)
Commit c7193c39b9cbb69ce089adabe8847537c83371a1 by Sven Gothel
DynamicLibraryBundle: Remove unused imports
The file was modified src/java/com/jogamp/common/os/DynamicLibraryBundle.java (diff)
Commit 32a0435414ef69640fc0816c7b7891535a6aec49 by Sven Gothel
AndroidManifests Launcher/Test: Add Camera features and permission
The file was modified make/resources/android/AndroidManifest-Test.xml (diff)
The file was modified make/resources/android/AndroidManifest-Launcher.xml (diff)
Commit 0931943b4498eafe857a47dbfa19592caef51546 by Sven Gothel
Add URIQueryProps: Simple tool to process URI queries as properties
The file was addedsrc/java/com/jogamp/common/net/URIQueryProps.java (diff)
The file was modified src/junit/com/jogamp/common/net/URLCompositionTest.java (diff)
The file was modified make/scripts/runtest.sh (diff)
Commit ae1dd6990fb4f0f20cc908916a9cb68f0be866ff by Sven Gothel
URIQueryProps: Custumize query separator, allowing user to favor ';' over '&'
The file was modified src/junit/com/jogamp/common/net/URLCompositionTest.java (diff)
The file was modified src/java/com/jogamp/common/net/URIQueryProps.java (diff)