#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TranslationOptions {
#[prost(message, optional, tag = "1")]
pub q_ctrl: ::core::option::Option<translation_options::QCtrl>,
#[prost(message, optional, tag = "2")]
pub riverlane: ::core::option::Option<translation_options::Riverlane>,
#[prost(oneof = "translation_options::TranslationBackend", tags = "101, 102")]
pub translation_backend: ::core::option::Option<
translation_options::TranslationBackend,
>,
}
pub mod translation_options {
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct QCtrl {
#[prost(bool, optional, tag = "1")]
pub fixed_layout: ::core::option::Option<bool>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Riverlane {
#[prost(map = "string, bytes", tag = "2")]
pub qeci_configuration_data: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::vec::Vec<u8>,
>,
#[prost(uint64, tag = "3")]
pub qeci_max_nanoseconds_until_read_available: u64,
}
#[derive(Clone, Copy, PartialEq, ::prost::Oneof)]
pub enum TranslationBackend {
#[prost(message, tag = "101")]
V1(super::BackendV1Options),
#[prost(message, tag = "102")]
V2(super::BackendV2Options),
}
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct BackendV1Options {}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct BackendV2Options {
#[prost(bool, optional, tag = "1")]
pub prepend_default_calibrations: ::core::option::Option<bool>,
#[prost(double, optional, tag = "2")]
pub passive_reset_delay_seconds: ::core::option::Option<f64>,
#[prost(bool, optional, tag = "4")]
pub allow_unchecked_pointer_arithmetic: ::core::option::Option<bool>,
#[prost(bool, optional, tag = "5")]
pub allow_frame_redefinition: ::core::option::Option<bool>,
#[prost(bool, optional, tag = "6")]
pub store_all_readout_values: ::core::option::Option<bool>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TranslateQuilToEncryptedControllerJobRequest {
#[prost(string, tag = "1")]
pub quantum_processor_id: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub quil_program: ::prost::alloc::string::String,
#[prost(message, optional, tag = "4")]
pub options: ::core::option::Option<TranslationOptions>,
#[prost(
oneof = "translate_quil_to_encrypted_controller_job_request::NumShots",
tags = "3"
)]
pub num_shots: ::core::option::Option<
translate_quil_to_encrypted_controller_job_request::NumShots,
>,
}
pub mod translate_quil_to_encrypted_controller_job_request {
#[derive(Clone, Copy, PartialEq, ::prost::Oneof)]
pub enum NumShots {
#[prost(uint32, tag = "3")]
NumShotsValue(u32),
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TranslateQuilToEncryptedControllerJobResponse {
#[prost(message, optional, tag = "1")]
pub job: ::core::option::Option<
super::super::models::controller::EncryptedControllerJob,
>,
#[prost(message, optional, tag = "2")]
pub metadata: ::core::option::Option<
super::super::models::translation::QuilTranslationMetadata,
>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QuantumProcessorQuilCalibrationProgram {
#[prost(string, tag = "1")]
pub quil_calibration_program: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetQuantumProcessorQuilCalibrationProgramRequest {
#[prost(string, tag = "1")]
pub quantum_processor_id: ::prost::alloc::string::String,
}
pub mod translation_client {
#![allow(
unused_variables,
dead_code,
missing_docs,
clippy::wildcard_imports,
clippy::let_unit_value,
)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
#[derive(Debug, Clone)]
pub struct TranslationClient<T> {
inner: tonic::client::Grpc<T>,
}
impl TranslationClient<tonic::transport::Channel> {
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> TranslationClient<T>
where
T: tonic::client::GrpcService<tonic::body::Body>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> TranslationClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::Body>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::Body>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::Body>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
TranslationClient::new(InterceptedService::new(inner, interceptor))
}
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
pub async fn translate_quil_to_encrypted_controller_job(
&mut self,
request: impl tonic::IntoRequest<
super::TranslateQuilToEncryptedControllerJobRequest,
>,
) -> std::result::Result<
tonic::Response<super::TranslateQuilToEncryptedControllerJobResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/services.translation.Translation/TranslateQuilToEncryptedControllerJob",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"services.translation.Translation",
"TranslateQuilToEncryptedControllerJob",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn get_quantum_processor_quil_calibration_program(
&mut self,
request: impl tonic::IntoRequest<
super::GetQuantumProcessorQuilCalibrationProgramRequest,
>,
) -> std::result::Result<
tonic::Response<super::QuantumProcessorQuilCalibrationProgram>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/services.translation.Translation/GetQuantumProcessorQuilCalibrationProgram",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"services.translation.Translation",
"GetQuantumProcessorQuilCalibrationProgram",
),
);
self.inner.unary(req, path, codec).await
}
}
}
#[cfg(feature = "server")]
pub mod translation_server {
#![allow(
unused_variables,
dead_code,
missing_docs,
clippy::wildcard_imports,
clippy::let_unit_value,
)]
use tonic::codegen::*;
#[async_trait]
pub trait Translation: std::marker::Send + std::marker::Sync + 'static {
async fn translate_quil_to_encrypted_controller_job(
&self,
request: tonic::Request<super::TranslateQuilToEncryptedControllerJobRequest>,
) -> std::result::Result<
tonic::Response<super::TranslateQuilToEncryptedControllerJobResponse>,
tonic::Status,
>;
async fn get_quantum_processor_quil_calibration_program(
&self,
request: tonic::Request<
super::GetQuantumProcessorQuilCalibrationProgramRequest,
>,
) -> std::result::Result<
tonic::Response<super::QuantumProcessorQuilCalibrationProgram>,
tonic::Status,
>;
}
#[derive(Debug)]
pub struct TranslationServer<T> {
inner: Arc<T>,
accept_compression_encodings: EnabledCompressionEncodings,
send_compression_encodings: EnabledCompressionEncodings,
max_decoding_message_size: Option<usize>,
max_encoding_message_size: Option<usize>,
}
impl<T> TranslationServer<T> {
pub fn new(inner: T) -> Self {
Self::from_arc(Arc::new(inner))
}
pub fn from_arc(inner: Arc<T>) -> Self {
Self {
inner,
accept_compression_encodings: Default::default(),
send_compression_encodings: Default::default(),
max_decoding_message_size: None,
max_encoding_message_size: None,
}
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> InterceptedService<Self, F>
where
F: tonic::service::Interceptor,
{
InterceptedService::new(Self::new(inner), interceptor)
}
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.accept_compression_encodings.enable(encoding);
self
}
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.send_compression_encodings.enable(encoding);
self
}
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.max_decoding_message_size = Some(limit);
self
}
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.max_encoding_message_size = Some(limit);
self
}
}
impl<T, B> tonic::codegen::Service<http::Request<B>> for TranslationServer<T>
where
T: Translation,
B: Body + std::marker::Send + 'static,
B::Error: Into<StdError> + std::marker::Send + 'static,
{
type Response = http::Response<tonic::body::Body>;
type Error = std::convert::Infallible;
type Future = BoxFuture<Self::Response, Self::Error>;
fn poll_ready(
&mut self,
_cx: &mut Context<'_>,
) -> Poll<std::result::Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
fn call(&mut self, req: http::Request<B>) -> Self::Future {
match req.uri().path() {
"/services.translation.Translation/TranslateQuilToEncryptedControllerJob" => {
#[allow(non_camel_case_types)]
struct TranslateQuilToEncryptedControllerJobSvc<T: Translation>(
pub Arc<T>,
);
impl<
T: Translation,
> tonic::server::UnaryService<
super::TranslateQuilToEncryptedControllerJobRequest,
> for TranslateQuilToEncryptedControllerJobSvc<T> {
type Response = super::TranslateQuilToEncryptedControllerJobResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<
super::TranslateQuilToEncryptedControllerJobRequest,
>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as Translation>::translate_quil_to_encrypted_controller_job(
&inner,
request,
)
.await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = TranslateQuilToEncryptedControllerJobSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/services.translation.Translation/GetQuantumProcessorQuilCalibrationProgram" => {
#[allow(non_camel_case_types)]
struct GetQuantumProcessorQuilCalibrationProgramSvc<T: Translation>(
pub Arc<T>,
);
impl<
T: Translation,
> tonic::server::UnaryService<
super::GetQuantumProcessorQuilCalibrationProgramRequest,
> for GetQuantumProcessorQuilCalibrationProgramSvc<T> {
type Response = super::QuantumProcessorQuilCalibrationProgram;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<
super::GetQuantumProcessorQuilCalibrationProgramRequest,
>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as Translation>::get_quantum_processor_quil_calibration_program(
&inner,
request,
)
.await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = GetQuantumProcessorQuilCalibrationProgramSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
_ => {
Box::pin(async move {
let mut response = http::Response::new(
tonic::body::Body::default(),
);
let headers = response.headers_mut();
headers
.insert(
tonic::Status::GRPC_STATUS,
(tonic::Code::Unimplemented as i32).into(),
);
headers
.insert(
http::header::CONTENT_TYPE,
tonic::metadata::GRPC_CONTENT_TYPE,
);
Ok(response)
})
}
}
}
}
impl<T> Clone for TranslationServer<T> {
fn clone(&self) -> Self {
let inner = self.inner.clone();
Self {
inner,
accept_compression_encodings: self.accept_compression_encodings,
send_compression_encodings: self.send_compression_encodings,
max_decoding_message_size: self.max_decoding_message_size,
max_encoding_message_size: self.max_encoding_message_size,
}
}
}
pub const SERVICE_NAME: &str = "services.translation.Translation";
impl<T> tonic::server::NamedService for TranslationServer<T> {
const NAME: &'static str = SERVICE_NAME;
}
}