This is an automated email from the ASF dual-hosted git repository.
leerho pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datasketches-memory17.git
The following commit(s) were added to refs/heads/main by this push:
new 40f228f Delete bin directory
40f228f is described below
commit 40f228fa8ecb131435c1b79be78cab6a67d0cf3a
Author: Lee Rhodes <[email protected]>
AuthorDate: Wed May 25 15:55:36 2022 -0700
Delete bin directory
---
bin/.asf.yaml | 2 -
bin/.github/workflows/.toolchains.xml | 63 ---
bin/.github/workflows/codeql-analysis.yml | 69 ---
bin/.github/workflows/maven.yml | 99 ----
bin/.project | 23 -
bin/.settings/edu.umd.cs.findbugs.core.prefs | 146 ------
bin/.settings/org.eclipse.core.resources.prefs | 2 -
bin/.settings/org.eclipse.jdt.core.prefs | 131 -----
bin/.settings/org.eclipse.jdt.launching.prefs | 3 -
bin/.settings/org.eclipse.m2e.core.prefs | 4 -
bin/.settings/org.testng.eclipse.maven.prefs | 7 -
bin/LICENSE | 350 -------------
bin/NOTICE | 12 -
bin/README.md | 1 -
bin/pom.xml | 542 ---------------------
.../org/apache/datasketches/memory/BaseState.class | Bin 2560 -> 0 bytes
.../memory/DefaultMemoryRequestServer.class | Bin 1751 -> 0 bytes
.../org/apache/datasketches/memory/Memory.class | Bin 6867 -> 0 bytes
.../datasketches/memory/MemoryCloseException.class | Bin 1030 -> 0 bytes
.../datasketches/memory/MemoryException.class | Bin 831 -> 0 bytes
.../datasketches/memory/MemoryRequestServer.class | Bin 821 -> 0 bytes
.../apache/datasketches/memory/MurmurHash3v2.class | Bin 4636 -> 0 bytes
.../datasketches/memory/ReadOnlyException.class | Bin 871 -> 0 bytes
.../datasketches/memory/Utf8CodingException.class | Bin 3886 -> 0 bytes
.../datasketches/memory/WritableMemory.class | Bin 8749 -> 0 bytes
.../org/apache/datasketches/memory/XxHash.class | Bin 3799 -> 0 bytes
.../apache/datasketches/memory/package-info.class | Bin 150 -> 0 bytes
bin/tools/CloverConfig.txt | 49 --
bin/tools/FindBugsExcludeFilter.xml | 96 ----
bin/tools/MemoryCheckstyle.xml | 398 ---------------
bin/tools/scripts/CheckMemoryJar.class | Bin 7443 -> 0 bytes
bin/tools/scripts/LoremIpsum.txt | 3 -
bin/tools/scripts/compile-package-jar.sh | 163 -------
bin/tools/scripts/getGitProperties.sh | 66 ---
bin/tools/toolchains.xml | 53 --
35 files changed, 2282 deletions(-)
diff --git a/bin/.asf.yaml b/bin/.asf.yaml
deleted file mode 100644
index 15e33a5..0000000
--- a/bin/.asf.yaml
+++ /dev/null
@@ -1,2 +0,0 @@
-github:
- homepage: https://datasketches.apache.org
\ No newline at end of file
diff --git a/bin/.github/workflows/.toolchains.xml
b/bin/.github/workflows/.toolchains.xml
deleted file mode 100644
index c415d5d..0000000
--- a/bin/.github/workflows/.toolchains.xml
+++ /dev/null
@@ -1,63 +0,0 @@
-<?xml version="1.0" encoding="UTF8"?>
-<toolchains>
- <toolchain>
- <type>jdk</type>
- <provides>
- <version>1.8</version>
- <vendor>openjdk</vendor>
- </provides>
- <configuration>
- <jdkHome>${env.JAVA8_HOME}</jdkHome>
- </configuration>
- </toolchain>
- <toolchain>
- <type>jdk</type>
- <provides>
- <version>8</version>
- <vendor>openjdk</vendor>
- </provides>
- <configuration>
- <jdkHome>${env.JAVA8_HOME}</jdkHome>
- </configuration>
- </toolchain>
- <toolchain>
- <type>jdk</type>
- <provides>
- <version>11</version>
- <vendor>openjdk</vendor>
- </provides>
- <configuration>
- <jdkHome>${env.JAVA11_HOME}</jdkHome>
- </configuration>
- </toolchain>
- <toolchain>
- <type>jdk</type>
- <provides>
- <version>12</version>
- <vendor>openjdk</vendor>
- </provides>
- <configuration>
- <jdkHome>${env.JAVA12_HOME}</jdkHome>
- </configuration>
- </toolchain>
- <toolchain>
- <type>jdk</type>
- <provides>
- <version>13</version>
- <vendor>openjdk</vendor>
- </provides>
- <configuration>
- <jdkHome>${env.JAVA13_HOME}</jdkHome>
- </configuration>
- </toolchain>
- <toolchain>
- <type>jdk</type>
- <provides>
- <version>17</version>
- <vendor>openjdk</vendor>
- </provides>
- <configuration>
- <jdkHome>${env.JAVA17_HOME}</jdkHome>
- </configuration>
- </toolchain>
-</toolchains>
\ No newline at end of file
diff --git a/bin/.github/workflows/codeql-analysis.yml
b/bin/.github/workflows/codeql-analysis.yml
deleted file mode 100644
index 9beda7d..0000000
--- a/bin/.github/workflows/codeql-analysis.yml
+++ /dev/null
@@ -1,69 +0,0 @@
-# For most projects, this workflow file will not need changing; you simply need
-# to commit it to your repository.
-#
-# You may wish to alter this file to override the set of languages analyzed,
-# or to provide custom queries or build logic.
-#
-# ******** NOTE ********
-# We have attempted to detect the languages in your repository. Please check
-# the `language` matrix defined below to confirm you have the correct set of
-# supported CodeQL languages.
-#
-name: "CodeQL"
-
-on:
- push:
- branches: [ master ]
- pull_request:
- # The branches below must be a subset of the branches above
- branches: [ master ]
- workflow_dispatch:
-
-jobs:
- analyze:
- name: Analyze
- runs-on: ubuntu-latest
- permissions:
- actions: read
- contents: read
- security-events: write
-
- strategy:
- fail-fast: false
- matrix:
- language: [ 'java' ]
- # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript',
'python', 'ruby' ]
- # Learn more about CodeQL language support at
https://git.io/codeql-language-support
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v3
-
- # Initializes the CodeQL tools for scanning.
- - name: Initialize CodeQL
- uses: github/codeql-action/init@v2
- with:
- languages: ${{ matrix.language }}
- # If you wish to specify custom queries, you can do so here or in a
config file.
- # By default, queries listed here will override any specified in a
config file.
- # Prefix the list here with "+" to use these queries and those in the
config file.
- # queries: ./path/to/local/query, your-org/your-repo/queries@main
-
- # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
- # If this step fails, then you should remove it and run the build manually
(see below)
- - name: Autobuild
- uses: github/codeql-action/autobuild@v2
-
- # âšī¸ Command-line programs to run using the OS shell.
- # đ https://git.io/JvXDl
-
- # âī¸ If the Autobuild fails above, remove it and uncomment the following
three lines
- # and modify them (or add more) to build your code if your project
- # uses a compiled language
-
- #- run: |
- # make bootstrap
- # make release
-
- - name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v2
diff --git a/bin/.github/workflows/maven.yml b/bin/.github/workflows/maven.yml
deleted file mode 100644
index d961c5f..0000000
--- a/bin/.github/workflows/maven.yml
+++ /dev/null
@@ -1,99 +0,0 @@
-name: Java Test Coverage with Maven, Coveralls
-
-on:
- pull_request:
- push:
- branches: [ master ]
- workflow_dispatch:
-
-env:
- MAVEN_OPTS: -Xmx4g -Xms1g
- repo_token: ${{secrets.coveralls_token}}
- RUNNER_TEMP: /tmp
-
-jobs:
- build:
- name: Build, Test, Coverage
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- jdk: [17]
-
- # All JDKs are installed per build machine which is inefficient
-
- env:
- JDK_VERSION: ${{ matrix.jdk }}
-
- steps:
- - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
- uses: actions/checkout@v2
- with:
- persist-credentials: false
-
- - name: Cache local Maven repository
- uses: actions/cache@v2
- with:
- path: ~/.m2/repository
- key: build-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- restore-keys: build-${{ runner.os }}-maven-
-
- - name: Install JDK 17
- uses: AdoptOpenJDK/install-jdk@v1
- with:
- version: '17'
- architecture: x64
- impl: hotspot
- targets: 'JAVA17_HOME'
-
- - name: Install Matrix JDK
- uses: AdoptOpenJDK/install-jdk@v1
- with:
- version: ${{ matrix.jdk }}
- architecture: x64
- impl: hotspot
- targets: 'JAVA_HOME'
-
- - name: Echo Java Version
- run: >
- java -version
-
- - name: Compile
- run: >
- mvn clean compile
- -Dmaven.javadoc.skip=true
- -Dgpg.skip=true
- --toolchains .github/workflows/.toolchains.xml
-
- - name: Install Dependencies
- run: >
- mvn clean install
- -DskipTests=true
- -Dmaven.javadoc.skip=true
- -Dgpg.skip=true
- --toolchains .github/workflows/.toolchains.xml
-
- - name: Package
- run: >
- mvn package
- -Dmaven.javadoc.skip=true
- -Dgpg.skip=true
- -Denvironment=ci
- -Dmatrix.jdk.version=${{matrix.jdk}}
- --toolchains .github/workflows/.toolchains.xml
-
- # The GitTag for CI purposes is irrelevant
- - name: Custom build script
- run: |
- ./tools/scripts/compile-package-jar.sh $JAVA_HOME x.y.z .
- shell: bash
-
- - name: Test & Report
- if: ${{ matrix.jdk == 17 && success() }}
- run: >
- mvn verify coveralls:report -B -V
- -Dcoveralls-repo-token=${repo_token}
- -Dmaven.javadoc.skip=true
- -Dgpg.skip=true
- -Dmatrix.jdk.version=${{matrix.jdk}}
- --toolchains .github/workflows/.toolchains.xml
\ No newline at end of file
diff --git a/bin/.project b/bin/.project
deleted file mode 100644
index 3fd6cca..0000000
--- a/bin/.project
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>datasketches-memory17</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.m2e.core.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.m2e.core.maven2Nature</nature>
- <nature>org.eclipse.jdt.core.javanature</nature>
- </natures>
-</projectDescription>
diff --git a/bin/.settings/edu.umd.cs.findbugs.core.prefs
b/bin/.settings/edu.umd.cs.findbugs.core.prefs
deleted file mode 100644
index 9ef7dcd..0000000
--- a/bin/.settings/edu.umd.cs.findbugs.core.prefs
+++ /dev/null
@@ -1,146 +0,0 @@
-#SpotBugs User Preferences
-#Mon Nov 15 10:10:51 PST 2021
-detectorExplicitSerialization=ExplicitSerialization|true
-detectorMultithreadedInstanceAccess=MultithreadedInstanceAccess|true
-detectorConfusionBetweenInheritedAndOuterMethod=ConfusionBetweenInheritedAndOuterMethod|true
-detectorWrongMapIterator=WrongMapIterator|true
-detectorUnnecessaryMath=UnnecessaryMath|true
-detectorUselessSubclassMethod=UselessSubclassMethod|false
-filter_settings=Medium|BAD_PRACTICE,CORRECTNESS,MT_CORRECTNESS,PERFORMANCE,STYLE|false|15
-detectorURLProblems=URLProblems|true
-detectorIteratorIdioms=IteratorIdioms|true
-detectorMutableEnum=MutableEnum|true
-detectorFindNonShortCircuit=FindNonShortCircuit|true
-detectorSynchronizeAndNullCheckField=SynchronizeAndNullCheckField|true
-detectorVolatileUsage=VolatileUsage|true
-detectorFindNakedNotify=FindNakedNotify|true
-detectorFindUninitializedGet=FindUninitializedGet|true
-detectorFindUseOfNonSerializableValue=FindUseOfNonSerializableValue|true
-detectorFindJSR166LockMonitorenter=FindJSR166LockMonitorenter|true
-detectorQuestionableBooleanAssignment=QuestionableBooleanAssignment|true
-detectorSwitchFallthrough=SwitchFallthrough|true
-detectorFindLocalSelfAssignment2=FindLocalSelfAssignment2|true
-detectorConfusedInheritance=ConfusedInheritance|true
-detectorSynchronizationOnSharedBuiltinConstant=SynchronizationOnSharedBuiltinConstant|true
-detectorMutableStaticFields=MutableStaticFields|true
-detectorInvalidJUnitTest=InvalidJUnitTest|true
-detectorInfiniteLoop=InfiniteLoop|true
-detectorFindRunInvocations=FindRunInvocations|true
-detectorBadSyntaxForRegularExpression=BadSyntaxForRegularExpression|true
-detectorXMLFactoryBypass=XMLFactoryBypass|true
-detectorFindOpenStream=FindOpenStream|true
-detectorCheckExpectedWarnings=CheckExpectedWarnings|false
-detectorHugeSharedStringConstants=HugeSharedStringConstants|true
-detectorLostLoggerDueToWeakReference=LostLoggerDueToWeakReference|true
-detectorStringConcatenation=StringConcatenation|true
-detectorLoadOfKnownNullValue=LoadOfKnownNullValue|true
-detectorFinalizerNullsFields=FinalizerNullsFields|true
-detectorFindFieldSelfAssignment=FindFieldSelfAssignment|true
-detectorInefficientToArray=InefficientToArray|false
-detectorDontCatchIllegalMonitorStateException=DontCatchIllegalMonitorStateException|true
-detectorInconsistentAnnotations=InconsistentAnnotations|true
-detectorBadlyOverriddenAdapter=BadlyOverriddenAdapter|true
-detectorInstantiateStaticClass=InstantiateStaticClass|true
-detectorCheckRelaxingNullnessAnnotation=CheckRelaxingNullnessAnnotation|true
-detectorMethodReturnCheck=MethodReturnCheck|true
-detectorEqualsOperandShouldHaveClassCompatibleWithThis=EqualsOperandShouldHaveClassCompatibleWithThis|true
-detectorFindDoubleCheck=FindDoubleCheck|true
-detectorFindBadForLoop=FindBadForLoop|true
-detectorDefaultEncodingDetector=DefaultEncodingDetector|true
-detectorFindInconsistentSync2=FindInconsistentSync2|true
-detectorFindSpinLoop=FindSpinLoop|true
-detectorFindMaskedFields=FindMaskedFields|true
-detectorBooleanReturnNull=BooleanReturnNull|true
-detectorFindUnsyncGet=FindUnsyncGet|true
-detectorCrossSiteScripting=CrossSiteScripting|true
-detectorDroppedException=DroppedException|true
-detectorFindDeadLocalStores=FindDeadLocalStores|true
-detectorCheckImmutableAnnotation=CheckImmutableAnnotation|true
-detectorInfiniteRecursiveLoop=InfiniteRecursiveLoop|true
-detectorFindRefComparison=FindRefComparison|true
-detectorFindRoughConstants=FindRoughConstants|true
-detectorMutableLock=MutableLock|true
-detectorFindNullDeref=FindNullDeref|true
-detectorFindReturnRef=FindReturnRef|true
-detectorSynchronizeOnClassLiteralNotGetClass=SynchronizeOnClassLiteralNotGetClass|true
-detectorFindUselessControlFlow=FindUselessControlFlow|true
-detectorOverridingEqualsNotSymmetrical=OverridingEqualsNotSymmetrical|true
-detectorIDivResultCastToDouble=IDivResultCastToDouble|true
-detectorReadOfInstanceFieldInMethodInvokedByConstructorInSuperclass=ReadOfInstanceFieldInMethodInvokedByConstructorInSuperclass|true
-detectorFindSelfComparison=FindSelfComparison|true
-detectorFindFloatEquality=FindFloatEquality|true
-detectorFindComparatorProblems=FindComparatorProblems|true
-detectorRepeatedConditionals=RepeatedConditionals|true
-filter_settings_neg=MALICIOUS_CODE,SECURITY,EXPERIMENTAL,NOISE,I18N|
-detectorInefficientMemberAccess=InefficientMemberAccess|false
-detectorFindUncalledPrivateMethods=FindUncalledPrivateMethods|true
-detectorNumberConstructor=NumberConstructor|true
-detectorDontAssertInstanceofInTests=DontAssertInstanceofInTests|true
-detectorFindFinalizeInvocations=FindFinalizeInvocations|true
-detectorFindBadEndOfStreamCheck=FindBadEndOfStreamCheck|true
-detectorFindNullDerefsInvolvingNonShortCircuitEvaluation=FindNullDerefsInvolvingNonShortCircuitEvaluation|true
-detectorDontIgnoreResultOfPutIfAbsent=DontIgnoreResultOfPutIfAbsent|true
-detectorFindUnconditionalWait=FindUnconditionalWait|true
-detectorFindTwoLockWait=FindTwoLockWait|true
-detectorFindSleepWithLockHeld=FindSleepWithLockHeld|true
-detectorFindUnreleasedLock=FindUnreleasedLock|true
-detectorInefficientIndexOf=InefficientIndexOf|false
-detectorDoInsideDoPrivileged=DoInsideDoPrivileged|true
-detectorFindEmptySynchronizedBlock=FindEmptySynchronizedBlock|true
-detectorOverridingMethodsMustInvokeSuperDetector=OverridingMethodsMustInvokeSuperDetector|true
-detectorWaitInLoop=WaitInLoop|true
-detectorIntCast2LongAsInstant=IntCast2LongAsInstant|true
-detectorBadUseOfReturnValue=BadUseOfReturnValue|true
-detectorFindSqlInjection=FindSqlInjection|true
-detectorUnreadFields=UnreadFields|true
-detectorSynchronizingOnContentsOfFieldToProtectField=SynchronizingOnContentsOfFieldToProtectField|true
-detectorFindUselessObjects=FindUselessObjects|true
-detectorBadAppletConstructor=BadAppletConstructor|false
-detectorInheritanceUnsafeGetResource=InheritanceUnsafeGetResource|true
-detectorSerializableIdiom=SerializableIdiom|true
-detectorNaming=Naming|true
-detectorNoteUnconditionalParamDerefs=NoteUnconditionalParamDerefs|true
-detectorFormatStringChecker=FormatStringChecker|true
-detectorSuspiciousThreadInterrupted=SuspiciousThreadInterrupted|true
-detectorEmptyZipFileEntry=EmptyZipFileEntry|false
-detectorFindCircularDependencies=FindCircularDependencies|false
-detectorPreferZeroLengthArrays=PreferZeroLengthArrays|true
-detectorAtomicityProblem=AtomicityProblem|true
-detectorRuntimeExceptionCapture=RuntimeExceptionCapture|true
-detectorInitializationChain=InitializationChain|true
-detectorInitializeNonnullFieldsInConstructor=InitializeNonnullFieldsInConstructor|true
-detectorOptionalReturnNull=OptionalReturnNull|true
-detectorStartInConstructor=StartInConstructor|true
-detectorFindUnsatisfiedObligation=FindUnsatisfiedObligation|true
-detectorRedundantConditions=RedundantConditions|true
-effort=default
-detectorRedundantInterfaces=RedundantInterfaces|true
-detectorDuplicateBranches=DuplicateBranches|true
-detectorCheckTypeQualifiers=CheckTypeQualifiers|true
-detectorComparatorIdiom=ComparatorIdiom|true
-detectorFindBadCast2=FindBadCast2|true
-detectorFindMismatchedWaitOrNotify=FindMismatchedWaitOrNotify|true
-excludefilter0=tools/FindBugsExcludeFilter.xml|true
-detectorBadResultSetAccess=BadResultSetAccess|true
-detectorIncompatMask=IncompatMask|true
-detectorCovariantArrayAssignment=CovariantArrayAssignment|false
-detectorDumbMethodInvocations=DumbMethodInvocations|true
-run_at_full_build=false
-detectorStaticCalendarDetector=StaticCalendarDetector|true
-detectorUncallableMethodOfAnonymousClass=UncallableMethodOfAnonymousClass|true
-detectorVarArgsProblems=VarArgsProblems|true
-detectorInefficientInitializationInsideLoop=InefficientInitializationInsideLoop|false
-detectorCloneIdiom=CloneIdiom|true
-detectorFindHEmismatch=FindHEmismatch|true
-detectorAppendingToAnObjectOutputStream=AppendingToAnObjectOutputStream|true
-detectorFindSelfComparison2=FindSelfComparison2|true
-detectorLazyInit=LazyInit|true
-detectorFindUnrelatedTypesInGenericContainer=FindUnrelatedTypesInGenericContainer|true
-detectorDontUseEnum=DontUseEnum|true
-detectorFindPuzzlers=FindPuzzlers|true
-detectorCallToUnsupportedMethod=CallToUnsupportedMethod|false
-detectorSuperfluousInstanceOf=SuperfluousInstanceOf|true
-detectorReadReturnShouldBeChecked=ReadReturnShouldBeChecked|true
-detector_threshold=2
-detectorPublicSemaphores=PublicSemaphores|false
-detectorDumbMethods=DumbMethods|true
diff --git a/bin/.settings/org.eclipse.core.resources.prefs
b/bin/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index 99f26c0..0000000
--- a/bin/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-eclipse.preferences.version=1
-encoding/<project>=UTF-8
diff --git a/bin/.settings/org.eclipse.jdt.core.prefs
b/bin/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index 07c54ac..0000000
--- a/bin/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,131 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.jdt.core.builder.annotationPath.allLocations=disabled
-org.eclipse.jdt.core.builder.cleanOutputFolder=clean
-org.eclipse.jdt.core.builder.duplicateResourceTask=warning
-org.eclipse.jdt.core.builder.invalidClasspath=abort
-org.eclipse.jdt.core.builder.recreateModifiedClassFileInOutputFolder=ignore
-org.eclipse.jdt.core.builder.resourceCopyExclusionFilter=*.launch
-org.eclipse.jdt.core.circularClasspath=error
-org.eclipse.jdt.core.classpath.exclusionPatterns=enabled
-org.eclipse.jdt.core.classpath.mainOnlyProjectHasTestOnlyDependency=error
-org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled
-org.eclipse.jdt.core.classpath.outputOverlappingAnotherSource=error
-org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=disabled
-org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore
-org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull
-org.eclipse.jdt.core.compiler.annotation.nonnull.secondary=
-org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault
-org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary=
-org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
-org.eclipse.jdt.core.compiler.annotation.nullable.secondary=
-org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
-org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=17
-org.eclipse.jdt.core.compiler.debug.lineNumber=generate
-org.eclipse.jdt.core.compiler.debug.localVariable=generate
-org.eclipse.jdt.core.compiler.debug.sourceFile=generate
-org.eclipse.jdt.core.compiler.maxProblemPerUnit=100
-org.eclipse.jdt.core.compiler.problem.APILeak=warning
-org.eclipse.jdt.core.compiler.problem.annotatedTypeArgumentToUnannotated=info
-org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
-org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
-org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
-org.eclipse.jdt.core.compiler.problem.deadCode=warning
-org.eclipse.jdt.core.compiler.problem.deprecation=warning
-org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
-org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=enabled
-org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
-org.eclipse.jdt.core.compiler.problem.emptyStatement=warning
-org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=warning
-org.eclipse.jdt.core.compiler.problem.fallthroughCase=warning
-org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
-org.eclipse.jdt.core.compiler.problem.fieldHiding=warning
-org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning
-org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
-org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
-org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
-org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
-org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
-org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=warning
-org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=warning
-org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
-org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
-org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore
-org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=warning
-org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled
-org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=warning
-org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=warning
-org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
-org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
-org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=warning
-org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
-org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
-org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
-org.eclipse.jdt.core.compiler.problem.nonnullParameterAnnotationDropped=warning
-org.eclipse.jdt.core.compiler.problem.nonnullTypeVariableFromLegacyInvocation=warning
-org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error
-org.eclipse.jdt.core.compiler.problem.nullReference=warning
-org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error
-org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning
-org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
-org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
-org.eclipse.jdt.core.compiler.problem.pessimisticNullAnalysisForFreeTypeVariables=warning
-org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=warning
-org.eclipse.jdt.core.compiler.problem.potentialNullReference=warning
-org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=warning
-org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
-org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning
-org.eclipse.jdt.core.compiler.problem.redundantNullCheck=warning
-org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=info
-org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=warning
-org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore
-org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=warning
-org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
-org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
-org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
-org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=enabled
-org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
-org.eclipse.jdt.core.compiler.problem.suppressWarningsNotFullyAnalysed=info
-org.eclipse.jdt.core.compiler.problem.syntacticNullAnalysisForFields=disabled
-org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=warning
-org.eclipse.jdt.core.compiler.problem.terminalDeprecation=warning
-org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
-org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=disabled
-org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
-org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
-org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
-org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
-org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentType=warning
-org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentTypeStrict=disabled
-org.eclipse.jdt.core.compiler.problem.unlikelyEqualsArgumentType=info
-org.eclipse.jdt.core.compiler.problem.unnecessaryElse=info
-org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=warning
-org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
-org.eclipse.jdt.core.compiler.problem.unstableAutoModuleName=warning
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
-org.eclipse.jdt.core.compiler.problem.unusedExceptionParameter=ignore
-org.eclipse.jdt.core.compiler.problem.unusedImport=warning
-org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
-org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
-org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=warning
-org.eclipse.jdt.core.compiler.problem.unusedParameter=warning
-org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
-org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
-org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
-org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
-org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=warning
-org.eclipse.jdt.core.compiler.problem.unusedWarningToken=ignore
-org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
-org.eclipse.jdt.core.compiler.release=enabled
-org.eclipse.jdt.core.compiler.source=17
-org.eclipse.jdt.core.incompatibleJDKLevel=ignore
-org.eclipse.jdt.core.incompleteClasspath=error
diff --git a/bin/.settings/org.eclipse.jdt.launching.prefs
b/bin/.settings/org.eclipse.jdt.launching.prefs
deleted file mode 100644
index f8a131b..0000000
--- a/bin/.settings/org.eclipse.jdt.launching.prefs
+++ /dev/null
@@ -1,3 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.jdt.launching.PREF_COMPILER_COMPLIANCE_DOES_NOT_MATCH_JRE=warning
-org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=warning
diff --git a/bin/.settings/org.eclipse.m2e.core.prefs
b/bin/.settings/org.eclipse.m2e.core.prefs
deleted file mode 100644
index f897a7f..0000000
--- a/bin/.settings/org.eclipse.m2e.core.prefs
+++ /dev/null
@@ -1,4 +0,0 @@
-activeProfiles=
-eclipse.preferences.version=1
-resolveWorkspaceProjects=true
-version=1
diff --git a/bin/.settings/org.testng.eclipse.maven.prefs
b/bin/.settings/org.testng.eclipse.maven.prefs
deleted file mode 100644
index 246d09f..0000000
--- a/bin/.settings/org.testng.eclipse.maven.prefs
+++ /dev/null
@@ -1,7 +0,0 @@
-eclipse.preferences.version=1
-org.testng.eclipse.maven.additionalClasspath=true
-org.testng.eclipse.maven.argline=true
-org.testng.eclipse.maven.environ=true
-org.testng.eclipse.maven.properties=true
-org.testng.eclipse.maven.sysproperties=true
-userprojectsettings=true
diff --git a/bin/LICENSE b/bin/LICENSE
deleted file mode 100644
index 61f8cad..0000000
--- a/bin/LICENSE
+++ /dev/null
@@ -1,350 +0,0 @@
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
-
-
-APPENDIX A: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
- -------------------------------------------------------------
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -------------------------------------------------------------
-
-
-
-APPENDIX B: Additional licenses relevant to this product:
-
- This product includes a number of source files with code that has been
- adapted from 3rd party sources including sources that may be subject
- to different copyright notices and license terms. Your use of
- the source code for these subcomponents is subject to the terms and
- conditions of the following licenses.
-
-
-
- =============================================================
- Apache License version 2.0 (see above)
- =============================================================
- DirectMemory
- Copyright 2015 Odnoklassniki Ltd, Mail.Ru Group
-
- Code locations:
- -------------------------------------------------------------
- This product contains a method to create a dummy read-only ByteBuffer
using unsafe:
- *
datasketches-memory-java8/src/main/java/org/apache/datasketches/memory/internal/AccessByteBuffer.java,
- Method: getDummyReadOnlyDirectByteBuffer(...)
- and adapted from Java source code located at:
- * src/one/nio/mem/DirectMemory.java,
- Method: wrap(...).
-
-
-
- =============================================================
- Apache License version 2.0 (see above)
- =============================================================
- Zero-Allocation-Hashing
- Copyright 2015 Higher Frequency Trading
http://www.higherfrequencytrading.com
-
- Code locations:
- -------------------------------------------------------------
- This product contains code to implement and test the xxHash function:
- *
datasketches-memory-java8/src/main/java/org/apache/datasketches/memory/internal/XxHash64.java
- *
datasketches-memory-java8-tests/src/test/java/org/apache/datasketches/memory/test/XxHash64Test.java
- Method: collisionTest(),
- *
datasketches-memory-java8-tests/src/test/java/org/apache/datasketches/memory/test/XxHash64LoopingTest.java
- Method: testWithSeed() and HASHES_OF_LOOPING_BYTES_WITH_SEED_42 test
data,
- and adapted from Java source code located at:
- * https://github.com/OpenHFT/Zero-Allocation-Hashing
-
-
-
- =============================================================
- Google Protobuf License:
- =============================================================
- Copyright 2008 Google Inc.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the following disclaimer
- in the documentation and/or other materials provided with the
- distribution.
- * Neither the name of Google Inc. nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
- Code generated by the Protocol Buffer compiler is owned by the owner
- of the input file used when generating it. This code is not
- standalone and requires a support library to be linked with it. This
- support library is itself covered by the above license.
-
- Code locations:
- -------------------------------------------------------------
- This product contains code for encoding, decoding and testing UTF8:
- *
datasketches-memory-java8/src/main/java/org/apache/datasketches/memory/internal/Utf8.java
- *
datasketches-memory-java8-tests/src/test/java/org/apache/datasketches/memory/test/Utf8Test.java
- *
datasketches-memory-java8-tests/src/test/java/org/apache/datasketches/memory/test/IsValidUtf8TestUtil.java
- and adapted from Java source code located at:
- *
https://github.com/protocolbuffers/protobuf/blob/master/java/core/src/main/java/com/google/protobuf/Utf8.java,
- *
https://github.com/protocolbuffers/protobuf/blob/master/java/core/src/test/java/com/google/protobuf/Utf8Test.java,
- *
https://github.com/protocolbuffers/protobuf/blob/master/java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java,
-
-
-
- =============================================================
- BSD-2-Clause License
- =============================================================
- Copyright (C) 2012-2016, Yann Collet.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
-
- 1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- 2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
- Code locations:
- -------------------------------------------------------------
- This product contains code for encoding, decoding and testing UTF8:
- *
datasketches-memory-java8/src/main/java/org/apache/datasketches/memory/internal/XxHash64.java
- and adapted from C++ code located at:
- * https://github.com/Cyan4973/xxHash/blob/dev/xxhash.c,
- * https://github.com/Cyan4973/xxHash/blob/dev/xxhash.h
-
-
-
- =============================================================
- Public Domain (optional notice)
- =============================================================
- This product contains the text of Lincoln's Gettysburg Address, which is
in the public domain,
- and is used in various file tests. This file is read-only and tested for
its exact character
- sequence and cannot be appended with any additional text.
- *
datasketches-memory-java8-tests/src/test/java/org/apache/datasketches/memory/test/AllocateDirectMapMemoryTest.java
- *
datasketches-memory-java8-tests/src/test/java/org/apache/datasketches/memory/test/AllocateDirectWritableMapMemoryTest.java
- *
datasketches-memory-java8-tests/src/test/java/org/apache/datasketches/memory/test/MemoryTest.java
- *
datasketches-memory-java8-tests/src/test/java/org/apache/datasketches/memory/test/UtilTest.java
diff --git a/bin/NOTICE b/bin/NOTICE
deleted file mode 100644
index d7ec45b..0000000
--- a/bin/NOTICE
+++ /dev/null
@@ -1,12 +0,0 @@
-Apache DataSketches Memory
-
-Copyright 2021 - The Apache Software Foundation
-
-Copyright 2015-2018 Yahoo
-Copyright 2019 Verizon Media
-
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-Prior to moving to ASF, the software for this project was developed at
-Yahoo (now Verizon Media) (https://developer.yahoo.com).
diff --git a/bin/README.md b/bin/README.md
deleted file mode 100644
index 076825a..0000000
--- a/bin/README.md
+++ /dev/null
@@ -1 +0,0 @@
-# datasketches-memory17
diff --git a/bin/pom.xml b/bin/pom.xml
deleted file mode 100644
index eba2337..0000000
--- a/bin/pom.xml
+++ /dev/null
@@ -1,542 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied. See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.apache</groupId>
- <artifactId>apache</artifactId>
- <version>23</version>
- </parent>
-
- <groupId>org.apache.datasketches</groupId>
- <artifactId>datasketches-memory17</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <!-- Required for multi-module project -->
- <packaging>pom</packaging>
-
- <name>${project.artifactId}</name>
- <description>High-performance native memory access with Panama.</description>
- <url>https://datasketches.apache.org/</url>
- <inceptionYear>2015</inceptionYear>
-
- <mailingLists>
- <mailingList>
- <name>DataSketches Developers</name>
- <subscribe>[email protected]</subscribe>
- <unsubscribe>[email protected]</unsubscribe>
- <post>[email protected]</post>
-
<archive>https://mail-archives.apache.org/mod_mbox/datasketches-dev</archive>
- </mailingList>
- <mailingList>
- <name>sketches-user</name>
- <archive>https://groups.google.com/forum/#!forum/sketches-user</archive>
- <subscribe>mailto:sketches-user%[email protected]</subscribe>
-
<unsubscribe>mailto:sketches-user%[email protected]</unsubscribe>
- <post>mailto:[email protected]</post>
- </mailingList>
- </mailingLists>
-
- <scm>
-
<connection>scm:git:ssh://[email protected]/apache/${project.artifactId}.git</connection>
-
<developerConnection>scm:git:ssh://[email protected]/apache/${project.artifactId}.git</developerConnection>
- <url>https://github.com/apache/${project.artifactId}</url>
- <tag>HEAD</tag>
- </scm>
-
- <issueManagement>
- <!-- <system>jira</system>
- <url>https://issues.apache.org/jira/browse/DATASKETCHES</url> -->
- <system>GitHub</system>
- <url>https://github.com/apache/${project.artifactId}/issues</url>
- </issueManagement>
-
- <developers>
- <developer>
- <name>The Apache DataSketches Team</name>
- <email>[email protected]</email>
- <url>https://datasketches.apache.org</url>
- <organization>Apache Software Foundation</organization>
- <organizationUrl>http://www.apache.org</organizationUrl>
- </developer>
- </developers>
-
- <!--
- NOTE:
- The datasketches-memory submodule uses the Maven project-aggregation
feature and does not inherit
- from this root module as a parent; so that there is no runtime
dependency on the parent project (root module).
- As a result, some properties from this POM (including the version) are
duplicated in the datasketches-memory
- module for inclusion in the assembled artifacts. For more information,
see:
-
https://maven.apache.org/guides/introduction/introduction-to-the-pom.html#Project_Aggregation
-->
-
-
- <properties>
- <!-- UNIQUE FOR THIS JAVA COMPONENT -->
- <protobuf-java.version>4.0.0-rc-2</protobuf-java.version>
- <!-- Used for UTF8 testing -->
- <zero-allocation-hashing.version>0.15</zero-allocation-hashing.version>
- <!-- END:UNIQUE FOR THIS JAVA COMPONENT -->
-
- <!-- Test -->
- <!-- Version 7.4.0 fails to locate jquery.min.js for reporting on debian
systems -->
- <testng.version>7.5</testng.version>
-
- <!-- System-wide properties -->
- <maven.version>3.5.0</maven.version>
- <java.version>17</java.version>
- <jdk-toolchain.version>8</jdk-toolchain.version>
- <maven.compiler.source>${java.version}</maven.compiler.source>
- <maven.compiler.target>${java.version}</maven.compiler.target>
- <argLine>-Xmx4g -Duser.language=en -Duser.country=US
-Dfile.encoding=UTF-8</argLine>
- <charset.encoding>UTF-8</charset.encoding>
-
<project.build.sourceEncoding>${charset.encoding}</project.build.sourceEncoding>
-
<project.build.resourceEncoding>${charset.encoding}</project.build.resourceEncoding>
-
<project.reporting.outputEncoding>${charset.encoding}</project.reporting.outputEncoding>
-
- <!-- org.codehaus plugins -->
- <!-- used for strict profile testing-->
-
<plexus-compiler-javac-errorprone.version>2.8.5</plexus-compiler-javac-errorprone.version>
- <versions-maven-plugin.version>2.8.1</versions-maven-plugin.version>
-
- <!-- Maven Plugins -->
- <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version> <!--
overrides parent -->
- <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <!--
overrides parent -->
- <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version> <!--
overrides parent -->
- <maven-enforcer-plugin.version>3.0.0-M3</maven-enforcer-plugin.version>
<!-- overrides parent -->
- <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version> <!-- overrides
parent -->
- <maven-javadoc-plugin.version>3.3.0</maven-javadoc-plugin.version> <!--
overrides parent -->
- <maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version> <!--
overrides parent -->
-
<maven-remote-resources-plugin.version>1.7.0</maven-remote-resources-plugin.version>
<!-- overrides parent -->
- <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <!--
overrides parent -->
- <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
<!-- overrides parent -->
- <maven-toolchains-plugin.version>3.0.0</maven-toolchains-plugin.version>
- <maven-install-plugin.version>3.0.0-M1</maven-install-plugin.version>
- <!-- Apache Plugins -->
- <apache-rat-plugin.version>0.13</apache-rat-plugin.version> <!-- overrides
parent -->
- <!-- org.jacoco Maven Plugins -->
- <jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
- <!-- org.eluder Maven Plugins -->
- <coveralls-repo-token></coveralls-repo-token>
- <coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
- <!-- other -->
- <lifecycle-mapping.version>1.0.0</lifecycle-mapping.version>
- <maven.deploy.skip>true</maven.deploy.skip>
- <maven.install.skip>true</maven.install.skip>
- <maven.javadoc.skip>true</maven.javadoc.skip>
- </properties>
-
- <repositories>
- <repository>
- <id>apache.snapshots</id>
- <name>Apache Snapshot Repository</name>
-
<url>https://repository.apache.org/content/groups/snapshots/org/apache/datasketches/</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>apache</id>
- <name>Apache Releases Repository</name>
-
<url>https://repository.apache.org/content/repositories/releases/org/apache/datasketches/</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- <version>${testng.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <!-- Used for UTF8 testing -->
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java</artifactId>
- <version>${protobuf-java.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <!-- Used for xxHash testing -->
- <groupId>net.openhft</groupId>
- <artifactId>zero-allocation-hashing</artifactId>
- <version>${zero-allocation-hashing.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
- <build>
- <pluginManagement>
- <plugins>
-
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>versions-maven-plugin</artifactId>
- <version>${versions-maven-plugin.version}</version>
- </plugin>
-
- <plugin>
- <!-- We want to deploy the artifacts to a staging location for
perusal -->
- <!-- Apache Parent pom: apache-release profile -->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>${maven-deploy-plugin.version}</version>
- </plugin>
-
- <plugin>
- <!-- Apache Parent pom, pluginManagement-->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>${maven-release-plugin.version}</version>
- </plugin>
-
- <plugin>
- <!-- Extends Apache Parent pom, pluginManagement-->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>${maven-jar-plugin.version}</version>
- <executions>
- <execution>
- <id>default-jar</id>
- <phase>package</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- <execution>
- <id>default-test-jar</id>
- <phase>package</phase>
- <goals>
- <goal>test-jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <!-- Extends Apache Parent pom, apache-release profile -->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>${maven-javadoc-plugin.version}</version>
- <configuration>
- <docfilessubdirs>true</docfilessubdirs>
- <doclint>none</doclint>
- <jdkToolchain>
- <version>${jdk-toolchain.version}</version>
- </jdkToolchain>
-
<excludePackageNames>org.apache.datasketches.memory.internal</excludePackageNames>
- </configuration>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <phase>package</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-enforcer-plugin</artifactId>
- <version>${maven-enforcer-plugin.version}</version>
- <executions>
- <execution>
- <id>enforce-banned-dependencies</id>
- <goals>
- <goal>enforce</goal>
- </goals>
- <configuration>
- <rules>
- <requireJavaVersion>
- <version>[1.8,1.9),[8],[11,14),[17,18)</version>
- </requireJavaVersion>
- <requireMavenVersion>
- <version>[${maven.version},)</version>
- </requireMavenVersion>
- <bannedDependencies>
- <excludes>
- <!--LGPL licensed library-->
- <exclude>com.google.code.findbugs:annotations</exclude>
- </excludes>
- </bannedDependencies>
- </rules>
- <fail>true</fail>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <!-- Apache Parent pom, pluginManagement-->
- <groupId>org.apache.rat</groupId>
- <artifactId>apache-rat-plugin</artifactId>
- <version>${apache-rat-plugin.version}</version>
- <executions>
- <execution>
- <phase>verify</phase>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <outputDirectory>${project.basedir}/rat</outputDirectory>
- <consoleOutput>true</consoleOutput>
- <useDefaultExcludes>true</useDefaultExcludes>
- <excludes>
- <exclude>**/*.yaml</exclude>
- <exclude>**/*.yml</exclude>
- <exclude>**/.*/**/*</exclude>
- <exclude>**/.clover/**/*</exclude>
- <exclude>**/test/resources/**/*.txt</exclude>
- <exclude>**/test-output/**/*</exclude>
- <exclude>**/img/**/*.png</exclude>
- <exclude>**/git.properties</exclude>
- <exclude>**/scripts/LoremIpsum.txt</exclude>
- <exclude>LICENSE</exclude>
- <exclude>NOTICE</exclude>
- </excludes>
- </configuration>
- </plugin>
-
- <plugin>
- <!-- Extends Apache Parent pom, apache-release profile -->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>${maven-source-plugin.version}</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <phase>package</phase>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
- </execution>
- <execution>
- <id>attach-test-sources</id>
- <phase>package</phase>
- <goals>
- <goal>test-jar-no-fork</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <!-- Apache Parent pom, pluginManagement-->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>${maven-surefire-plugin.version}</version>
- <configuration>
- <trimStackTrace>false</trimStackTrace>
- <useManifestOnlyJar>false</useManifestOnlyJar>
- <redirectTestOutputToFile>true</redirectTestOutputToFile>
- <jdkToolchain>
- <version>${jdk-toolchain.version}</version>
- </jdkToolchain>
-
<reportsDirectory>${project.build.directory}/test-output/${maven.build.timestamp}</reportsDirectory>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-toolchains-plugin</artifactId>
- <version>${maven-toolchains-plugin.version}</version>
- <configuration>
- <toolchains>
- <jdk>
- <version>[1.8,1.9),[8],[11,14),[17,18)</version>
- </jdk>
- </toolchains>
- </configuration>
- <executions>
- <execution>
- <goals><goal>toolchain</goal></goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <!-- Generates code coverage report from website. -->
- <groupId>org.jacoco</groupId>
- <artifactId>jacoco-maven-plugin</artifactId>
- <version>${jacoco-maven-plugin.version}</version>
- <executions>
- <execution>
- <id>default-prepare-agent</id>
- <goals>
- <goal>prepare-agent</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <!-- Submit code coverage report to Coveralls.io. -->
- <groupId>org.eluder.coveralls</groupId>
- <artifactId>coveralls-maven-plugin</artifactId>
- <version>${coveralls-maven-plugin.version}</version>
- <configuration>
- <!--suppress UnresolvedMavenProperty -->
- <repoToken>${coveralls-repo-token}</repoToken>
- <!--suppress UnresolvedMavenProperty -->
-
<jacocoReports>${maven.multiModuleProjectDirectory}/datasketches-memory/target/site/jacoco-aggregate/jacoco.xml</jacocoReports>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven-compiler-plugin.version}</version>
- <configuration>
- <jdkToolchain>
- <version>${jdk-toolchain.version}</version>
- </jdkToolchain>
- </configuration>
- </plugin>
-
- </plugins>
- </pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-enforcer-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.rat</groupId>
- <artifactId>apache-rat-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.jacoco</groupId>
- <artifactId>jacoco-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.eluder.coveralls</groupId>
- <artifactId>coveralls-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <!-- Disable source release assembly for 'apache-release' profile.
- This is performed from a script outside Maven
- -->
- <profile>
- <id>apache-release</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>${maven-assembly-plugin.version}</version>
- <executions>
- <execution>
- <id>source-release-assembly</id>
- <phase>none</phase>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <profile>
- <id>only-eclipse</id>
- <activation>
- <property>
- <name>m2e.version</name>
- </property>
- </activation>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-remote-resources-plugin</artifactId>
- <version>${maven-remote-resources-plugin.version}</version>
- <executions>
- <execution>
- <id>process-resource-bundles</id>
- <phase>none</phase>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- </profile>
-
-
- </profiles>
-
- <!-- This Maven project is divided into an aggregator project (the root),
that manages a group of submodules that
- inherit configuration from this root module.
- A multi-module project is used to target different version-specific
features of the Java language APIs.
- Furthermore, it is a structure that is supported in most IDEs allowing
minimal disruption to developers that
- contribute to this project
- <modules>
- <module>datasketches-memory-java8</module>
- <module>datasketches-memory-java8-tests</module>
- <module>datasketches-memory-java11</module>
- <module>datasketches-memory</module>
- <module>datasketches-memory-resources</module>
- </modules>
- -->
-
-</project>
diff --git a/bin/src/main/java/org/apache/datasketches/memory/BaseState.class
b/bin/src/main/java/org/apache/datasketches/memory/BaseState.class
deleted file mode 100644
index db1716f..0000000
Binary files a/bin/src/main/java/org/apache/datasketches/memory/BaseState.class
and /dev/null differ
diff --git
a/bin/src/main/java/org/apache/datasketches/memory/DefaultMemoryRequestServer.class
b/bin/src/main/java/org/apache/datasketches/memory/DefaultMemoryRequestServer.class
deleted file mode 100644
index bf6c8e8..0000000
Binary files
a/bin/src/main/java/org/apache/datasketches/memory/DefaultMemoryRequestServer.class
and /dev/null differ
diff --git a/bin/src/main/java/org/apache/datasketches/memory/Memory.class
b/bin/src/main/java/org/apache/datasketches/memory/Memory.class
deleted file mode 100644
index 61fc1ef..0000000
Binary files a/bin/src/main/java/org/apache/datasketches/memory/Memory.class
and /dev/null differ
diff --git
a/bin/src/main/java/org/apache/datasketches/memory/MemoryCloseException.class
b/bin/src/main/java/org/apache/datasketches/memory/MemoryCloseException.class
deleted file mode 100644
index 9988496..0000000
Binary files
a/bin/src/main/java/org/apache/datasketches/memory/MemoryCloseException.class
and /dev/null differ
diff --git
a/bin/src/main/java/org/apache/datasketches/memory/MemoryException.class
b/bin/src/main/java/org/apache/datasketches/memory/MemoryException.class
deleted file mode 100644
index 65db8cf..0000000
Binary files
a/bin/src/main/java/org/apache/datasketches/memory/MemoryException.class and
/dev/null differ
diff --git
a/bin/src/main/java/org/apache/datasketches/memory/MemoryRequestServer.class
b/bin/src/main/java/org/apache/datasketches/memory/MemoryRequestServer.class
deleted file mode 100644
index 30d4f85..0000000
Binary files
a/bin/src/main/java/org/apache/datasketches/memory/MemoryRequestServer.class
and /dev/null differ
diff --git
a/bin/src/main/java/org/apache/datasketches/memory/MurmurHash3v2.class
b/bin/src/main/java/org/apache/datasketches/memory/MurmurHash3v2.class
deleted file mode 100644
index 2c0babb..0000000
Binary files
a/bin/src/main/java/org/apache/datasketches/memory/MurmurHash3v2.class and
/dev/null differ
diff --git
a/bin/src/main/java/org/apache/datasketches/memory/ReadOnlyException.class
b/bin/src/main/java/org/apache/datasketches/memory/ReadOnlyException.class
deleted file mode 100644
index 9acce5a..0000000
Binary files
a/bin/src/main/java/org/apache/datasketches/memory/ReadOnlyException.class and
/dev/null differ
diff --git
a/bin/src/main/java/org/apache/datasketches/memory/Utf8CodingException.class
b/bin/src/main/java/org/apache/datasketches/memory/Utf8CodingException.class
deleted file mode 100644
index d68ec9c..0000000
Binary files
a/bin/src/main/java/org/apache/datasketches/memory/Utf8CodingException.class
and /dev/null differ
diff --git
a/bin/src/main/java/org/apache/datasketches/memory/WritableMemory.class
b/bin/src/main/java/org/apache/datasketches/memory/WritableMemory.class
deleted file mode 100644
index 340a03f..0000000
Binary files
a/bin/src/main/java/org/apache/datasketches/memory/WritableMemory.class and
/dev/null differ
diff --git a/bin/src/main/java/org/apache/datasketches/memory/XxHash.class
b/bin/src/main/java/org/apache/datasketches/memory/XxHash.class
deleted file mode 100644
index ef92cad..0000000
Binary files a/bin/src/main/java/org/apache/datasketches/memory/XxHash.class
and /dev/null differ
diff --git
a/bin/src/main/java/org/apache/datasketches/memory/package-info.class
b/bin/src/main/java/org/apache/datasketches/memory/package-info.class
deleted file mode 100644
index 5ccce46..0000000
Binary files
a/bin/src/main/java/org/apache/datasketches/memory/package-info.class and
/dev/null differ
diff --git a/bin/tools/CloverConfig.txt b/bin/tools/CloverConfig.txt
deleted file mode 100644
index 77ea2ce..0000000
--- a/bin/tools/CloverConfig.txt
+++ /dev/null
@@ -1,49 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-Clover Config for Eclipse:
-
-At Project Level Properties:
- Instrumentation:
- Initstring: Default value
- Output Folder: ...project output dir(s)
- Flush Policy: At JVM shutdown ...
- Misc: Fully qualify ... , Instrument and compile at statement
level
- Contexts:
- Check: assert statements
- Add Custom Coverage Context Filter:
- private-constructor: also see link below
- Method
- (.* )?private +[a-zA-Z0-9_$]+ *\( *\).*
- Source Files
- Only look ...
- [check] src/main/java[includes=**/*.java][excludes=]
- [check] src/test/java[includes=**/*.java][excludes=]
- Test Classes
- Assume all source in the specified folders are tests or test
utility classes
- [check] src/test/java
-
-At Clover "down-triangle" menu:
- Columns:
- Element
- % TOTAL Coverage
- Uncovered Elements: Custom: %UncoveredElements * TotalElements
/ 100
- Total Elements
-
-
-
-http://alexruizlog.blogspot.com/2009/04/how-to-make-clover-ignore-private_21.html
\ No newline at end of file
diff --git a/bin/tools/FindBugsExcludeFilter.xml
b/bin/tools/FindBugsExcludeFilter.xml
deleted file mode 100644
index ae68389..0000000
--- a/bin/tools/FindBugsExcludeFilter.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied. See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<FindBugsFilter> <!-- memory -->
-
- <!-- Too many false positives to be useful. I could not make it happy :( -->
- <Match>
- <Bug pattern="SF_SWITCH_NO_DEFAULT" />
- </Match>
-
- <Match> <!-- Exclude for test classes; too many False Positives. -->
- <Bug pattern="NP_NULL_PARAM_DEREF_NONVIRTUAL" />
- <Class name="~.*\.*Test" />
- </Match>
-
- <Match> <!-- Exclude for test classes; too many False Positives. -->
- <Bug pattern="DLS_DEAD_LOCAL_STORE" />
- <Class name="~.*\.*Test" />
- </Match>
-
-</FindBugsFilter>
-
-
-
-<!-- Examples: -->
-
-<!-- Exclude java.* classes -->
- <!--
- <Match>
- <Package name="java\.*" />
- </Match>
--->
-
- <!-- Exclude test classes -->
-<!--
- <Match>
- <Class name="~.*\.*Test" />
- </Match>
--->
-
-<!--
- <Match>
- <Class name="com.foobar.ClassNotToBeAnalyzed" />
- </Match>
--->
-<!--
- <Match>
- <Class name="com.foobar.ClassWithSomeBugsMatched" />
- <Bug code="DE,UrF,SIC" />
- </Match>
--->
- <!-- Match all XYZ violations. -->
-<!--
- <Match>
- <Bug code="XYZ" />
- </Match>
--->
- <!-- Match all doublecheck violations in these methods of "AnotherClass".
-->
-<!--
- <Match>
- <Class name="com.foobar.AnotherClass" />
- <Or>
- <Method name="nonOverloadedMethod" />
- <Method name="frob" params="int,java.lang.String" returns="void" />
- <Method name="blat" params="" returns="boolean" />
- </Or>
- <Bug code="DC" />
- </Match>
--->
- <!-- A method with a dead local store false positive (medium priority).
-->
-<!--
- <Match>
- <Class name="com.foobar.MyClass" />
- <Method name="someMethod" />
- <Bug pattern="DLS_DEAD_LOCAL_STORE" />
- <Priority value="2" />
- </Match>
--->
diff --git a/bin/tools/MemoryCheckstyle.xml b/bin/tools/MemoryCheckstyle.xml
deleted file mode 100644
index 93c3bf3..0000000
--- a/bin/tools/MemoryCheckstyle.xml
+++ /dev/null
@@ -1,398 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE module PUBLIC
- "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
- "https://checkstyle.org/dtds/configuration_1_3.dtd">
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied. See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<!--
- MemoryCheckstyle.xml
-
- Checkstyle is very configurable. Be sure to read the documentation at
- http://checkstyle.sourceforge.net (or in your downloaded distribution).
-
- To completely disable a check, comment it out, delete it, or set
- property name="severity" value="ignore".
--->
-
-<module name="Checker">
- <property name="charset" value="UTF-8"/>
- <property name="severity" value="warning"/>
- <property name="fileExtensions" value="java"/>
-
- <module name="BeforeExecutionExclusionFileFilter">
- <property name="fileNamePattern"
value="src[\\/]test[\\/]java[\\/].+$|module\-info\.java.+$"/>
- </module>
-
- <module name="FileTabCharacter">
- <property name="eachLine" value="true"/>
- </module>
-
- <module name="JavadocPackage"/>
-
- <module name="NewlineAtEndOfFile">
- <property name="lineSeparator" value="lf"/>
- </module>
-
- <!-- Size Violations -->
- <module name="LineLength">
- <property name="severity" value="warning"/>
- <property name="max" value="120"/>
- <property name="ignorePattern" value="^package.*|^import.*|a
href|href|http://|https://|ftp://"/>
- <!-- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/> -->
- </module>
-
- <module name="SuppressWithPlainTextCommentFilter">
- <property name="offCommentFormat" value="//CHECKSTYLE.OFF\: ([\w\|]+)"/>
- <property name="onCommentFormat" value="//CHECKSTYLE.ON\: ([\w\|]+)"/>
- <property name="checkFormat" value="$1"/>
- </module>
-
- <!-- ******************************************************** -->
-
- <module name="TreeWalker">
-
- <!-- Annotations -->
- <module name="AnnotationLocation">
- <property name="tokens" value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF,
METHOD_DEF, CTOR_DEF"/>
- </module>
-
- <module name="AnnotationLocation">
- <property name="tokens" value="VARIABLE_DEF"/>
- <property name="allowSamelineMultipleAnnotations" value="true"/>
- </module>
-
- <!-- Block Checks -->
- <module name="EmptyBlock">
- <property name="severity" value="warning"/>
- <property name="option" value="TEXT"/>
- <property name="tokens" value="LITERAL_TRY, LITERAL_FINALLY, LITERAL_IF,
LITERAL_ELSE, LITERAL_SWITCH"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="EmptyCatchBlock">
- <property name="severity" value="ignore"/>
- <property name="exceptionVariableName" value="expected"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="LeftCurly">
- <!-- doesn't allow for if (n == 0) { return 0.0; }, which is readable
and not corruptable -->
- <property name="severity" value="ignore"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="NeedBraces">
- <property name="allowSingleLineStatement" value="false"/> <!-- default =
false -->
- <property name="allowEmptyLoopBody" value="false"/> <!-- default =
false -->
- </module>
-
- <module name="RightCurly">
- <!-- requires right curly start a new line; alone: on a line alone -->
- <property name="severity" value="ignore"/>
- <property name="option" value="alone"/>
- <property name="tokens" value="CLASS_DEF, METHOD_DEF, CTOR_DEF,
LITERAL_FOR, LITERAL_WHILE, LITERAL_DO, STATIC_INIT, INSTANCE_INIT"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <!-- Coding -->
- <module name="FallThrough">
- <property name="severity" value="warning"/>
- <property name="reliefPattern" value="fallthru|falls? ?through|FALL[-
]?THROUGH"/>
- <!-- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/> -->
- </module>
-
- <module name="FinalLocalVariable">
- <property name="severity" value="warning"/>
- <property name="tokens" value="VARIABLE_DEF,PARAMETER_DEF"/>
- </module>
-
- <module name="IllegalTokenText">
- <property name="severity" value="warning"/>
- <property name="tokens" value="STRING_LITERAL, CHAR_LITERAL"/>
- <property name="format"
value="\\u00(08|09|0(a|A)|0(c|C)|0(d|D)|22|27|5(C|c))|\\(0(10|11|12|14|15|42|47)|134)"/>
- <property name="message" value="Avoid using corresponding octal or
Unicode escape."/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="MissingSwitchDefault">
- <!-- Too many false positives -->
- <property name="severity" value="ignore"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="MultipleVariableDeclarations">
- <property name="severity" value="ignore"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="NoFinalizer">
- <property name="severity" value="ignore"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="OneStatementPerLine">
- <property name="severity" value="ignore"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="OverloadMethodsDeclarationOrder">
- <property name="severity" value="ignore"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="VariableDeclarationUsageDistance">
- <property name="severity" value="ignore"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <!-- Class Design -->
- <module name="OneTopLevelClass"/>
-
- <module name="FinalClass"/>
-
- <!-- Imports -->
- <module name="AvoidStarImport"/>
-
- <module name="CustomImportOrder">
- <property name="specialImportsRegExp" value="org"/>
- <property name="sortImportsInGroupAlphabetically" value="true"/>
- <property name="separateLineBetweenGroups" value="true"/>
- <!-- Google:
"STATIC###SPECIAL_IMPORTS###THIRD_PARTY_PACKAGE###STANDARD_JAVA_PACKAGE" -->
- <property name="customImportOrderRules"
value="STATIC###STANDARD_JAVA_PACKAGE###SPECIAL_IMPORTS###THIRD_PARTY_PACKAGE"/>
- </module>
-
- <module name="RedundantImport"/>
-
- <module name="UnusedImports"/>
-
- <!-- Filters -->
- <!-- Enable suppression using comments: //CHECKSTYLE.OFF: "RULE" and
//CHECKSTYLE.ON: "RULE"
- You must specify the specific rule, as in: //CHECKSTYLE.OFF: LineLength
-->
- <module name="SuppressionCommentFilter">
- <property name="offCommentFormat" value="//CHECKSTYLE.OFF\: ([\w\|]+)"/>
- <property name="onCommentFormat" value="//CHECKSTYLE.ON\: ([\w\|]+)"/>
- <property name="checkFormat" value="$1"/>
- </module>
-
- <!-- Javadoc Comments -->
- <!-- JavadocPackage under Checker -->
- <module name="AtclauseOrder">
- <property name="tagOrder" value="@param, @return, @throws, @deprecated"/>
- <property name="target" value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF,
METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/>
- </module>
-
- <module name="JavadocMethod">
- <property name="scope" value="public"/>
- <property name="allowMissingParamTags" value="false"/> <!-- default -->
- <property name="allowMissingReturnTag" value="false"/> <!-- default -->
- <property name="allowedAnnotations" value="Override, Test"/>
- </module>
-
- <module name="JavadocParagraph"/>
-
- <module name="JavadocTagContinuationIndentation">
- <property name="severity" value="ignore"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="NonEmptyAtclauseDescription"/>
-
- <module name="SingleLineJavadoc">
- <property name="ignoreInlineTags" value="false"/>
- </module>
-
- <module name="SummaryJavadocCheck">
- <property name="severity" value="ignore"/>
- <property name="forbiddenSummaryFragments" value="^@return the *|^This
method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <!-- Miscellaneous -->
- <module name="ArrayTypeStyle">
- <property name="severity" value="ignore"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="AvoidEscapedUnicodeCharacters">
- <property name="severity" value="warning"/>
- <property name="allowEscapesForControlCharacters" value="true"/>
- <property name="allowByTailComment" value="true"/>
- <property name="allowNonPrintableEscapes" value="true"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="CommentsIndentation">
- <property name="severity" value="warning"/>
- <!-- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/> -->
- </module>
-
- <module name="Indentation">
- <property name="severity" value="ignore"/>
- <property name="basicOffset" value="2"/>
- <property name="braceAdjustment" value="0"/> <!-- default -->
- <property name="caseIndent" value="2"/>
- <property name="throwsIndent" value="4"/>
- <property name="lineWrappingIndentation" value="4"/>
- <property name="arrayInitIndent" value="2"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="OuterTypeFilename">
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="TodoComment">
- <property name="severity" value="ignore"/>
- <property name="format" value="(//TODO)|(//FIXME)"/>
- </module>
-
- <module name="UpperEll">
- <property name="severity" value="warning"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <!-- Modifiers -->
- <module name="ModifierOrder">
- <property name="severity" value="ignore"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <!-- Naming Conventions -->
- <module name="AbbreviationAsWordInName">
- <property name="severity" value="ignore"/>
- <property name="ignoreFinal" value="false"/>
- <property name="allowedAbbreviationLength" value="1"/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="ClassTypeParameterName">
- <property name="format" value="(^[A-Z][0-9]?)$|([A-Z][a-zA-Z0-9]*[T]$)"/>
- <message key="name.invalidPattern"
- value="Class type name ''{0}'' must match pattern ''{1}''."/>
- </module>
-
- <module name="LocalVariableName">
- <property name="severity" value="ignore"/>
- <property name="tokens" value="VARIABLE_DEF"/>
- <property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9]*$"/>
- <property name="allowOneCharVarInForLoop" value="true"/>
- <message key="name.invalidPattern"
- value="Local variable name ''{0}'' must match pattern ''{1}''."/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="MemberName">
- <property name="severity" value="ignore"/>
- <property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9]*$"/>
- <message key="name.invalidPattern"
- value="Member name ''{0}'' must match pattern ''{1}''."/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="MethodName">
- <property name="severity" value="ignore"/>
- <property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9_]*$"/>
- <message key="name.invalidPattern"
- value="Method name ''{0}'' must match pattern ''{1}''."/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="MethodTypeParameterName">
- <property name="format" value="(^[A-Z][0-9]?)$|([A-Z][a-zA-Z0-9]*[T]$)"/>
- <message key="name.invalidPattern"
- value="Method type name ''{0}'' must match pattern ''{1}''."/>
- </module>
-
- <module name="PackageName">
- <property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$"/>
- <message key="name.invalidPattern"
- value="Package name ''{0}'' must match pattern ''{1}''."/>
- </module>
-
- <module name="ParameterName">
- <property name="severity" value="ignore"/>
- <property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9]*$"/>
- <message key="name.invalidPattern"
- value="Parameter name ''{0}'' must match pattern ''{1}''."/>
- <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity"
value="inherit"/>
- </module>
-
- <module name="TypeName">
- <message key="name.invalidPattern"
- value="Type name ''{0}'' must match pattern ''{1}''."/>
- </module>
-
- <!-- Regexp -->
- <module name="Regexp">
- <property name="severity" value="ignore"/>
- <property name="format" value="[ \t]+$"/>
- <property name="illegalPattern" value="true"/>
- <property name="message" value="Trailing whitespace"/>
- <property name="ignoreComments" value="true"/>
- </module>
-
- <!-- Whitespace -->
- <module name="EmptyLineSeparator">
- <property name="allowNoEmptyLineBetweenFields" value="true"/>
- </module>
-
- <module name="GenericWhitespace">
- <message key="ws.followed"
- value="GenericWhitespace ''{0}'' is followed by whitespace."/>
- <message key="ws.preceded"
- value="GenericWhitespace ''{0}'' is preceded with whitespace."/>
- <message key="ws.illegalFollow"
- value="GenericWhitespace ''{0}'' should followed by whitespace."/>
- <message key="ws.notPreceded"
- value="GenericWhitespace ''{0}'' is not preceded with whitespace."/>
- </module>
-
- <module name="NoLineWrap"/> <!-- Only for import and package statements -->
-
- <module name="MethodParamPad"/>
-
- <module name="OperatorWrap">
- <property name="option" value="NL"/>
- <property name="tokens" value="BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT,
LAND, LE, LITERAL_INSTANCEOF, LOR, LT, MINUS, MOD, NOT_EQUAL, PLUS, QUESTION,
SL, SR, STAR "/>
- </module>
-
- <module name="SeparatorWrap">
- <property name="tokens" value="DOT"/>
- <property name="option" value="nl"/>
- </module>
-
- <module name="SeparatorWrap">
- <property name="tokens" value="COMMA"/>
- <property name="option" value="EOL"/>
- </module>
-
- <module name="WhitespaceAround">
- <property name="allowEmptyConstructors" value="true"/>
- <property name="allowEmptyMethods" value="true"/>
- <property name="allowEmptyTypes" value="true"/>
- <property name="allowEmptyLoops" value="true"/>
- <message key="ws.notPreceded" value="WhitespaceAround: ''{0}'' is not
preceded with whitespace."/>
- <message key="ws.notFollowed" value="WhitespaceAround: ''{0}'' is not
followed by whitespace. Empty blocks may only be represented as '{}' when not
part of a multi-block statement (4.1.3)"/>
- </module>
-
- </module> <!-- End of TreeWalker -->
-
-</module>
diff --git a/bin/tools/scripts/CheckMemoryJar.class
b/bin/tools/scripts/CheckMemoryJar.class
deleted file mode 100644
index 1b34fc3..0000000
Binary files a/bin/tools/scripts/CheckMemoryJar.class and /dev/null differ
diff --git a/bin/tools/scripts/LoremIpsum.txt b/bin/tools/scripts/LoremIpsum.txt
deleted file mode 100644
index 5c0dbb2..0000000
--- a/bin/tools/scripts/LoremIpsum.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas id fermentum
sem. Donec malesuada tristique erat vitae molestie. In urna eros, scelerisque
ut finibus a, commodo et felis. Sed lacinia lacus ex, sit amet imperdiet tortor
rutrum dictum. Nunc turpis dolor, placerat non condimentum quis, suscipit ut
libero. Morbi suscipit porta nibh, sit amet bibendum erat posuere maximus.
Pellentesque egestas magna sed purus scelerisque aliquam. Vestibulum placerat
odio risus, nec semper sa [...]
-
-Suspendisse vitae elit urna. Donec orci dolor, ullamcorper ut felis eget,
porta facilisis ante. Vivamus odio quam, porta sed sapien quis, sodales
tincidunt ligula. Donec porttitor.
\ No newline at end of file
diff --git a/bin/tools/scripts/compile-package-jar.sh
b/bin/tools/scripts/compile-package-jar.sh
deleted file mode 100755
index c9d0162..0000000
--- a/bin/tools/scripts/compile-package-jar.sh
+++ /dev/null
@@ -1,163 +0,0 @@
-#!/bin/bash -e
-
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-# This is a general bash script to build a JDK version-specific
-# datasketches-memory-X.jar without multi-release functionality.
-# This is intended to be used for developers compiling from source
-# who do not wish to install several versions of the JDK on their
-# machine.
-# The script does not assume a POM file and does not use Maven.
-# It does use git and also uses the script getGitProperties.sh.
-
-# Required Input Parameters:
-# \$1 = absolute path of JDK home directory
-# \$2 = Git Version Tag for this deployment
-# Example tag for SNAPSHOT : 1.0.0-SNAPSHOT
-# Example tag for Release Candidate: 1.0.0-RC1
-# Example tag for Release : 1.0.0
-# \$3 = absolute path of project.basedir
-# For example: $ <this script>.sh $JAVA_HOME 2.0.0-RC1 .
-
-if [ -z "$1" ]; then echo "Missing JDK home"; exit 1; fi
-if [ -z "$2" ]; then echo "Missing Git Tag"; exit 1; fi
-if [ -z "$3" ]; then echo "Missing project.basedir"; exit 1; fi
-
-#### Extract JDKHome, Version and ProjectBaseDir from input parameters ####
-JDKHome=$1
-GitTag=$2
-ProjectBaseDir=$3 #this must be an absolute path
-
-#### Setup absolute directory references ####
-ProjectArtifactId="memory"
-ScriptsDir=${ProjectBaseDir}/tools/scripts/
-MemoryMapFile=$ScriptsDir/LoremIpsum.txt
-
-#### Initialise path dependent variables ####
-OutputDir=target
-OutputJar=${OutputDir}/org.apache.datasketches.memory-${GitTag}.jar
-
-PackageDir=${OutputDir}/archive-tmp
-PackageSrc=${PackageDir}/src
-PackageTests=${PackageDir}/test-classes
-PackageContents=${PackageDir}/contents
-PackageMeta=${PackageContents}/META-INF
-PackageManifest=${PackageMeta}/MANIFEST.MF
-
-MemoryJava8Src=datasketches-memory-java8/src/main/java
-MemoryJava11Src=datasketches-memory-java11/src/main/java
-
-#### Move to project directory ####
-cd ${ProjectBaseDir}
-
-#### Use JAVA_HOME to set required executables ####
-if [[ -n "$JDKHome" ]] && [[ -x "${JDKHome}/bin/java" ]]; then
Java_="${JDKHome}/bin/java"; else echo "No java version could be found.";
exit 1; fi
-if [[ -n "$JDKHome" ]] && [[ -x "${JDKHome}/bin/javac" ]]; then
Javac_="${JDKHome}/bin/javac"; else echo "No javac version could be
found."; exit 1; fi
-if [[ -n "$JDKHome" ]] && [[ -x "${JDKHome}/bin/jar" ]]; then
Jar_="${JDKHome}/bin/jar"; else echo "No jar version could be found.";
exit 1; fi
-
-#### Parse java -version into major version number ####
-if [[ "$Java_" ]]; then
- # This expression extracts the correct major version of the Java runtime.
- # For older runtime versions, such as 1.8, the leading '1.' is removed.
- # Adapted from this answer on StackOverflow:
- #
https://stackoverflow.com/questions/7334754/correct-way-to-check-java-version-from-bash-script/56243046#56243046
- JavaVersion=$("$Java_" -version 2>&1 | head -1 | cut -d'"' -f2 | sed
'/^1\./s///' | cut -d'.' -f1)
-else
- echo "No version information could be determined from installed JDK."; exit
1;
-fi
-
-# Exit if Java version too low (< 8) or too high (> 13)
-if [[ $JavaVersion -lt 8 || $JavaVersion -gt 13 ]]; then
- echo "Java version not supported: " $JavaVersion; exit 1;
-fi
-
-#### Cleanup and setup output directories ####
-echo
-if [ -d "$OutputDir" ]; then rm -r $OutputDir; fi
-mkdir -p $PackageSrc
-mkdir -p $PackageTests
-mkdir -p $PackageMeta
-
-#### Copy LICENSE and NOTICE ####
-cp LICENSE $PackageMeta
-cp NOTICE $PackageMeta
-
-#### Generate MANIFEST.MF ####
-cat >> ${PackageManifest}<< EOF
-Manifest-Version: 1.0
-Created-By: Apache Datasketches Memory compile-package-jar.sh
-Multi-Release: false
-EOF
-
-#### Generate git.properties file ####
-echo "$($ScriptsDir/getGitProperties.sh $ProjectBaseDir $ProjectArtifactId
$GitTag)" >> $PackageManifest
-
-#### Copy source tree to target/src
-rsync -a -I $MemoryJava8Src $PackageSrc
-
-if [[ $JavaVersion -gt 10 ]]; then
- #### Copy java 11 src trees to target/src, overwriting replacements
- rsync -a -I $MemoryJava11Src $PackageSrc
-fi
-
-#### Compile ####
-echo "--- CLEAN & COMPILE ---"
-echo
-echo "Compiling with JDK version $JavaVersion..."
-if [[ $JavaVersion -lt 9 ]]; then
- ${Javac_} -d $PackageContents $(find $PackageSrc -name '*.java')
-else
- # Compile with JPMS exports
- ${Javac_} \
- --add-exports java.base/jdk.internal.ref=org.apache.datasketches.memory \
- --add-exports java.base/sun.nio.ch=org.apache.datasketches.memory \
- -d $PackageContents $(find $PackageSrc -name '*.java')
-fi
-echo
-echo "--- JARS ---"
-echo
-echo "Building JAR from ${PackageContents}..."
-${Jar_} cf $OutputJar -C $PackageContents .
-echo
-
-# Uncomment this section to display JAR contents
-# echo "--- JAR CONTENTS ---"
-# echo
-# ${Jar_} tf ${OutputJar}
-# echo
-
-echo "--- RUN JAR CHECKS ---"
-echo
-if [[ $JavaVersion -eq 8 ]]; then
- ${Javac_} -cp $OutputJar -d $PackageTests $(find $ScriptsDir -name '*.java')
- ${Java_} -cp $PackageTests:$OutputJar
org.apache.datasketches.memory.tools.scripts.CheckMemoryJar $MemoryMapFile
-else
- ${Javac_} \
- --add-modules org.apache.datasketches.memory \
- -p "$OutputJar" -d $PackageTests $(find $ScriptsDir -name '*.java')
-
- ${Java_} \
- --add-modules org.apache.datasketches.memory \
- --add-exports java.base/jdk.internal.misc=org.apache.datasketches.memory \
- --add-exports java.base/jdk.internal.ref=org.apache.datasketches.memory \
- --add-opens java.base/java.nio=org.apache.datasketches.memory \
- --add-opens java.base/sun.nio.ch=org.apache.datasketches.memory \
- -p $OutputJar -cp $PackageTests
org.apache.datasketches.memory.tools.scripts.CheckMemoryJar $MemoryMapFile
-fi
-echo
-echo "Successfully built ${OutputJar}"
diff --git a/bin/tools/scripts/getGitProperties.sh
b/bin/tools/scripts/getGitProperties.sh
deleted file mode 100755
index 0d8f0dc..0000000
--- a/bin/tools/scripts/getGitProperties.sh
+++ /dev/null
@@ -1,66 +0,0 @@
-#!/bin/bash -e
-
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-MyBase=$(pwd)
-ProjectBaseDir=$1 #this must be an absolute path
-ArtId=$2
-Tag=$3
-
-####Move to project directory####
-cd ${ProjectBaseDir}
-
-CR=$'\n'
-
-#Add Implementation Vendor
-prop=$prop'Implementation-Vendor: '
-tmp='The Apache Software Foundataion'$CR
-prop=$prop$tmp
-
-#Add GroupId : ArtifactId
-prop=$prop'GroupId-ArtifactId: '
-tmp='org.apache.datasketches:'$ArtId$CR
-prop=$prop$tmp
-
-# Add Branch
-prop=$prop'git.branch: '
-tmp=''$(git rev-parse --abbrev-ref HEAD)''$CR
-prop=$prop$tmp
-
-#Add commit-id
-prop=$prop'git.commit.id.full: '
-ID=$(git rev-parse HEAD)
-tmp=''$ID''$CR
-prop=$prop$tmp
-
-#Add timestamp
-prop=$prop'git.commit.time: '
-tmp=''$(git show --no-patch --no-notes --pretty='%cI' $ID)''$CR
-prop=$prop$tmp
-
-#Add user email
-prop=$prop'git-commit-user-email: '
-tmp=''$(git show --no-patch --no-notes --pretty='%ce' $ID)''$CR
-prop=$prop$tmp
-
-#Add Tag
-prop=$prop'git.commit.tag: '
-tmp=''$Tag''$CR
-prop=$prop$tmp
-
-echo "$prop"
diff --git a/bin/tools/toolchains.xml b/bin/tools/toolchains.xml
deleted file mode 100644
index 9ab86f2..0000000
--- a/bin/tools/toolchains.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="UTF8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied. See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<toolchains>
- <toolchain>
- <type>jdk</type>
- <provides>
- <version>1.8</version>
- <vendor>openjdk</vendor>
- </provides>
- <configuration>
- <jdkHome>${env.JAVA8_HOME}</jdkHome>
- </configuration>
- </toolchain>
- <toolchain>
- <type>jdk</type>
- <provides>
- <version>8</version>
- <vendor>openjdk</vendor>
- </provides>
- <configuration>
- <jdkHome>${env.JAVA8_HOME}</jdkHome>
- </configuration>
- </toolchain>
- <toolchain>
- <type>jdk</type>
- <provides>
- <version>11</version>
- <vendor>openjdk</vendor>
- </provides>
- <configuration>
- <jdkHome>${env.JAVA11_HOME}</jdkHome>
- </configuration>
- </toolchain>
-</toolchains>
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]