mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
23 lines
643 B
C++
23 lines
643 B
C++
//
|
|
// Disk.cpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 10/07/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#include "Disk.hpp"
|
|
|
|
using namespace Storage::Disk;
|
|
|
|
std::shared_ptr<Track> Disk::get_track_at_position(unsigned int head, unsigned int position)
|
|
{
|
|
int address = (int)(position * get_head_count() + head);
|
|
std::map<int, std::shared_ptr<Track>>::iterator cached_track = cached_tracks_.find(address);
|
|
if(cached_track != cached_tracks_.end()) return cached_track->second;
|
|
|
|
std::shared_ptr<Track> track = get_uncached_track_at_position(head, position);
|
|
cached_tracks_[address] = track;
|
|
return track;
|
|
}
|