-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add pvalink json schema avoid JSON5 in testpvalink for portability. fixup build with pvalink trap bad_weak_ptr open during dtor Not sure why this is happening, but need not be CRIT. c++11, cleanup, and notes fix pvalink test sync fix test cleanup on exit pvalink disconnected link is always INVALID pvalink logging pvalink capture Disconnect time pvalink eliminate providerName restrict local to dbChannelTest() aka. no qsrv groups pvalink onTypeChange when attaching link to existing channel pvalink eliminate unused Connecting state pvalink add InstCounter pvalink AfterPut can be const pvalink add atomic jlif flag include epicsStdio.h later avoid #define printf troubles assert cleanup state on exit pvalink add newer lset functions test link disconnect testpvalink redo testPutAsync() pvalink fill out meta-data fetch pvalink fix FLNK pvalink cache putReq pvalink test atomic monitor pvalink test enum handling pvalink handle scalar read of empty array make it well defined anyway... pvalink test array of strings handle db_add_event() failure handle record._options.DBE
- Loading branch information
1 parent
5f48325
commit 6d1216d
Showing
17 changed files
with
997 additions
and
403 deletions.
There are no files selected for viewing
This file contains 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,36 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://mdavidsaver.github.io/pvxs/pvalink-schema-0.json", | ||
"title": "PVA Link schema", | ||
"type": ["string", "object"], | ||
"properties": { | ||
"pv": { "type": "string" }, | ||
"field": { | ||
"type": "string", | ||
"default": "value" | ||
}, | ||
"Q": { | ||
"type": "integer", | ||
"default": 4 | ||
}, | ||
"proc": { | ||
"type": ["boolean", "string", "null"], | ||
"enum": [true, false, null, "", "NPP", "PP", "CP", "CPP"], | ||
"default": null | ||
}, | ||
"sevr": { | ||
"type": ["boolean", "string"], | ||
"enum": [true, false, "NMS", "MS", "MSI", "MSS"], | ||
"default": "NMS" | ||
}, | ||
"time": { "type": "boolean", "default": false }, | ||
"monorder": { "type": "integer", "default": 0 }, | ||
"defer": { "type": "boolean", "default": false }, | ||
"retry": { "type": "boolean", "default": false }, | ||
"pipeline": { "type": "boolean", "default": false }, | ||
"always": { "type": "boolean", "default": false }, | ||
"atomic": { "type": "boolean", "default": false }, | ||
"local": { "type": "boolean", "default": false } | ||
}, | ||
"additionalProperties": false | ||
} |
This file contains 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 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.