mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
08194af424
- Moved C++ code to cpp/ from src/raspberrypi - Related updates to Makefile, easyinstall.sh, and the github build rules - Removed the native X68k C code in src/x68k from the repo
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 Uwe Seimet
|
|
//
|
|
// Keeps track of and manages the controllers
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
#include <memory>
|
|
|
|
using namespace std;
|
|
|
|
class BUS;
|
|
class AbstractController;
|
|
class PrimaryDevice;
|
|
|
|
class ControllerManager
|
|
{
|
|
std::shared_ptr<BUS> bus;
|
|
|
|
unordered_map<int, shared_ptr<AbstractController>> controllers;
|
|
|
|
public:
|
|
|
|
explicit ControllerManager(std::shared_ptr<BUS> bus) : bus(bus) {}
|
|
~ControllerManager() = default;
|
|
|
|
// Maximum number of controller devices
|
|
static const int DEVICE_MAX = 8;
|
|
|
|
bool AttachToScsiController(int, shared_ptr<PrimaryDevice>);
|
|
bool DeleteController(shared_ptr<AbstractController>);
|
|
shared_ptr<AbstractController> IdentifyController(int) const;
|
|
shared_ptr<AbstractController> FindController(int) const;
|
|
unordered_set<shared_ptr<PrimaryDevice>> GetAllDevices() const;
|
|
void DeleteAllControllers();
|
|
void ResetAllControllers() const;
|
|
shared_ptr<PrimaryDevice> GetDeviceByIdAndLun(int, int) const;
|
|
};
|