Skip to content

File robosense_info_decoder_base.hpp

File List > decoders > robosense_info_decoder_base.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.

#pragma once

#include <nebula_common/robosense/robosense_common.hpp>

#include <cstdint>
#include <map>
#include <string>
#include <vector>
namespace nebula
{
namespace drivers
{

class RobosenseInfoDecoderBase
{
public:
  RobosenseInfoDecoderBase(RobosenseInfoDecoderBase && c) = delete;
  RobosenseInfoDecoderBase & operator=(RobosenseInfoDecoderBase && c) = delete;
  RobosenseInfoDecoderBase(const RobosenseInfoDecoderBase & c) = delete;
  RobosenseInfoDecoderBase & operator=(const RobosenseInfoDecoderBase & c) = delete;

  virtual ~RobosenseInfoDecoderBase() = default;
  RobosenseInfoDecoderBase() = default;

  virtual bool parsePacket(const std::vector<uint8_t> & raw_packet) = 0;

  virtual std::map<std::string, std::string> getSensorInfo() = 0;

  virtual ReturnMode getReturnMode() = 0;

  virtual RobosenseCalibrationConfiguration getSensorCalibration() = 0;

  virtual bool getSyncStatus() = 0;
};

}  // namespace drivers
}  // namespace nebula