org.sheinbergon:useragent-analyzer-cache-caffeine

A non-opinionated User-Agent analysis proxy written in Java 8

License

License

Categories

Categories

Caffeine Data Caching
GroupId

GroupId

org.sheinbergon
ArtifactId

ArtifactId

useragent-analyzer-cache-caffeine
Last Version

Last Version

0.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

A non-opinionated User-Agent analysis proxy written in Java 8

Download useragent-analyzer-cache-caffeine

How to add to project

<!-- https://jarcasting.com/artifacts/org.sheinbergon/useragent-analyzer-cache-caffeine/ -->
<dependency>
    <groupId>org.sheinbergon</groupId>
    <artifactId>useragent-analyzer-cache-caffeine</artifactId>
    <version>0.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.sheinbergon/useragent-analyzer-cache-caffeine/
implementation 'org.sheinbergon:useragent-analyzer-cache-caffeine:0.0.1'
// https://jarcasting.com/artifacts/org.sheinbergon/useragent-analyzer-cache-caffeine/
implementation ("org.sheinbergon:useragent-analyzer-cache-caffeine:0.0.1")
'org.sheinbergon:useragent-analyzer-cache-caffeine:jar:0.0.1'
<dependency org="org.sheinbergon" name="useragent-analyzer-cache-caffeine" rev="0.0.1">
  <artifact name="useragent-analyzer-cache-caffeine" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.sheinbergon', module='useragent-analyzer-cache-caffeine', version='0.0.1')
)
libraryDependencies += "org.sheinbergon" % "useragent-analyzer-cache-caffeine" % "0.0.1"
[org.sheinbergon/useragent-analyzer-cache-caffeine "0.0.1"]

Dependencies

compile (2)

Group / Artifact Type Version
com.github.ben-manes.caffeine : caffeine jar 2.5.5
org.sheinbergon : useragent-analyzer-core jar 0.0.1

provided (1)

Group / Artifact Type Version
org.projectlombok : lombok jar 1.16.18

test (5)

Group / Artifact Type Version
org.sheinbergon : useragent-analyzer-core test-jar 0.0.1
junit : junit jar 4.12
org.mockito : mockito-core jar 2.10.0
org.jooq : jool jar 0.9.12
org.apache.commons : commons-lang3 jar 3.6

Project Modules

There are no modules declared in this project.

useragent-analyzer

Build Status License Maven metadata URI GitHub release Coverage Status

A non-opinionated User-Agent analysis proxy written in Java 8.

Introduction

The purpose of this project is to encapsulate several popular useragent analysis frameworks for the JVM (and other languages) under a single facade/interface, allowing developers to easily move between frameworks/implementations in any case some becomes obsolete/updated or simply doesn't quite fit the accuracy needs of the task at hand

Key concepts

  • Provides both synchronous & fully asynchronous APIs.
  • Pluggable architecture for both caching & processing(parsing) modules.

Getting Started

Dependencies

Simply add the 'useragent-analyzer-dist' dependency.

Note that this distribution jar relies on the user providing the j2v8 jar for the targeted architecture. The following examples targets 64 bit linux execution environments, but other operating systems are supported as well. See Maven Central for additional information.

Maven

<dependencies>
    ...
    <dependency>
        <groupId>org.sheinbergon</groupId>
        <artifactId>useragent-analyzer-dist</artifactId>
        <version>0.0.1</version>
    </dependency>
    <dependency>
        <groupId>com.eclipsesource.j2v8</groupId>
        <artifactId>j2v8_linux_x86_64</artifactId>
        <version>4.8.0</version>
    </dependency>    
    ...
</dependencies>

Gradle

    compile group: 'com.eclipsesource.j2v8', name: 'j2v8_linux_x86_64', version: '4.8.0'
    compile group: 'org.sheinbergon', name: 'useragent-analyzer-dist', version: '0.0.1'

Simple setup

Setting-up a synchronous analyzer
 UserAgentAnalyzer analyzer = UserAgentAnalyzer.builder()
                .processor(UaParserJsProcessor.builder().build())
                .build();

UserAgentIngredients ingredients = analyzer.analyze("Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1")
ingredients.getOsName() // iOS
ingredients.getDeviceType() // MOBILE
Setting-up an asynchronous analyzer
AsyncUserAgentAnalyzer analyzer = AsyncUserAgentAnalyzer.builder()
                .processor(UaParserJsAsyncProcessor.builder().build())
                .build();

analyzer.analyze("Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1")
                .thenApply(UserAgentIngredients::getDeviceModel)
                ...               
Lifecycle management/shutdown
analyzer.teardown();

Advanced setup

See Implementation Specs below

Implemntation Specs

Processors

ua-paresr-js

  • Uses the popular javascript useragent parsing library ua-parser.js
  • Javascript code is executed using J2V8
  • Requires an explicit J2V8 dependency defintion per operating system/architecture. See supported architectures here
  • As V8Engine instances are not thread-safe, an object-pool is used to acheive thread-safety with concurrency, supporting confiugrable pool size & allocation timeout
  • Async version also supports executor pools size for V8 Engine allocation and ingestion
// Sync
UserAgentAnalyzer.builder()
    .processor(UaParserJsProcessor.builder()
        .v8AllocationTimeout(1000L)
        .v8PoolSize(5)
        .build())
    ...

// Async
AsyncUserAgentAnalyzer.builder()
    .processor(UaParserJsAsyncProcessor.builder()           
        .ingestionConcurrency(4)
        .v8AllocationConcurrency(16)
        .v8AllocationTimeout(1000L)
        .v8PoolSize(5)
        .build())
    ...

Caches

psuedo

  • Default cache implementation, never caches anything (always misses)

caffeine

  • Caching module implemented on top of caffeine
  • Supports max entries configuration
// Sync
UserAgentAnalyzer.builder()
    .cache(CaffeineCache.builder()
        .maxEntries(100000)
        .build())
    ...

// Async
AsyncUserAgentAnalyzer.builder()
    .cache(CaffeineAsyncCache.builder()
        .maxEntries(100000)
        .build())
    ...

Future plans:

  • Add concurrency tests
  • Add more cache implementations - guava
  • Add more processor implementations - woothee, yauaa

Versions

Version
0.0.1