- Feb 11, 2019
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
so far, only scalars work and the meta data (macro pulse number etc. is missing)
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
-
- Jan 29, 2019
-
-
Martin Christoph Hierholzer authored
-
- Jan 23, 2019
-
-
Jens Georg authored
Fixes DOOCS server shutdown lock-up
-
- Sep 05, 2018
-
-
Martin Christoph Hierholzer authored
-
- Aug 27, 2018
-
-
Martin Christoph Hierholzer authored
Added persistency for D_spectrum properties. This resolves #11 partially only, since there is no option to switch it off. I am not sure if that is needed though.
-
- Aug 08, 2018
-
-
vargheseg authored
Issue: Server throws when there are no device module variables: terminate called after throwing an instance of 'std::logic_error' what(): ReadAnyGroup has no element with AccessMode::wait_for_new_data. Aborted (core dumped) This commit introduces a workaround as proposed by jens: void DoocsUpdater::updateLoop(){ if (_elementsToRead.empty()) { return; } This commit is intended to be reverted if the above strategy has side effects.
-
- Jul 18, 2018
-
-
Martin Christoph Hierholzer authored
-
- Jul 09, 2018
-
-
Martin Christoph Hierholzer authored
-
- Jul 04, 2018
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
- Replace the std::reference_wrapper<TransferElement> with a TransferElementAbstractor.
-
- Jul 02, 2018
-
-
Martin Christoph Hierholzer authored
Fixed a type confusion between int64_t (aka long int on 64 bit platforms) and long long int. The types are not identical (in the C++ sense) but bit-compatible. ChimeraTK expects int64_t while DOOCS expects long long int.
-
Martin Christoph Hierholzer authored
-
- May 03, 2018
-
-
Jens Georg authored
-
- Feb 27, 2018
-
-
Martin Killenberg authored
-
Automated MSK Jenkins User authored
-
- Feb 07, 2018
-
-
Martin Christoph Hierholzer authored
fixed another uncought exception when converting e.g. an Inf from double to float (was still occurring for D_spectrum)
-
- Jan 22, 2018
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
-
- Jan 11, 2018
-
-
Martin Christoph Hierholzer authored
Do not stop server (even through assert -> undefined behaviour without Debug flags!) when trying to create a string array. Instead the property is simply ignored and a warning is printed.
-
- Jan 10, 2018
-
-
Martin Christoph Hierholzer authored
Temporary roll-back to the periodic update polling instead of the readAny()-based update logic. This is necessary, since the readAny() implementation seems to be too slow for bigger servers like the LLRF server. A proper solution should be found to improve the performance of readAny() for larger number of variables.
-
- Jan 08, 2018
-
- Dec 19, 2017
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
-
- Dec 12, 2017
-
-
Martin Killenberg authored
removed the not necessary experimental switch. The readAny in control system adapter does not have the flag because it is the default behaviour
-
- Dec 11, 2017
-
-
Martin Killenberg authored
- fixed last tests which were not using timeout based checks
-
- Nov 06, 2017
-
-
Martin Killenberg authored
introduced flag to indicate when doocs initialisation is done. Removed all sleeps in the server based tests.
-
- Nov 03, 2017
-
-
Martin Killenberg authored
-
- Oct 31, 2017
-
-
Martin Killenberg authored
Removed update functions completely. The long sleep made the server unresponsive. Instead the call to run update in the tests was replaces with a sleep. Sometimes fails, as expected with a fixed timeout, but it was as hack anyway.
-
Martin Killenberg authored
changed updater to run in its own thread. Tests still using doocs update, which is just doing an insanely long sleep of 1 second.
-
Martin Killenberg authored
-
- Oct 30, 2017
-
-
Martin Killenberg authored
separated DoocsSpectrum into header and cc file, as it should be. It was still header only from the time where it was a tempates class.
-
Martin Killenberg authored
all EqFcts are using common updater. Tests passing, but locking is not done properly across EqFcts (race conditions with RPC calls possible).
-
- Oct 28, 2017
-
-
Martin Killenberg authored
changed DoocsFactory to not create unnecessary decorators of the wrong type when auto-creating variables. Test for spectra still failing
-
- Oct 27, 2017
-
-
Martin Killenberg authored
-
- Oct 24, 2017
-
-
Martin Killenberg authored
Updater is using a vector of callbacks now. Not working as intended because there are different decorators where they should be the same.
-
- Oct 23, 2017
-
-
Martin Killenberg authored
library compiles and tests are passing, except for duplicate test which has to be adapted and is not implemented yet
-