43 Commits

Author SHA1 Message Date
Gabriel Tofvesson
abeed8b19c
Update README.txt 2019-04-02 23:19:13 +02:00
Wizzard Dev
e9fa8aac3b Fixed license stuff 2018-01-07 09:47:06 +01:00
Gabriel Tofvesson
d4c53993ec - Added tests
- Refactored package to match my site name
- Renamed "logging" package to "stream"
- Fixed various bugs
- Fixed issues with illegal reflective access
- Added proper throwable for when a dangerous threaded action happens in async
- Added more reflective tools
  - Added ability to auto-generate simple wrapper classes
  - Added tools for converting enums to a flag-like system
  - Added annotation scanning for a supplied classloader
- Properly renamed module to "libRefTools"
v1.7.0
2018-01-04 01:10:08 +01:00
Gabriel Tofvesson
7e6f6b7135 Minor update
- Removed generic stuff
2017-03-13 00:41:08 +01:00
Gabriel Tofvesson
646edbc3c4 Minor update
- Removed generic stuff
2017-03-12 01:34:33 +01:00
Gabriel Tofvesson
de05016a6d Minor update
- Merged some changes
2017-03-12 01:31:11 +01:00
da48afd91c Minor update
- Added more Android compatibility code
2017-03-12 01:21:08 +01:00
8ef3df8245 Minor update
- Added more Android compatibility code
2017-03-06 17:05:09 +01:00
1cfee5ff47 Minor update
- Added more Android compatibility code
2017-03-05 02:34:21 +01:00
3d12866dc2 Minor update
- Added support for immediately posting values without async starting
- Added method to safely set field values. It handles cases of static- or object-fields
  - A note has been added to the JavaDoc. If you are considering using this method, please read the JavaDoc as it contains some vital information
- Properly defined the IgnorantRunnable
- Replaced all calls to sun.misc.Unsafe.putBoolean() with putInt() to support Android
2017-03-05 01:13:19 +01:00
b0fe7287f3 Minor update
- Added IgnorantRunnable to allow for creating Runnables with potentially unsafe code without needing a try-catch block for cases where it is guaranteed that the "unsafe" code is safe
2017-02-28 04:41:30 +01:00
93480ae071 Minor Update
- Added code to simplify getting classes whose fully qualified names might change
v1.5.1
2017-01-18 17:12:14 +04:00
Gabriel Tofvesson
372acd1f7e Major update
- Added ability to "post" a return value to the Async object before completion
- Added ability to poll the return value of Async without awaiting completion
- Simplified SafeReflection "customEnum" method using Unsafe.
- Modified SafeReflection.<clinit> to support android
2017-01-10 07:24:04 +01:00
Gabriel Tofvesson
b89ed6bf77 Minor update
- Started creating a new revision of the ShiftingList
  - Populated entries are shifted to the end of the array
  - Shifting is done in blocks
  - Referring to indexes is more secure now
- Added final collection helper class
- Started adding ShiftingMap based on ShiftingList
- Made SafeReflection helper class final
2016-12-22 17:38:19 +01:00
Gabriel Tofvesson
f83d25b732 Minor fixes
- Added minor change to support all languages (Java 5.0+)
v1.4.2
2016-12-21 20:08:07 +01:00
Gabriel Tofvesson
c8a541912f Minor update
- Added simple Pair object due to lack of javafx support
v1.4.1
2016-12-21 02:38:57 +01:00
Gabriel Tofvesson
f63b5beb93 Major update
- Updated code to support java 9 language level
- Moved field definitions in SafeReflection to clinit
2016-12-21 02:32:45 +01:00
a4d412c5ca Minor Update
- Added getCallerClass() to SafeReflection to get caller class
2016-12-15 16:42:24 +04:00
5909e2ca0a Major Update
- Fixed Iterator and added remove()
- Added support for dispatching batch Async operations
- Rewrote lots of code to support lower language levels (java 5+)
v1.3.0
2016-12-15 14:40:26 +04:00
5796fc3c87 Major update
- Fix major bug causing storing elements at a given index to crash
2016-12-06 11:14:48 +04:00
04fc48e406 Minor fix
- Fixed runnable execution to properly set up Async environment for thread
v1.2.0
2016-12-01 17:01:19 +04:00
a54ecb6a0f Minor update
- Added safe sleep method to Async class to allow for sleeping in thread without try-catch
2016-12-01 16:33:12 +04:00
0f8067a628 Major update
- Added support for getting current Async instance from Thread (thx Reflection <3 <3 <3)
- Added security checks to await() to prevent thread freeze from calling await() from async thread
- Added standard for all classes extending Async to follow
v1.1.0
2016-11-24 19:17:47 +04:00
4233b856ba Minor update
- Added method to allow users to get Async object from thread
2016-11-24 17:31:31 +04:00
Gabriel Tofvesson
cf32cf3ae3 Major fix
- Merged SafeReflection
v1.0.0
2016-11-13 15:35:30 +01:00
Gabriel Tofvesson
fec11f3a47 Merge remote-tracking branch 'origin/master'
# Conflicts:
#	src/com/tofvesson/reflection/SafeReflection.java
2016-11-13 15:19:53 +01:00
Gabriel Tofvesson
32c8712607 Major fix
- Fixed fatal but with foreach on ShiftingList
2016-11-13 15:17:06 +01:00
1321d49f8c Major update
- Fixed prominent bugs in ShiftingList
  - Fixed shifting of data in the internal array
  - Fixed retainAll()
  - Fixed add(int, collection)
  - Fixed much more
