File hesai_status.hpp
File List > hesai > hesai_status.hpp
Go to the documentation of this file
// Copyright 2024 TIER IV, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef HESAI_STATUS_HPP
#define HESAI_STATUS_HPP
#include "nebula_common/nebula_status.hpp"
#include <ostream>
namespace nebula
{
// from https://marycore.jp/prog/cpp/extends-enum/
struct HesaiStatus : Status
{
using Status::Status;
private:
int _type_num;
public:
enum HesaiType {
INVALID_RPM_ERROR = Type_end_of_Status + 1,
INVALID_FOV_ERROR,
INVALID_RETURN_MODE_ERROR,
Type_end_of_Status = INVALID_RPM_ERROR
} _hesai_type;
HesaiStatus() : _type_num(static_cast<int>(Status::OK)) { _type = static_cast<Type>(type()); }
/* NOLINT(runtime/explicit) */ HesaiStatus(Type v) : _type_num(static_cast<int>(v)) { _type = v; }
/* NOLINT(runtime/explicit) */ HesaiStatus(HesaiType v)
: _type_num(static_cast<int>(v)), _hesai_type(v)
{
_type = Type::Type_end_of_Status;
}
explicit HesaiStatus(int type) : _type_num(type) {}
int type() const { return _type_num; }
friend bool operator==(const HesaiStatus & L, const HesaiStatus & R)
{
return L.type() == R.type();
}
friend bool operator!=(const HesaiStatus & L, const HesaiStatus & R)
{
return L.type() != R.type();
}
friend std::ostream & operator<<(std::ostream & os, nebula::HesaiStatus const & arg)
{
switch (arg.type()) {
// Velodyne
case HesaiStatus::INVALID_RPM_ERROR:
os << "Invalid rotation speed value(range from 300 to 1200, in increments of 60)";
break;
case HesaiStatus::INVALID_FOV_ERROR:
os << "Invalid fov value(0 to 359)";
break;
case HesaiStatus::INVALID_RETURN_MODE_ERROR:
os << "Invalid return mode(only SINGLE_STRONGEST, SINGLE_LAST, DUAL_ONLY)";
break;
default:
os << Status(arg._type);
}
return os;
}
};
} // namespace nebula
#endif // HESAI_STATUS_HPP