pvxslibs 1.2.4a3__cp37-cp37m-manylinux1_x86_64.whl → 1.3.0__cp37-cp37m-manylinux1_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pvxslibs might be problematic. Click here for more details.

@@ -1,6 +1,4 @@
1
1
  registrar(pvxsBaseRegistrar)
2
- registrar(pvxsSingleSourceRegistrar)
3
- registrar(pvxsGroupSourceRegistrar)
4
2
 
5
3
  # from demo.cpp
6
4
  device(waveform, CONSTANT, devWfPDBQ2Demo, "QSRV2 Demo")
@@ -0,0 +1,8 @@
1
+ registrar(pvxsBaseRegistrar)
2
+ link("pva", "lsetPVA")
3
+
4
+ # from demo.cpp
5
+ device(waveform, CONSTANT, devWfPDBQ2Demo, "QSRV2 Demo")
6
+ device(longin, CONSTANT, devLoPDBQ2UTag, "QSRV2 Set UTag")
7
+ # from imagedemo.c
8
+ function(QSRV2_image_demo)
@@ -100,5 +100,71 @@ void testPrepare();
100
100
  PVXS_IOC_API
101
101
  void testShutdown();
102
102
 
103
+ /** Call just after testIocShutdownOk()
104
+ * @since 1.3.0
105
+ */
106
+ PVXS_IOC_API
107
+ void testAfterShutdown();
108
+
109
+ /** Call just before testdbCleanup()
110
+ * @since 1.3.0
111
+ */
112
+ PVXS_IOC_API
113
+ void testCleanupPrepare();
114
+
115
+ #if _DOXYGEN_ || EPICS_VERSION_INT >= VERSION_INT(3, 15, 0 ,0)
116
+
117
+ /** Manage Test IOC life-cycle calls.
118
+ *
119
+ * Makes necessary calls to dbUnitTest.h API
120
+ * as well as any added calls needed by PVXS components.
121
+ *
122
+ @code
123
+ * MAIN(mytest) {
124
+ * testPlan(0); // TODO: Set actual number of tests
125
+ * pvxs::testSetup();
126
+ * pvxs::logger_config_env(); // (optional)
127
+ * {
128
+ * TestIOC ioc; // testdbPrepare()
129
+ *
130
+ * // mytestioc.dbd must include pvxsIoc.dbd
131
+ * testdbReadDatabase("mytestioc.dbd", NULL, NULL);
132
+ * mytestioc_registerRecordDeviceDriver(pdbbase);
133
+ * testdbReadDatabase("sometest.db", NULL, NULL);
134
+ *
135
+ * // tests before iocInit()
136
+ *
137
+ * ioc.init();
138
+ *
139
+ * // tests after iocInit()
140
+ *
141
+ * ioc.shutdown(); // (optional) in ~TestIOC if omitted
142
+ * }
143
+ * {
144
+ * ... repeat ...
145
+ * }
146
+ * epicsExitCallAtExits();
147
+ * pvxs::cleanup_for_valgrind();
148
+ * }
149
+ @endcode
150
+ *
151
+ * @since 1.3.0
152
+ */
153
+ class PVXS_IOC_API TestIOC final {
154
+ bool isRunning = false;
155
+ public:
156
+ TestIOC();
157
+ ~TestIOC();
158
+ //! iocInit()
159
+ void init();
160
+ //! iocShutdown()
161
+ void shutdown();
162
+ //! between iocInit() and iocShutdown() ?
163
+ inline
164
+ bool running() const { return isRunning; }
165
+ };
166
+
167
+ #endif // base >= 3.15
168
+
103
169
  }} // namespace pvxs::ioc
104
170
  #endif // PVXS_IOCHOOKS_H
@@ -59,6 +59,10 @@ public:
59
59
  constexpr Server() = default;
60
60
  //! Create/allocate, but do not start, a new server with the provided config.
61
61
  explicit Server(const Config&);
62
+ Server(const Server&) = default;
63
+ Server(Server&& o) = default;
64
+ Server& operator=(const Server&) = default;
65
+ Server& operator=(Server&& o) = default;
62
66
  ~Server();
63
67
 