- Changed name of enqueue() method in WorkerThread to push()
- Moved Enum reflection code to SafeReflection class
- Moved class instantiation (bypass construction) code to SafeReflection and optimized code
- Moved EnumDefinition class into SafeReflection as a static class
2016-11-12 01:28:54 +04:00
c39869c25e Minor patch
Added more comments to make code more understandable to readers
2016-11-07 13:16:58 +04:00
02c4c7585d Minor patch
Addedcomment to package-scoped code
2016-11-07 12:33:17 +04:00
Gabriel Tofvesson
803fb55643 Major update
Fixed killing threads. Didn't work before if user started async with infinite loop
2016-11-06 17:55:29 +01:00
Gabriel Tofvesson
67e71d2d9a Major patch
Fixed major bug in Eco Async class causing infinite loop when await() is called
Added multiple variants of EcoAsync constructor to simplify and untangle code of future developers
EcoAsync is now generic and so is it's return type!
Added comments to every constructor so as not to confuse developers
2016-11-03 23:16:23 +01:00
Gabriel Tofvesson
9c014689a1 Major update
Fixed major bug in Async when constructing a new object causing an infinite loop
Added an Async constructor for constructing a new object without parameters
Async is now generic and return type of await() is also generic!
2016-11-03 22:45:01 +01:00
Gabriel Tofvesson
28c9b3b8e7 Minor update
Added method to get file of a supplied class.
2016-11-02 23:21:04 +01:00
Gabriel Tofvesson
533ee3e89b Minor improvements
- Added some simpler constructors to Async
2016-11-02 22:06:23 +01:00
Gabriel Tofvesson
3a1b73061e Minor improvements 2016-11-01 21:32:36 +01:00
Gabriel Tofvesson
d7660799be Removed ShiftingMap (project for another day)
Removed Shifting Set
Removed Shifting Entry
Added Shifting List inheriting most of it's functionality from the Shifting Set
Optimized load balancing algorithm to ensure that array isn't unnecessarily resized
Optimized load balancing algorithm by simplifying load calculation
Added new List Iterator in addition to regular Iterator
2016-10-31 22:12:39 +01:00
d7d49e8ee2 Complete rewrite of shifting map code:
Added shifting set as separate public class
  Added "Empty" class for internal references
  Added shifting entry for static array reference to shifting set
2016-10-31 01:47:37 +04:00
4b0a7d6627 ShiftingList -> ShiftingMap
ShiftingMap: Fixed bug causing maps added to Map to become misaligned.
2016-10-26 13:21:17 +04:00
Gabriel Tofvesson
294b29d839 - Added ShiftingList
Features:
 - Fixed size
 - Load prediction and memory allocation optimization
   - Uses previous input to estimate future load
   - Allocates memory according to previous input and a user-changeable constant
 - Custom data handling with optimization for this specific case
2016-10-24 21:54:38 +02:00
Gabriel Tofvesson
33e4010db0 Removed bad files 2016-10-23 22:20:05 +02:00
Gabriel Tofvesson
dde414c400 Removed bad files 2016-10-22 20:40:23 +02:00
f086a9b19d Initial commit 2016-10-22 21:36:45 +04:00