com.caoccao.javet.interop.engine.observers.V8RuntimeObserverAverageReferenceCount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javet-macos Show documentation
Show all versions of javet-macos Show documentation
Javet is Java + V8 (JAVa + V + EighT). It is an awesome way of embedding Node.js and V8 in Java.
/*
* Copyright (c) 2021-2022. caoccao.com Sam Cao
*
* 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.
*/
package com.caoccao.javet.interop.engine.observers;
import com.caoccao.javet.interop.V8Runtime;
import java.util.ArrayList;
import java.util.List;
/**
* The type V8 runtime observer average reference count.
*
* @since 1.0.6
*/
public class V8RuntimeObserverAverageReferenceCount implements IV8RuntimeObserver {
/**
* The Reference count list.
*
* @since 1.0.6
*/
protected final List referenceCountList;
/**
* Instantiates a new V8 runtime observer average reference count.
*
* @since 1.0.6
*/
public V8RuntimeObserverAverageReferenceCount() {
this(256);
}
/**
* Instantiates a new V8 runtime observer average reference count.
*
* @param capacity the capacity
* @since 1.0.6
*/
public V8RuntimeObserverAverageReferenceCount(int capacity) {
referenceCountList = new ArrayList<>(capacity);
}
@Override
public Integer getResult() {
int averageReferenceCount = 0;
if (!referenceCountList.isEmpty()) {
int totalReferenceCount = 0;
for (int referenceCount : referenceCountList) {
totalReferenceCount += referenceCount;
}
final int v8RuntimeCount = referenceCountList.size();
averageReferenceCount = totalReferenceCount / v8RuntimeCount;
}
return averageReferenceCount;
}
@Override
public boolean observe(V8Runtime v8Runtime) {
referenceCountList.add(v8Runtime.getReferenceCount());
return true;
}
@Override
public void reset() {
referenceCountList.clear();
}
}