-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Java] Convert FutureResult and RealResult to kotlin (#27830)
* Convert FutureResult and RealResult to kotlin * Restyled by gn --------- Co-authored-by: Restyled.io <[email protected]>
- Loading branch information
Showing
5 changed files
with
96 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 0 additions & 68 deletions
68
...s/java-matter-controller/java/src/com/matter/controller/commands/common/FutureResult.java
This file was deleted.
Oops, something went wrong.
75 changes: 75 additions & 0 deletions
75
...les/java-matter-controller/java/src/com/matter/controller/commands/common/FutureResult.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* Copyright (c) 2023 Project CHIP Authors | ||
* All rights reserved. | ||
* | ||
* 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.matter.controller.commands.common | ||
|
||
import java.util.logging.Level | ||
import java.util.logging.Logger | ||
|
||
/** | ||
* Implements the future result that encapculates the optional realResult, application would wait | ||
* for realResult set by other thread wben receiving data from the other end. If the expected | ||
* duration elapsed without receiving the expected realResult, the runtime exception would be | ||
* raised. | ||
*/ | ||
class RealResultException(message: String) : RuntimeException(message) | ||
|
||
class FutureResult { | ||
private var realResult: RealResult? = null | ||
private var timeoutMs: Long = 0 | ||
private val logger = Logger.getLogger(FutureResult::class.java.name) | ||
private val lock = Object() | ||
|
||
fun setTimeoutMs(timeoutMs: Long) { | ||
this.timeoutMs = timeoutMs | ||
} | ||
|
||
fun setRealResult(realResult: RealResult) { | ||
synchronized(lock) { | ||
if (this.realResult != null) { | ||
throw RealResultException("Error, real result has been set!") | ||
} | ||
this.realResult = realResult | ||
lock.notifyAll() | ||
} | ||
} | ||
|
||
fun waitResult() { | ||
val start = System.currentTimeMillis() | ||
synchronized(lock) { | ||
while (realResult == null) { | ||
try { | ||
if (System.currentTimeMillis() > start + timeoutMs) { | ||
throw RealResultException("Timeout!") | ||
} | ||
lock.wait() | ||
} catch (e: InterruptedException) { | ||
logger.log(Level.INFO, "Wait Result failed with exception: " + e.message) | ||
} | ||
} | ||
if (realResult?.getResult() == false) { | ||
logger.log(Level.INFO, "Error: ${realResult?.getError()}") | ||
throw RealResultException("Received failure test result") | ||
} | ||
} | ||
} | ||
|
||
fun clear() { | ||
synchronized(lock) { realResult = null } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters