Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-server
Commits
46b05977
Commit
46b05977
authored
1 week ago
by
Joscha Schmiedt
Browse files
Options
Downloads
Patches
Plain Diff
Add handling of SSS server messages in gRPC
parent
fd0ed36e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!121
Draft: Add server side scripting to gRPC API
Pipeline
#62241
passed
1 week ago
Stage: info
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/caosdb/server/grpc/ServerSideScriptingServiceImpl.java
+37
-3
37 additions, 3 deletions
...rg/caosdb/server/grpc/ServerSideScriptingServiceImpl.java
with
37 additions
and
3 deletions
src/main/java/org/caosdb/server/grpc/ServerSideScriptingServiceImpl.java
+
37
−
3
View file @
46b05977
...
@@ -240,9 +240,43 @@ public class ServerSideScriptingServiceImpl extends ServerSideScriptingServiceIm
...
@@ -240,9 +240,43 @@ public class ServerSideScriptingServiceImpl extends ServerSideScriptingServiceIm
new
StatusException
(
Status
.
NOT_FOUND
.
withDescription
(
description
).
withCause
(
e
)));
new
StatusException
(
Status
.
NOT_FOUND
.
withDescription
(
description
).
withCause
(
e
)));
return
;
return
;
}
}
// TODO: SERVER_SIDE_DOES_NOT_EXIST, SERVER_SIDE_SCRIPT_NOT_EXECUTABLE,
else
if
(
e
==
ServerMessages
.
SERVER_SIDE_SCRIPT_DOES_NOT_EXIST
)
// SERVER_SIDE_SCRIPT_ERROR, SERVER_SIDE_SCRIPT_SETUP_ERROR,
{
// SERVER_SIDE_SCRIPT_TIMEOUT, SERVER_SIDE_SCRIPT_MISSING_CALL
responseObserver
.
onError
(
new
StatusException
(
Status
.
NOT_FOUND
.
withDescription
(
description
).
withCause
(
e
)));
return
;
}
else
if
(
e
==
ServerMessages
.
SERVER_SIDE_SCRIPT_NOT_EXECUTABLE
)
{
responseObserver
.
onError
(
new
StatusException
(
Status
.
PERMISSION_DENIED
.
withDescription
(
description
).
withCause
(
e
)));
return
;
}
else
if
(
e
==
ServerMessages
.
SERVER_SIDE_SCRIPT_ERROR
)
{
responseObserver
.
onError
(
new
StatusException
(
Status
.
UNKNOWN
.
withDescription
(
description
).
withCause
(
e
)));
return
;
}
else
if
(
e
==
ServerMessages
.
SERVER_SIDE_SCRIPT_SETUP_ERROR
)
{
responseObserver
.
onError
(
new
StatusException
(
Status
.
UNKNOWN
.
withDescription
(
description
).
withCause
(
e
)));
return
;
}
else
if
(
e
==
ServerMessages
.
SERVER_SIDE_SCRIPT_TIMEOUT
)
{
responseObserver
.
onError
(
new
StatusException
(
Status
.
DEADLINE_EXCEEDED
.
withDescription
(
description
).
withCause
(
e
)));
return
;
}
else
if
(
e
==
ServerMessages
.
SERVER_SIDE_SCRIPT_MISSING_CALL
)
{
responseObserver
.
onError
(
new
StatusException
(
Status
.
INVALID_ARGUMENT
.
withDescription
(
description
).
withCause
(
e
)));
return
;
}
e
.
printStackTrace
();
e
.
printStackTrace
();
responseObserver
.
onError
(
responseObserver
.
onError
(
new
StatusException
(
Status
.
UNKNOWN
.
withDescription
(
description
).
withCause
(
e
)));
new
StatusException
(
Status
.
UNKNOWN
.
withDescription
(
description
).
withCause
(
e
)));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment