Skip to content

Commit 8ae32a2

Browse files
author
Marcos Magueta
committed
add function call support
1 parent a92133b commit 8ae32a2

File tree

2 files changed

+83
-34
lines changed

2 files changed

+83
-34
lines changed

src/SQLProvider.Runtime/Providers.MsSqlServer.Ssdt.fs

+38-33
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ module MSSqlServerSsdt =
112112
sb.AppendLine(s.FullName) |> ignore
113113
failwith (sb.ToString())
114114

115-
116115
/// Tries to parse a schema model from the given .dacpac file path.
117116
let parseDacpac = findDacPacFile >> extractModelXml >> parseXml
118117

@@ -369,38 +368,44 @@ type internal MSSqlServerProviderSsdt(tableNames: string, ssdtPath: string) =
369368
)
370369

371370
member __.GetSprocs(con) =
372-
ssdtSchema.Value.StoredProcs
373-
|> List.map (fun sp ->
374-
let inParams =
375-
sp.Parameters
376-
|> List.mapi (fun idx p ->
377-
{ Name = p.Name
378-
TypeMapping = MSSqlServerSsdt.tryFindMappingOrVariant p.DataType
379-
Direction = if p.IsOutput then ParameterDirection.InputOutput else ParameterDirection.Input
380-
Length = p.Length
381-
Ordinal = idx }
382-
)
383-
let outParams =
384-
sp.Parameters
385-
|> List.filter (fun p -> p.IsOutput)
386-
|> List.mapi (fun idx p ->
387-
{ Name = p.Name
388-
TypeMapping = MSSqlServerSsdt.tryFindMappingOrVariant p.DataType
389-
Direction = ParameterDirection.InputOutput
390-
Length = p.Length
391-
Ordinal = idx }
392-
)
393-
394-
// If no outParams, add a "ResultSet" property (see issue #706)
395-
let outParams =
396-
match outParams with
397-
| [] -> [ sprocReturnParam 0 ]
398-
| _ -> outParams
399-
400-
let spName = { ProcName = sp.Name; Owner = sp.Schema; PackageName = sp.Schema; }
401-
402-
Root("Procedures", Sproc({ Name = spName; Params = (fun con -> inParams); ReturnColumns = (fun con sparams -> outParams) }))
403-
)
371+
372+
let convertExecutable type' elems =
373+
elems
374+
|> List.map (fun sp ->
375+
let inParams =
376+
sp.Parameters
377+
|> List.mapi (fun idx p ->
378+
{ Name = p.Name
379+
TypeMapping = MSSqlServerSsdt.tryFindMappingOrVariant p.DataType
380+
Direction = if p.IsOutput then ParameterDirection.InputOutput else ParameterDirection.Input
381+
Length = p.Length
382+
Ordinal = idx }
383+
)
384+
let outParams =
385+
sp.Parameters
386+
|> List.filter (fun p -> p.IsOutput)
387+
|> List.mapi (fun idx p ->
388+
{ Name = p.Name
389+
TypeMapping = MSSqlServerSsdt.tryFindMappingOrVariant p.DataType
390+
Direction = ParameterDirection.InputOutput
391+
Length = p.Length
392+
Ordinal = idx }
393+
)
394+
395+
// If no outParams, add a "ResultSet" property (see issue #706)
396+
let outParams =
397+
match outParams with
398+
| [] -> [ sprocReturnParam 0 ]
399+
| _ -> outParams
400+
401+
let spName = { ProcName = sp.Name; Owner = sp.Schema; PackageName = sp.Schema; }
402+
403+
Root(type', Sproc({ Name = spName; Params = (fun con -> inParams); ReturnColumns = (fun con sparams -> outParams) }))
404+
)
405+
let sprocs = convertExecutable "Procedures" ssdtSchema.Value.StoredProcs
406+
let funcs = convertExecutable "Functions" ssdtSchema.Value.Functions
407+
List.append sprocs funcs
408+
404409
member __.GetIndividualsQueryText(table,amount) = String.Empty // Not implemented for SSDT
405410
member __.GetIndividualQueryText(table,column) = String.Empty // Not implemented for SSDT
406411

src/SQLProvider.Runtime/Ssdt.DacpacParser.fs

+45-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ type SsdtSchema = {
1010
StoredProcs: SsdtStoredProc list
1111
Relationships: SsdtRelationship list
1212
Descriptions: SsdtDescriptionItem list
13+
Functions: SsdtStoredProc list
1314
}
1415
and SsdtTable = {
1516
FullName: string
@@ -373,6 +374,38 @@ let parseXml(xml: string) =
373374
Name = parts.[1]
374375
Parameters = parameters |> Seq.toList }
375376

377+
let parseFunctions (funElement: XmlNode) =
378+
let fullName = funElement |> att "Name" |> RegexParsers.splitFullName |> fun n -> String.Join(".", n) |> fun n -> n.ToUpper()
379+
let parameters =
380+
let paramsNode = funElement |> nodes "x:Relationship" |> Seq.tryFind (fun r -> r |> att "Name" = "Parameters")
381+
match paramsNode with
382+
| Some e ->
383+
e
384+
|> nodes "x:Entry"
385+
|> Seq.map (fun entry ->
386+
let el = entry |> node "x:Element"
387+
let parameterName = el |> att "Name"
388+
let isOutput =
389+
match el |> nodes "x:Property" |> Seq.tryFind (fun p -> p |> att "Name" = "IsOutput") with
390+
| Some p when p |> att "Value" = "True" -> true
391+
| _ -> false
392+
let dataType =
393+
el
394+
|> node "x:Relationship/x:Entry/x:Element/x:Relationship/x:Entry/x:References"
395+
|> att "Name"
396+
{ FullName = parameterName
397+
Name = parameterName |> RegexParsers.splitFullName |> Array.last
398+
DataType = dataType |> removeBrackets
399+
Length = ValueNone
400+
IsOutput = isOutput })
401+
| None -> Seq.empty
402+
403+
let parts = fullName |> RegexParsers.splitFullName
404+
{ FullName = fullName
405+
Schema = parts.[0]
406+
Name = parts.[1]
407+
Parameters = parameters |> Seq.toList }
408+
376409
let parseDescription (extElement: XmlNode) =
377410
let fullName = extElement |> att "Name"
378411
let parts = fullName |> RegexParsers.splitFullName
@@ -386,6 +419,16 @@ let parseXml(xml: string) =
386419
Description = description
387420
}
388421

422+
let functions =
423+
let filterPredicate elem =
424+
(att "Type" elem) = "SqlScalarFunction"
425+
|| (att "Type" elem) = "SqlInlineTableValuedFunction"
426+
model
427+
|> nodes "x:Element"
428+
|> Seq.filter filterPredicate
429+
|> Seq.map parseFunctions
430+
|> Seq.toList
431+
389432
let storedProcs =
390433
model
391434
|> nodes "x:Element"
@@ -465,4 +508,5 @@ let parseXml(xml: string) =
465508
StoredProcs = storedProcs
466509
TryGetTableByName = fun nm -> tablesAndViews |> (List.tryFind (fun t -> t.Name = nm) >> function Some x -> ValueSome x | None -> ValueNone)
467510
Relationships = relationships
468-
Descriptions = descriptions } : SsdtSchema
511+
Descriptions = descriptions
512+
Functions = functions } : SsdtSchema

0 commit comments

Comments
 (0)