Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository 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
pub
frama-c
Commits
c7f074fb
Commit
c7f074fb
authored
6 years ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[server] better processing of named parameters
parent
6b0195a6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/server/request.ml
+56
-40
56 additions, 40 deletions
src/plugins/server/request.ml
with
56 additions
and
40 deletions
src/plugins/server/request.ml
+
56
−
40
View file @
c7f074fb
...
@@ -187,20 +187,6 @@ type _ rq_output =
...
@@ -187,20 +187,6 @@ type _ rq_output =
|
Rdata
:
'
a
output
->
'
a
rq_output
|
Rdata
:
'
a
output
->
'
a
rq_output
|
Rfields
:
Syntax
.
field
list
->
unit
rq_output
|
Rfields
:
Syntax
.
field
list
->
unit
rq_output
(* json input processing *)
let
mk_input
(
type
a
)
name
(
input
:
a
rq_input
)
:
(
rq
->
json
->
a
)
=
match
input
with
|
Pnone
->
Senv
.
fatal
"No input defined for request '%s'"
name
|
Pdata
d
->
let
module
D
=
(
val
d
)
in
(
fun
_rq
js
->
D
.
of_json
js
)
|
Pfields
_
->
(
fun
rq
js
->
rq
.
param
<-
fmap_of_json
rq
.
param
js
)
(* json output processing *)
let
mk_output
(
type
b
)
name
(
output
:
b
rq_output
)
:
(
rq
->
b
->
json
)
=
match
output
with
|
Rnone
->
Senv
.
fatal
"No output defined for request '%s'"
name
|
Rdata
d
->
let
module
D
=
(
val
d
)
in
(
fun
_rq
v
->
D
.
to_json
v
)
|
Rfields
_
->
(
fun
rq
()
->
fmap_to_json
rq
.
result
)
(* json input syntax *)
(* json input syntax *)
let
sy_input
(
type
a
)
(
input
:
a
rq_input
)
:
Syntax
.
t
=
let
sy_input
(
type
a
)
(
input
:
a
rq_input
)
:
Syntax
.
t
=
match
input
with
match
input
with
...
@@ -229,20 +215,6 @@ let doc_output (type b) (output : b rq_output) : Markdown.block =
...
@@ -229,20 +215,6 @@ let doc_output (type b) (output : b rq_output) : Markdown.block =
|
Rdata
_
->
Markdown
.
empty
|
Rdata
_
->
Markdown
.
empty
|
Rfields
fs
->
Syntax
.
fields
~
kind
:
"Output"
(
List
.
rev
fs
)
|
Rfields
fs
->
Syntax
.
fields
~
kind
:
"Output"
(
List
.
rev
fs
)
(* current input fields *)
let
fds_input
(
type
a
)
name
(
input
:
a
rq_input
)
:
Syntax
.
field
list
=
match
input
with
|
Pdata
_
->
Senv
.
fatal
"Can not define named parameters for request '%s'"
name
|
Pnone
->
[]
|
Pfields
fds
->
fds
(* current output fields *)
let
fds_output
(
type
a
)
name
(
output
:
a
rq_output
)
:
Syntax
.
field
list
=
match
output
with
|
Rdata
_
->
Senv
.
fatal
"Can not define named results request '%s'"
name
|
Rnone
->
[]
|
Rfields
fds
->
fds
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* --- Multi-Parameters Requests --- *)
(* --- Multi-Parameters Requests --- *)
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
...
@@ -255,6 +227,7 @@ type ('a,'b) signature = {
...
@@ -255,6 +227,7 @@ type ('a,'b) signature = {
details
:
Markdown
.
block
;
details
:
Markdown
.
block
;
mutable
defined
:
bool
;
mutable
defined
:
bool
;
mutable
defaults
:
json
Fmap
.
t
;
mutable
defaults
:
json
Fmap
.
t
;
mutable
required
:
string
list
;
mutable
input
:
'
a
rq_input
;
mutable
input
:
'
a
rq_input
;
mutable
output
:
'
b
rq_output
;
mutable
output
:
'
b
rq_output
;
}
}
...
@@ -264,10 +237,22 @@ let failure_missing name fmap =
...
@@ -264,10 +237,22 @@ let failure_missing name fmap =
(
Printf
.
sprintf
"Missing parameter '%s'"
name
)
(
Printf
.
sprintf
"Missing parameter '%s'"
name
)
(
fmap_to_json
fmap
)
(
fmap_to_json
fmap
)
let
check_required
fmap
fd
=
if
not
(
Fmap
.
mem
fd
fmap
)
then
failure_missing
fd
fmap
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* --- Named Input Parameters Definitions --- *)
(* --- Named Input Parameters Definitions --- *)
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* current input fields *)
let
fds_input
s
:
Syntax
.
field
list
=
if
s
.
defined
then
Senv
.
failure
"Request '%s' has been finalized."
s
.
name
;
match
s
.
input
with
|
Pdata
_
->
Senv
.
fatal
"Can not define named parameters for request '%s'"
s
.
name
|
Pnone
->
[]
|
Pfields
fds
->
fds
let
param
(
type
a
b
)
(
s
:
(
unit
,
b
)
signature
)
~
name
~
descr
let
param
(
type
a
b
)
(
s
:
(
unit
,
b
)
signature
)
~
name
~
descr
?
default
(
input
:
a
input
)
:
a
param
=
?
default
(
input
:
a
input
)
:
a
param
=
let
module
D
=
(
val
input
)
in
let
module
D
=
(
val
input
)
in
...
@@ -277,7 +262,7 @@ let param (type a b) (s : (unit,b) signature) ~name ~descr
...
@@ -277,7 +262,7 @@ let param (type a b) (s : (unit,b) signature) ~name ~descr
fd_default
=
None
;
fd_default
=
None
;
fd_descr
=
descr
;
fd_descr
=
descr
;
}
in
}
in
s
.
input
<-
Pfields
(
fd
::
fds_input
s
.
name
s
.
input
)
;
s
.
input
<-
Pfields
(
fd
::
fds_input
s
)
;
fun
rq
->
fun
rq
->
try
D
.
of_json
(
Fmap
.
find
name
rq
.
param
)
try
D
.
of_json
(
Fmap
.
find
name
rq
.
param
)
with
Not_found
->
with
Not_found
->
...
@@ -285,7 +270,7 @@ let param (type a b) (s : (unit,b) signature) ~name ~descr
...
@@ -285,7 +270,7 @@ let param (type a b) (s : (unit,b) signature) ~name ~descr
|
None
->
failure_missing
name
rq
.
param
|
None
->
failure_missing
name
rq
.
param
|
Some
v
->
v
|
Some
v
->
v
let
param_opt
(
type
a
b
)
(
rq
:
(
unit
,
b
)
signature
)
~
name
~
descr
let
param_opt
(
type
a
b
)
(
s
:
(
unit
,
b
)
signature
)
~
name
~
descr
(
input
:
a
input
)
:
a
option
param
=
(
input
:
a
input
)
:
a
option
param
=
let
module
D
=
(
val
input
)
in
let
module
D
=
(
val
input
)
in
let
fd
=
Syntax
.{
let
fd
=
Syntax
.{
...
@@ -294,7 +279,7 @@ let param_opt (type a b) (rq : (unit,b) signature) ~name ~descr
...
@@ -294,7 +279,7 @@ let param_opt (type a b) (rq : (unit,b) signature) ~name ~descr
fd_default
=
None
;
fd_default
=
None
;
fd_descr
=
descr
;
fd_descr
=
descr
;
}
in
}
in
rq
.
input
<-
Pfields
(
fd
::
fds_input
rq
.
name
rq
.
input
)
;
s
.
input
<-
Pfields
(
fd
::
fds_input
s
)
;
fun
rq
->
fun
rq
->
try
Some
(
D
.
of_json
(
Fmap
.
find
name
rq
.
param
))
try
Some
(
D
.
of_json
(
Fmap
.
find
name
rq
.
param
))
with
Not_found
->
None
with
Not_found
->
None
...
@@ -303,6 +288,14 @@ let param_opt (type a b) (rq : (unit,b) signature) ~name ~descr
...
@@ -303,6 +288,14 @@ let param_opt (type a b) (rq : (unit,b) signature) ~name ~descr
(* --- Named Output Parameters Definitions --- *)
(* --- Named Output Parameters Definitions --- *)
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* current output fields *)
let
fds_output
s
:
Syntax
.
field
list
=
if
s
.
defined
then
Senv
.
failure
"Request '%s' has been finalized."
s
.
name
;
match
s
.
output
with
|
Rdata
_
->
Senv
.
fatal
"Can not define named results request '%s'"
s
.
name
|
Rnone
->
[]
|
Rfields
fds
->
fds
let
result
(
type
a
b
)
(
s
:
(
a
,
unit
)
signature
)
~
name
~
descr
let
result
(
type
a
b
)
(
s
:
(
a
,
unit
)
signature
)
~
name
~
descr
?
default
(
output
:
b
output
)
:
b
result
=
?
default
(
output
:
b
output
)
:
b
result
=
let
module
D
=
(
val
output
)
in
let
module
D
=
(
val
output
)
in
...
@@ -312,9 +305,12 @@ let result (type a b) (s : (a,unit) signature) ~name ~descr
...
@@ -312,9 +305,12 @@ let result (type a b) (s : (a,unit) signature) ~name ~descr
fd_default
=
None
;
fd_default
=
None
;
fd_descr
=
descr
;
fd_descr
=
descr
;
}
in
}
in
s
.
output
<-
Rfields
(
fd
::
fds_output
s
.
name
s
.
output
)
;
s
.
output
<-
Rfields
(
fd
::
fds_output
s
)
;
(
match
default
with
None
->
()
|
Some
v
->
begin
s
.
defaults
<-
Fmap
.
add
name
(
D
.
to_json
v
)
s
.
defaults
)
;
match
default
with
|
None
->
s
.
required
<-
name
::
s
.
required
|
Some
v
->
s
.
defaults
<-
Fmap
.
add
name
(
D
.
to_json
v
)
s
.
defaults
end
;
fun
rq
v
->
rq
.
result
<-
Fmap
.
add
name
(
D
.
to_json
v
)
rq
.
result
fun
rq
v
->
rq
.
result
<-
Fmap
.
add
name
(
D
.
to_json
v
)
rq
.
result
let
result_opt
(
type
a
b
)
(
s
:
(
a
,
unit
)
signature
)
~
name
~
descr
let
result_opt
(
type
a
b
)
(
s
:
(
a
,
unit
)
signature
)
~
name
~
descr
...
@@ -326,7 +322,7 @@ let result_opt (type a b) (s : (a,unit) signature) ~name ~descr
...
@@ -326,7 +322,7 @@ let result_opt (type a b) (s : (a,unit) signature) ~name ~descr
fd_default
=
None
;
fd_default
=
None
;
fd_descr
=
descr
;
fd_descr
=
descr
;
}
in
}
in
s
.
output
<-
Rfields
(
fd
::
fds_output
s
.
name
s
.
output
)
;
s
.
output
<-
Rfields
(
fd
::
fds_output
s
)
;
fun
rq
opt
->
fun
rq
opt
->
match
opt
with
None
->
()
|
Some
v
->
match
opt
with
None
->
()
|
Some
v
->
rq
.
result
<-
Fmap
.
add
name
(
D
.
to_json
v
)
rq
.
result
rq
.
result
<-
Fmap
.
add
name
(
D
.
to_json
v
)
rq
.
result
...
@@ -345,7 +341,7 @@ let signature
...
@@ -345,7 +341,7 @@ let signature
let
output
=
match
output
with
None
->
Rnone
|
Some
d
->
Rdata
d
in
let
output
=
match
output
with
None
->
Rnone
|
Some
d
->
Rdata
d
in
{
{
page
;
kind
;
name
;
descr
;
details
;
page
;
kind
;
name
;
descr
;
details
;
defaults
=
Fmap
.
empty
;
defaults
=
Fmap
.
empty
;
required
=
[]
;
input
;
output
;
defined
=
false
;
input
;
output
;
defined
=
false
;
}
}
...
@@ -353,14 +349,34 @@ let signature
...
@@ -353,14 +349,34 @@ let signature
(* --- Opened Signature Process --- *)
(* --- Opened Signature Process --- *)
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* json input processing *)
let
mk_input
(
type
a
)
name
defaults
(
input
:
a
rq_input
)
:
(
rq
->
json
->
a
)
=
match
input
with
|
Pnone
->
Senv
.
fatal
"No input defined for request '%s'"
name
|
Pdata
d
->
let
module
D
=
(
val
d
)
in
(
fun
rq
js
->
rq
.
result
<-
defaults
;
D
.
of_json
js
)
|
Pfields
_
->
(
fun
rq
js
->
rq
.
param
<-
fmap_of_json
rq
.
param
js
)
(* json output processing *)
let
mk_output
(
type
b
)
name
required
(
output
:
b
rq_output
)
:
(
rq
->
b
->
json
)
=
match
output
with
|
Rnone
->
Senv
.
fatal
"No output defined for request '%s'"
name
|
Rdata
d
->
let
module
D
=
(
val
d
)
in
(
fun
_rq
v
->
D
.
to_json
v
)
|
Rfields
_
->
(
fun
rq
()
->
List
.
iter
(
check_required
rq
.
result
)
required
;
fmap_to_json
rq
.
result
)
let
register_sig
(
type
a
b
)
(
s
:
(
a
,
b
)
signature
)
(
process
:
rq
->
a
->
b
)
=
let
register_sig
(
type
a
b
)
(
s
:
(
a
,
b
)
signature
)
(
process
:
rq
->
a
->
b
)
=
if
s
.
defined
then
if
s
.
defined
then
Senv
.
fatal
"Request '%s' is defined twice"
s
.
name
;
Senv
.
fatal
"Request '%s' is defined twice"
s
.
name
;
let
input
=
mk_input
s
.
name
s
.
input
in
let
input
=
mk_input
s
.
name
s
.
defaults
s
.
input
in
let
output
=
mk_output
s
.
name
s
.
output
in
let
output
=
mk_output
s
.
name
s
.
required
s
.
output
in
let
defaults
=
s
.
defaults
in
let
processor
js
=
let
processor
js
=
let
rq
=
{
param
=
Fmap
.
empty
;
result
=
defaults
}
in
let
rq
=
{
param
=
Fmap
.
empty
;
result
=
Fmap
.
empty
}
in
js
|>
input
rq
|>
process
rq
|>
output
rq
js
|>
input
rq
|>
process
rq
|>
output
rq
in
in
let
skind
=
Main
.
string_of_kind
s
.
kind
in
let
skind
=
Main
.
string_of_kind
s
.
kind
in
...
...
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