mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Implement independent instances.
Previously, most of the classes were implemented as singletons so only one
instance was possible.
This change adds an instance handle-based API. In Java, this API is located
in a different package than the old API (edu.wpi.first.networktables).
Backwards compatibility with ITable and the old NetworkTable API is largely
maintained, but a handful of classes have moved to the new package in Java
(ConnectionInfo and PersistentException), and the old JNI has been completed
replaced.
Also:
- Move SetTeam implementation to Dispatcher.
- Consistently pass time through Java and C++ Value API.
- Rename nt_Value.h to NetworkTableValue.h for consistency with Java.
- Improve documentation
- Make C++ and Java APIs more consistent
- Document RPC functions and support RPC in Java.
- Add polling features for entry and connection listeners and use them to
move callback threads to Java level.
- Remove thread start and stop hooks (as polling is available).
- Make Notifiers, RpcServer, Dispatcher, and Storage mockable.
- Set NOTIFY_NEW on immediate entry notifications.
- Make GetTable("/") and GetTable("") equivalent.
- Generate local notification for flags update when loading persistent file.
And many unit test updates/changes:
- Use InitGoogleMock instead of InitGoogleTest in test main.
- Move test printers to TestPrinter.h/cpp.
- Provide printers for StringRef, EntryNotifier, and Handle.
- StorageTest: Check notifications.
- Add entry notifier unit tests.
- Storage: Add test for incoming entry assignment.
- Update connection listener tests.
- Add entry listener unit tests.
Fixes #11, #140, #189, #190, #192, #193, #221
This commit is contained in:
@@ -1,25 +1,34 @@
|
||||
#include <chrono>
|
||||
#include <climits>
|
||||
#include <cstdio>
|
||||
#include <thread>
|
||||
|
||||
#include "ntcore.h"
|
||||
|
||||
int main() {
|
||||
nt::SetLogger(
|
||||
[](unsigned int level, const char* file, unsigned int line,
|
||||
const char* msg) {
|
||||
std::fputs(msg, stderr);
|
||||
auto inst = nt::GetDefaultInstance();
|
||||
nt::AddLogger(
|
||||
inst,
|
||||
[](const nt::LogMessage& msg) {
|
||||
std::fputs(msg.message.c_str(), stderr);
|
||||
std::fputc('\n', stderr);
|
||||
},
|
||||
0);
|
||||
nt::StartClient("127.0.0.1", 10000);
|
||||
0, UINT_MAX);
|
||||
nt::StartClient(inst, "127.0.0.1", 10000);
|
||||
std::this_thread::sleep_for(std::chrono::seconds(2));
|
||||
auto foo = nt::GetEntryValue("/foo");
|
||||
if (foo && foo->IsDouble()) printf("Got foo: %g\n", foo->GetDouble());
|
||||
nt::SetEntryValue("/bar", nt::Value::MakeBoolean(false));
|
||||
nt::SetEntryFlags("/bar", NT_PERSISTENT);
|
||||
nt::SetEntryValue("/bar2", nt::Value::MakeBoolean(true));
|
||||
nt::SetEntryValue("/bar2", nt::Value::MakeBoolean(false));
|
||||
nt::SetEntryValue("/bar2", nt::Value::MakeBoolean(true));
|
||||
|
||||
auto foo = nt::GetEntry(inst, "/foo");
|
||||
auto foo_val = nt::GetEntryValue(foo);
|
||||
if (foo_val && foo_val->IsDouble())
|
||||
printf("Got foo: %g\n", foo_val->GetDouble());
|
||||
|
||||
auto bar = nt::GetEntry(inst, "/bar");
|
||||
nt::SetEntryValue(bar, nt::Value::MakeBoolean(false));
|
||||
nt::SetEntryFlags(bar, NT_PERSISTENT);
|
||||
|
||||
auto bar2 = nt::GetEntry(inst, "/bar2");
|
||||
nt::SetEntryValue(bar2, nt::Value::MakeBoolean(true));
|
||||
nt::SetEntryValue(bar2, nt::Value::MakeBoolean(false));
|
||||
nt::SetEntryValue(bar2, nt::Value::MakeBoolean(true));
|
||||
std::this_thread::sleep_for(std::chrono::seconds(10));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user