64
68
  /** Create new server based on configuration from $EPICS_PVA* environment variables.
@@ -158,7 +162,7 @@ struct PVXS_API Config {
158
162
  std::vector<std::string> ignoreAddrs;
159
163
  //! Addresses (**not** host names) to which (UDP) beacons message will be sent.
160
164
  //! May include broadcast and/or unicast addresses.
161
- //! Supplemented iif auto_beacon==true
165
+ //! Supplemented only if auto_beacon==true
162
166
  std::vector<std::string> beaconDestinations;
163
167
  //! TCP port to bind. Default is 5075. May be zero.
164
168
  unsigned short tcp_port = 5075;
@@ -62,7 +62,7 @@ struct MonitorStat {
62
62
  size_t maxQueue=0;
63
63
  //! Negotiated limit on nQueue
64
64
  size_t limitQueue=0;
65
- //! Number of updates squashed during post() calss
65
+ //! Number of updates squashed during post() calls
66
66
  //! @since 1.2.0
67
67
  size_t nSquash=0;
68
68
 
@@ -77,7 +77,7 @@ unsigned long version_abi_int();
77
77
 
78
78
  /** Runtime ABI check.
79
79
  *
80
- * This test is only meaningful if it is preformed prior to any
80
+ * This test is only meaningful if it is performed prior to any
81
81
  * other library calls.
82
82
  *
83
83
  * It is guaranteed that the library has no global constructors.
@@ -2,5 +2,5 @@
2
2
  # error Include pvxs/version.h instead of this file
3
3
  #endif
4
4
  #define PVXS_MAJOR_VERSION 1
5
- #define PVXS_MINOR_VERSION 2
6
- #define PVXS_MAINTENANCE_VERSION 4
5
+ #define PVXS_MINOR_VERSION 3
6
+ #define PVXS_MAINTENANCE_VERSION 0
Binary file
Binary file
Binary file
Binary file
pvxslibs/lib/libpvxs.so CHANGED
Binary file
Binary file
Binary file
Binary file
@@ -4,7 +4,7 @@ import os
4
4
 
5
5
  dsoname = 'pvxslibs.lib.pvxsIoc'
6
6
  libname = 'libpvxsIoc.so'
7
- soname = 'libpvxsIoc.so.1.2'
7
+ soname = 'libpvxsIoc.so.1.3'
8
8
  depends = ['pvxslibs.lib.pvxs', 'pvxslibs.lib.event_core', 'epicscorelibs.lib.dbRecStd', 'epicscorelibs.lib.dbCore', 'epicscorelibs.lib.Com']
9
9
  dir = os.path.dirname(__file__)
10
10
  filename = os.path.join(dir, libname)
@@ -4,7 +4,7 @@ import os
4
4
 
5
5
  dsoname = 'pvxslibs.lib.pvxs'
6
6
  libname = 'libpvxs.so'
7
- soname = 'libpvxs.so.1.2'
7
+ soname = 'libpvxs.so.1.3'
8
8
  depends = ['epicscorelibs.lib.Com', 'pvxslibs.lib.event_core', 'pvxslibs.lib.event_pthread']
9
9
  dir = os.path.dirname(__file__)
10
10
  filename = os.path.join(dir, libname)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pvxslibs
3
- Version: 1.2.4a3
3
+ Version: 1.3.0
4
4
  Summary: PVXS libraries packaged for python
5
5
  Home-page: https://mdavidsaver.github.io/pvxs
6
6
  Author: Michael Davidsaver
@@ -23,7 +23,7 @@ Requires-Python: >=2.7
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
25
  Requires-Dist: setuptools-dso >=2.7a1
26
- Requires-Dist: epicscorelibs <7.0.7.99.2,>=7.0.7.99.1.0a1
26
+ Requires-Dist: epicscorelibs <7.0.7.99.1,>=7.0.7.99.0.2
27
27
 
28
28
  PVXS - PVAccess protocol library
29
29
  ================================
@@ -0,0 +1,40 @@
1
+ pvxslibs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ pvxslibs/path.py,sha256=nWn5TT5xkbHakc0UwiET3_NbOZg-jr4yibrGKYZ7IoU,258
3
+ pvxslibs/version.py,sha256=vmbnHFP7nheGuX7r7LAKgJ4c2joFyUd4BPqeM4bpUfQ,984
4
+ pvxslibs/dbd/pvxs3x.dbd,sha256=qswqwbXXuueC8Cp70cuD84ATVbLdIQ9WkD3i4sYEbwo,208
5
+ pvxslibs/dbd/pvxs7x.dbd,sha256=6NCA-v-17WExkr7jktnNw83SxeCxrldm29qkTVlRoMM,231
6
+ pvxslibs/include/pvxs/client.h,sha256=S-5NKislCENkrypDalm4T3ZG9Kn486w-lUQEscj-z6c,36954
7
+ pvxslibs/include/pvxs/data.h,sha256=19NwOI51ZHhDpjYRp0ClO9UJd8BJlP9cd7In7fLoXMs,28570
8
+ pvxslibs/include/pvxs/iochooks.h,sha256=V9kM38AWVZQXb5dFcH_zdWfdjeShis4CzSNZfdC6a4o,4545
9
+ pvxslibs/include/pvxs/log.h,sha256=2hqmFQ300vhl7mtToc4LBAVJqBgs1QMYz92pmLv1ab4,4959
10
+ pvxslibs/include/pvxs/netcommon.h,sha256=yrVn8qVBPCEZoW4eJZjR46axAsQr7pQi4L_MdxWByCU,2124
11
+ pvxslibs/include/pvxs/nt.h,sha256=AiiWlkSyfauthaGTefu0cYLr74B7TVW26yEdByeG1Ao,4761
12
+ pvxslibs/include/pvxs/server.h,sha256=OkAt0E9R13AWMd3to8wN2dufsn6PaGQ35orFEY_b8J4,8006
13
+ pvxslibs/include/pvxs/sharedArray.h,sha256=T42A8BWMYWYv2KLvXDddWWVXhzV20Xlg2q1JjbxhzAs,23838
14
+ pvxslibs/include/pvxs/sharedpv.h,sha256=VPrngwKEOjtGW708clV6rDtn8CarBMSkSM-S6SEmxDM,4143
15
+ pvxslibs/include/pvxs/source.h,sha256=gmUCzMA7IZcXOmJHoVgzRv0L1rSvreLmGC5oea7oUCM,10308
16
+ pvxslibs/include/pvxs/srvcommon.h,sha256=ph_7mVX2fe8dd2eBQyaYUvnDMra4SnzUrMZ99jeORGY,4523
17
+ pvxslibs/include/pvxs/unittest.h,sha256=uTteII0JrLhTK6dGjaInZKOwsuJ9-hockFaPwifvdbA,10182
18
+ pvxslibs/include/pvxs/util.h,sha256=-EcvbTWT6B3mlwgSBBmkkbSo5q7RJYZDw1aoqqN-U_E,8968
19
+ pvxslibs/include/pvxs/version.h,sha256=D9oRkSXI-UMTVmWFxbbpvc35fmfTsdNvqpFz6Xx-fF0,2721
20
+ pvxslibs/include/pvxs/versionNum.h,sha256=BB8Wmy_2A5XNYbR3mXdf-I6qCAOejvIfApzUeDMJuYU,176
21
+ pvxslibs/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ pvxslibs/lib/event_core_dsoinfo.py,sha256=ODB3bm08Mq3SrxP8VInAOHWaowhpz0lfoJZNNo1_dtw,347
23
+ pvxslibs/lib/event_pthread_dsoinfo.py,sha256=dgNHgYcTQgKyTvMR09zYPK3XkS4Id29u3kYC919dIUk,356
24
+ pvxslibs/lib/libevent_core.so,sha256=JyfS5TWm-62UazMhl1hP6KqNZ5zo32tdZOyHUC92gcA,979428
25
+ pvxslibs/lib/libevent_core.so.2.2.0,sha256=JyfS5TWm-62UazMhl1hP6KqNZ5zo32tdZOyHUC92gcA,979428
26
+ pvxslibs/lib/libevent_pthread.so,sha256=IdzDe3hsGKsLYVvcvP9NSKYG3uAhhk5cmoRvFaFb0Cc,24252
27
+ pvxslibs/lib/libevent_pthread.so.2.2.0,sha256=IdzDe3hsGKsLYVvcvP9NSKYG3uAhhk5cmoRvFaFb0Cc,24252
28
+ pvxslibs/lib/libpvxs.so,sha256=dEjD50lyc0hgepiu4yFkZDRnmN4SIYYs34uPohXMQxQ,1782470
29
+ pvxslibs/lib/libpvxs.so.1.3,sha256=dEjD50lyc0hgepiu4yFkZDRnmN4SIYYs34uPohXMQxQ,1782470
30
+ pvxslibs/lib/libpvxsIoc.so,sha256=rCPlHKcVnMgSjk6yid2wlinEIQHAiegqhtfXZHdDXlw,574174
31
+ pvxslibs/lib/libpvxsIoc.so.1.3,sha256=rCPlHKcVnMgSjk6yid2wlinEIQHAiegqhtfXZHdDXlw,574174
32
+ pvxslibs/lib/pvxsIoc_dsoinfo.py,sha256=yEcaR0JfFHGMQ7q4xWKQxJATIJr2OsVX_-yr9wNQJVo,465
33
+ pvxslibs/lib/pvxs_dsoinfo.py,sha256=ididlCsfWOHRdUPe1Gqii2Sd77dhjLMwp49mQyeSODM,407
34
+ pvxslibs/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ pvxslibs/test/test_load.py,sha256=mueD9wz4IBkCRS0TY76spkOS_nw4IBdkofl_fA9hIfg,995
36
+ pvxslibs-1.3.0.dist-info/LICENSE,sha256=XViOs7FX1SESr-qTXIin_5793B4tlaQsJdO5atkFUAg,1499
37
+ pvxslibs-1.3.0.dist-info/METADATA,sha256=kjMz4Stp9EpOgaqdpy1Z9lbr47qr9EE8iLxrlJemicc,1199
38
+ pvxslibs-1.3.0.dist-info/WHEEL,sha256=QeJL-LAa02DRWsxkinRU-_aVPaeA70bOxHPkfUTc9ZY,109
39
+ pvxslibs-1.3.0.dist-info/top_level.txt,sha256=RixlMjBFoSBZhAgzdvurnG0N681VoNV0ikf00-HgXFM,9
40
+ pvxslibs-1.3.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.42.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp37-cp37m-manylinux1_x86_64
5
5
 
Binary file
Binary file
@@ -1,39 +0,0 @@
1
- pvxslibs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- pvxslibs/path.py,sha256=nWn5TT5xkbHakc0UwiET3_NbOZg-jr4yibrGKYZ7IoU,258
3
- pvxslibs/version.py,sha256=vmbnHFP7nheGuX7r7LAKgJ4c2joFyUd4BPqeM4bpUfQ,984
4
- pvxslibs/dbd/pvxsIoc.dbd,sha256=qQkW_9r54zXgXpDIcpihHQN9wcmZ9mTn61fatDe-v18,281
5
- pvxslibs/include/pvxs/client.h,sha256=S-5NKislCENkrypDalm4T3ZG9Kn486w-lUQEscj-z6c,36954
6
- pvxslibs/include/pvxs/data.h,sha256=19NwOI51ZHhDpjYRp0ClO9UJd8BJlP9cd7In7fLoXMs,28570
7
- pvxslibs/include/pvxs/iochooks.h,sha256=DmFxY5eI_u2KltNrzP5OVPF50SptJY07Pq3TC36zNvs,3029
8
- pvxslibs/include/pvxs/log.h,sha256=2hqmFQ300vhl7mtToc4LBAVJqBgs1QMYz92pmLv1ab4,4959
9
- pvxslibs/include/pvxs/netcommon.h,sha256=yrVn8qVBPCEZoW4eJZjR46axAsQr7pQi4L_MdxWByCU,2124
10
- pvxslibs/include/pvxs/nt.h,sha256=AiiWlkSyfauthaGTefu0cYLr74B7TVW26yEdByeG1Ao,4761
11
- pvxslibs/include/pvxs/server.h,sha256=RhdfJRZepFO7kwIzAWdTmJITtg3WCBnKumk5BhkL91o,7838
12
- pvxslibs/include/pvxs/sharedArray.h,sha256=T42A8BWMYWYv2KLvXDddWWVXhzV20Xlg2q1JjbxhzAs,23838
13
- pvxslibs/include/pvxs/sharedpv.h,sha256=VPrngwKEOjtGW708clV6rDtn8CarBMSkSM-S6SEmxDM,4143
14
- pvxslibs/include/pvxs/source.h,sha256=-mt7mQ2LiEknkEs0J9hiB8CoJtxIi_XFb5sfsPxH4rQ,10308
15
- pvxslibs/include/pvxs/srvcommon.h,sha256=ph_7mVX2fe8dd2eBQyaYUvnDMra4SnzUrMZ99jeORGY,4523
16
- pvxslibs/include/pvxs/unittest.h,sha256=uTteII0JrLhTK6dGjaInZKOwsuJ9-hockFaPwifvdbA,10182
17
- pvxslibs/include/pvxs/util.h,sha256=-EcvbTWT6B3mlwgSBBmkkbSo5q7RJYZDw1aoqqN-U_E,8968
18
- pvxslibs/include/pvxs/version.h,sha256=vJiv3HIHEag2bkTHm-XOThc_KqWV0xWQpWOzFnAbD1g,2721
19
- pvxslibs/include/pvxs/versionNum.h,sha256=HSR0QJIQ_3RpbWN9BG2U_yd0-9kpXca9kVJC5tcR1ng,176
20
- pvxslibs/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- pvxslibs/lib/event_core_dsoinfo.py,sha256=ODB3bm08Mq3SrxP8VInAOHWaowhpz0lfoJZNNo1_dtw,347
22
- pvxslibs/lib/event_pthread_dsoinfo.py,sha256=dgNHgYcTQgKyTvMR09zYPK3XkS4Id29u3kYC919dIUk,356
23
- pvxslibs/lib/libevent_core.so,sha256=PIhd3kUfVd1hXxggEnLCUcTDndUj_N3omXBoKTdfjnw,979412
24
- pvxslibs/lib/libevent_core.so.2.2.0,sha256=PIhd3kUfVd1hXxggEnLCUcTDndUj_N3omXBoKTdfjnw,979412
25
- pvxslibs/lib/libevent_pthread.so,sha256=4CUyKjs9dru44gLL_Wsv-4RMGSOhlFQS8Xurw-fnEpA,24252
26
- pvxslibs/lib/libevent_pthread.so.2.2.0,sha256=4CUyKjs9dru44gLL_Wsv-4RMGSOhlFQS8Xurw-fnEpA,24252
27
- pvxslibs/lib/libpvxs.so,sha256=ieTmNZqTfPtAw2Yl5j_lv-DsPM1Go7-6_djvtR5lr7c,1770899
28
- pvxslibs/lib/libpvxs.so.1.2,sha256=ieTmNZqTfPtAw2Yl5j_lv-DsPM1Go7-6_djvtR5lr7c,1770899
29
- pvxslibs/lib/libpvxsIoc.so,sha256=w0vQAcVoe8Xo0IAh8GUbPoXHKORvZbxFwjXEFiWFew8,419550
30
- pvxslibs/lib/libpvxsIoc.so.1.2,sha256=w0vQAcVoe8Xo0IAh8GUbPoXHKORvZbxFwjXEFiWFew8,419550
31
- pvxslibs/lib/pvxsIoc_dsoinfo.py,sha256=6u2ah5JWP8WAL_rS80sRU6MMzIUGZMlWRKlBa-Tj0LE,465
32
- pvxslibs/lib/pvxs_dsoinfo.py,sha256=IsPWloTmzQ7jo22BhEfZd4R9snpNNOtpQ1gScn9N4OE,407
33
- pvxslibs/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- pvxslibs/test/test_load.py,sha256=mueD9wz4IBkCRS0TY76spkOS_nw4IBdkofl_fA9hIfg,995
35
- pvxslibs-1.2.4a3.dist-info/LICENSE,sha256=XViOs7FX1SESr-qTXIin_5793B4tlaQsJdO5atkFUAg,1499
36
- pvxslibs-1.2.4a3.dist-info/METADATA,sha256=vA65ALgYstjum2wEEdnKBjwphtv00gU9kIHy76a4QLQ,1203
37
- pvxslibs-1.2.4a3.dist-info/WHEEL,sha256=xd96zpH7kRPY3eMZU7f0QAtsCPJoVsXqYtPBM9HNtrE,109
38
- pvxslibs-1.2.4a3.dist-info/top_level.txt,sha256=RixlMjBFoSBZhAgzdvurnG0N681VoNV0ikf00-HgXFM,9
39
- pvxslibs-1.2.4a3.dist-info/RECORD,,