@@ -10,6 +10,7 @@ type SsdtSchema = {
10
10
StoredProcs: SsdtStoredProc list
11
11
Relationships: SsdtRelationship list
12
12
Descriptions: SsdtDescriptionItem list
13
+ Functions: SsdtStoredProc list
13
14
}
14
15
and SsdtTable = {
15
16
FullName: string
@@ -373,6 +374,38 @@ let parseXml(xml: string) =
373
374
Name = parts.[ 1 ]
374
375
Parameters = parameters |> Seq.toList }
375
376
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
+
376
409
let parseDescription ( extElement : XmlNode ) =
377
410
let fullName = extElement |> att " Name"
378
411
let parts = fullName |> RegexParsers.splitFullName
@@ -386,6 +419,16 @@ let parseXml(xml: string) =
386
419
Description = description
387
420
}
388
421
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
+
389
432
let storedProcs =
390
433
model
391
434
|> nodes " x:Element"
@@ -465,4 +508,5 @@ let parseXml(xml: string) =
465
508
StoredProcs = storedProcs
466
509
TryGetTableByName = fun nm -> tablesAndViews |> ( List.tryFind ( fun t -> t.Name = nm) >> function Some x -> ValueSome x | None -> ValueNone)
467
510
Relationships = relationships
468
- Descriptions = descriptions } : SsdtSchema
511
+ Descriptions = descriptions
512
+ Functions = functions } : SsdtSchema
0 commit comments