# Copyright (C) 2024 qBraid## This file is part of the qBraid-SDK## The qBraid-SDK is free software released under the GNU General Public License v3# or later. You can redistribute and/or modify it under the terms of the GPL v3.# See the LICENSE file in the project root or <https://www.gnu.org/licenses/gpl-3.0.html>.## THERE IS NO WARRANTY for the qBraid-SDK, as per Section 15 of the GPL v3."""Module defining abstract QuantumJob Class"""from__future__importannotationsfromabcimportABC,abstractmethodfromtimeimportsleep,timefromtypingimportTYPE_CHECKING,Any,Optionalfrom.enumsimportJobStatusfrom.exceptionsimportJobStateError,ResourceNotFoundErrorifTYPE_CHECKING:importqbraid.runtimefromqbraid.runtime.result_dataimportResultDataType
[docs]classQuantumJob(ABC):"""Abstract interface for job-like classes."""
@propertydefid(self)->str:# pylint: disable=invalid-name"""Return a unique id identifying the job."""returnself._job_id@propertydefdevice(self)->qbraid.runtime.QuantumDevice:"""Returns the qbraid QuantumDevice object associated with this job."""ifself._deviceisNone:raiseResourceNotFoundError("Job does not have an associated device.")returnself._devicedefis_terminal_state(self)->bool:"""Returns True if job is in final state. False otherwise."""terminal_states=JobStatus.terminal_states()ifself._cache_metadata.get("status",None)interminal_states:returnTruestatus=self.status()returnstatusinterminal_states@abstractmethoddefstatus(self)->JobStatus:"""Return the status of the job / task , among the values of ``JobStatus``."""defmetadata(self)->dict[str,Any]:"""Return the metadata regarding the job."""status=self.status()self._cache_metadata["status"]=statusreturnself._cache_metadatadefwait_for_final_state(self,timeout:Optional[int]=None,poll_interval:int=5)->None:"""Poll the job status until it progresses to a final state. Args: timeout: Seconds to wait for the job. If ``None``, wait indefinitely. poll_interval: Seconds between queries. Defaults to 5 seconds. Raises: JobStateError: If the job does not reach a final state before the specified timeout. """start_time=time()whilenotself.is_terminal_state():elapsed_time=time()-start_timeiftimeoutisnotNoneandelapsed_time>=timeout:raiseJobStateError(f"Timeout while waiting for job {self.id}.")sleep(poll_interval)@abstractmethoddefresult(self)->qbraid.runtime.Result[ResultDataType]:"""Return the results of the job."""@abstractmethoddefcancel(self)->None:"""Attempt to cancel the job."""def__repr__(self)->str:"""String representation of a QuantumJob object."""returnf"<{self.__class__.__name__}(id:'{self.id}')>"