99 changed files with 756 additions and 341 deletions
@ -0,0 +1,46 @@ |
|||||
|
/** |
||||
|
* Copyright © 2016-2019 The Thingsboard Authors |
||||
|
* |
||||
|
* 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 org.thingsboard.server.service.script; |
||||
|
|
||||
|
import com.google.common.util.concurrent.FutureCallback; |
||||
|
import lombok.AllArgsConstructor; |
||||
|
|
||||
|
import javax.annotation.Nullable; |
||||
|
import java.util.concurrent.TimeoutException; |
||||
|
import java.util.concurrent.atomic.AtomicInteger; |
||||
|
|
||||
|
@AllArgsConstructor |
||||
|
public class JsStatCallback<T> implements FutureCallback<T> { |
||||
|
|
||||
|
private final AtomicInteger jsSuccessMsgs; |
||||
|
private final AtomicInteger jsTimeoutMsgs; |
||||
|
private final AtomicInteger jsFailedMsgs; |
||||
|
|
||||
|
|
||||
|
@Override |
||||
|
public void onSuccess(@Nullable T result) { |
||||
|
jsSuccessMsgs.incrementAndGet(); |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public void onFailure(Throwable t) { |
||||
|
if (t instanceof TimeoutException || (t.getCause() != null && t.getCause() instanceof TimeoutException)) { |
||||
|
jsTimeoutMsgs.incrementAndGet(); |
||||
|
} else { |
||||
|
jsFailedMsgs.incrementAndGet(); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,54 @@ |
|||||
|
/** |
||||
|
* Copyright © 2016-2019 The Thingsboard Authors |
||||
|
* |
||||
|
* 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 org.thingsboard.common.util; |
||||
|
|
||||
|
import java.util.concurrent.ThreadFactory; |
||||
|
import java.util.concurrent.atomic.AtomicInteger; |
||||
|
|
||||
|
/** |
||||
|
* Copy of Executors.DefaultThreadFactory but with ability to set name of the pool |
||||
|
*/ |
||||
|
public class ThingsBoardThreadFactory implements ThreadFactory { |
||||
|
private static final AtomicInteger poolNumber = new AtomicInteger(1); |
||||
|
private final ThreadGroup group; |
||||
|
private final AtomicInteger threadNumber = new AtomicInteger(1); |
||||
|
private final String namePrefix; |
||||
|
|
||||
|
public static ThingsBoardThreadFactory forName(String name) { |
||||
|
return new ThingsBoardThreadFactory(name); |
||||
|
} |
||||
|
|
||||
|
private ThingsBoardThreadFactory(String name) { |
||||
|
SecurityManager s = System.getSecurityManager(); |
||||
|
group = (s != null) ? s.getThreadGroup() : |
||||
|
Thread.currentThread().getThreadGroup(); |
||||
|
namePrefix = name + "-" + |
||||
|
poolNumber.getAndIncrement() + |
||||
|
"-thread-"; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public Thread newThread(Runnable r) { |
||||
|
Thread t = new Thread(group, r, |
||||
|
namePrefix + threadNumber.getAndIncrement(), |
||||
|
0); |
||||
|
if (t.isDaemon()) |
||||
|
t.setDaemon(false); |
||||
|
if (t.getPriority() != Thread.NORM_PRIORITY) |
||||
|
t.setPriority(Thread.NORM_PRIORITY); |
||||
|
return t; |
||||
|
} |
||||
|
} |
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue