mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
203 lines
3.8 KiB
C++
203 lines
3.8 KiB
C++
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#include "wpi/hal/HAL.h"
|
|
|
|
#include <jni.h>
|
|
|
|
#ifdef __FRC_SYSTEMCORE__
|
|
#include <signal.h>
|
|
#endif
|
|
|
|
#include <cassert>
|
|
#include <cstring>
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include "HALUtil.hpp"
|
|
#include "org_wpilib_hardware_hal_HAL.h"
|
|
#include "wpi/hal/DriverStation.h"
|
|
#include "wpi/hal/Main.h"
|
|
#include "wpi/util/jni_util.hpp"
|
|
|
|
using namespace wpi::hal;
|
|
using namespace wpi::util::java;
|
|
|
|
extern "C" {
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: initialize
|
|
* Signature: (II)Z
|
|
*/
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_initialize
|
|
(JNIEnv*, jclass, jint timeout, jint mode)
|
|
{
|
|
return HAL_Initialize(timeout, mode);
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: shutdown
|
|
* Signature: ()V
|
|
*/
|
|
JNIEXPORT void JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_shutdown
|
|
(JNIEnv*, jclass)
|
|
{
|
|
return HAL_Shutdown();
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: hasMain
|
|
* Signature: ()Z
|
|
*/
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_hasMain
|
|
(JNIEnv*, jclass)
|
|
{
|
|
return HAL_HasMain();
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: runMain
|
|
* Signature: ()V
|
|
*/
|
|
JNIEXPORT void JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_runMain
|
|
(JNIEnv*, jclass)
|
|
{
|
|
HAL_RunMain();
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: exitMain
|
|
* Signature: ()V
|
|
*/
|
|
JNIEXPORT void JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_exitMain
|
|
(JNIEnv*, jclass)
|
|
{
|
|
HAL_ExitMain();
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: terminate
|
|
* Signature: ()V
|
|
*/
|
|
JNIEXPORT void JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_terminate
|
|
(JNIEnv*, jclass)
|
|
{
|
|
#ifdef __FRC_SYSTEMCORE__
|
|
::raise(SIGKILL);
|
|
#endif
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: simPeriodicBeforeNative
|
|
* Signature: ()V
|
|
*/
|
|
JNIEXPORT void JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_simPeriodicBeforeNative
|
|
(JNIEnv*, jclass)
|
|
{
|
|
HAL_SimPeriodicBefore();
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: simPeriodicAfterNative
|
|
* Signature: ()V
|
|
*/
|
|
JNIEXPORT void JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_simPeriodicAfterNative
|
|
(JNIEnv*, jclass)
|
|
{
|
|
HAL_SimPeriodicAfter();
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: getSystemActive
|
|
* Signature: ()Z
|
|
*/
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_getSystemActive
|
|
(JNIEnv* env, jclass)
|
|
{
|
|
int32_t status = 0;
|
|
bool val = HAL_GetSystemActive(&status);
|
|
CheckStatus(env, status);
|
|
return val;
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: getBrownedOut
|
|
* Signature: ()Z
|
|
*/
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_getBrownedOut
|
|
(JNIEnv* env, jclass)
|
|
{
|
|
int32_t status = 0;
|
|
bool val = HAL_GetBrownedOut(&status);
|
|
CheckStatus(env, status);
|
|
return val;
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: getCommsDisableCount
|
|
* Signature: ()I
|
|
*/
|
|
JNIEXPORT jint JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_getCommsDisableCount
|
|
(JNIEnv* env, jclass)
|
|
{
|
|
int32_t status = 0;
|
|
int32_t val = HAL_GetCommsDisableCount(&status);
|
|
CheckStatus(env, status);
|
|
return val;
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: getRSLState
|
|
* Signature: ()Z
|
|
*/
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_getRSLState
|
|
(JNIEnv* env, jclass)
|
|
{
|
|
int32_t status = 0;
|
|
bool val = HAL_GetRSLState(&status);
|
|
CheckStatus(env, status);
|
|
return val;
|
|
}
|
|
|
|
/*
|
|
* Class: org_wpilib_hardware_hal_HAL
|
|
* Method: getSystemTimeValid
|
|
* Signature: ()Z
|
|
*/
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_org_wpilib_hardware_hal_HAL_getSystemTimeValid
|
|
(JNIEnv* env, jclass)
|
|
{
|
|
int32_t status = 0;
|
|
bool val = HAL_GetSystemTimeValid(&status);
|
|
CheckStatus(env, status);
|
|
return val;
|
|
}
|
|
|
|
} // extern "C"
|