-
Notifications
You must be signed in to change notification settings - Fork 2
WIP: feat: add computation quotas check #1013
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
GhilesA
wants to merge
3
commits into
main
Choose a base branch
from
feat/add_quotas_on_computation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
484 changes: 252 additions & 232 deletions
484
src/main/java/org/gridsuite/study/server/controller/StudyController.java
Large diffs are not rendered by default.
Oops, something went wrong.
41 changes: 41 additions & 0 deletions
41
src/main/java/org/gridsuite/study/server/dto/OperationType.java
This file contains hidden or 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,41 @@ | ||
| /** | ||
| * Copyright (c) 2026, RTE (http://www.rte-france.com) | ||
| * This Source Code Form is subject to the terms of the Mozilla Public | ||
| * License, v. 2.0. If a copy of the MPL was not distributed with this | ||
| * file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
| */ | ||
| package org.gridsuite.study.server.dto; | ||
|
|
||
| /** | ||
| * @author Ghiles Abdellah {@literal <ghiles.abdellah at rte-france.com>} | ||
| */ | ||
| public enum OperationType { | ||
| CASES, | ||
| BUILD, | ||
| LOAD_FLOW, | ||
| SECURITY, | ||
| SENSITIVITY, | ||
| SHORT_CIRCUIT, | ||
| VOLTAGE_INIT, | ||
| PCC_MIN, | ||
| STATE_ESTIMATION, | ||
| BALANCE_ADJUSTEMENT, | ||
| DYNAMIC_SIMULATION, | ||
| DYNAMIC_SECURITY, | ||
| DYNAMIC_MARGIN; | ||
|
|
||
| public static OperationType mapFromComputationType(ComputationType computationType) { | ||
| return switch (computationType) { | ||
| case LOAD_FLOW -> OperationType.LOAD_FLOW; | ||
| case SECURITY_ANALYSIS -> OperationType.SECURITY; | ||
| case SENSITIVITY_ANALYSIS -> OperationType.SENSITIVITY; | ||
| case VOLTAGE_INITIALIZATION -> OperationType.VOLTAGE_INIT; | ||
| case DYNAMIC_SIMULATION -> OperationType.DYNAMIC_SIMULATION; | ||
| case DYNAMIC_SECURITY_ANALYSIS -> OperationType.DYNAMIC_SECURITY; | ||
| case DYNAMIC_MARGIN_CALCULATION -> OperationType.DYNAMIC_MARGIN; | ||
| case STATE_ESTIMATION -> OperationType.STATE_ESTIMATION; | ||
| case PCC_MIN -> OperationType.PCC_MIN; | ||
| case SHORT_CIRCUIT, SHORT_CIRCUIT_ONE_BUS -> OperationType.SHORT_CIRCUIT; | ||
| }; | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Also guard on
resultUuid != nullbefore freeing quota.Here
resultUuidcan benull(theresultUuidheader may be absent on a failure message — it's only assigned whenresultId != null). With only theuserId != nullcheck,endOperationWithQuotais called with anulloperation id, producing a malformed URL such as/quota/LOAD_FLOW/null/end. The stopped handler at Line 431 correctly guards both. Align this handler:🐛 Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents