testapp.command.read

Classes

ReadCommand

Read 클래스는 지정된 LBA에서 데이터를 읽는 명령어를 구현합니다.

Module Contents

class testapp.command.read.ReadCommand[source]

Bases: testapp.command.__interface.CommandInterface

Read 클래스는 지정된 LBA에서 데이터를 읽는 명령어를 구현합니다.

driver[source]

SSD 드라이버 객체

Type:

SsdDriver

required_args_cnt: int = 1[source]
driver[source]
run(lba: str | int) str[source]

지정된 LBA에서 데이터를 읽습니다. 읽어온 데이터를 화면에 출력합니다.

Parameters:

lba (str | int) – 논리 블록 주소

static is_valid_args(*args) bool[source]

주어진 인자가 유효한지 확인합니다.

Returns:

인자가 유효한 경우 True, 그렇지 않으면 False

Return type:

bool