Search in sources :

Example 1 with NodeFile

use of com.microsoft.azure.batch.protocol.models.NodeFile in project azure-sdk-for-java by Azure.

the class FilesImpl method listFromTask.

/**
     * Lists the files in a task's directory on its compute node.
     *
     * @param jobId The id of the job that contains the task.
     * @param taskId The id of the task whose files you want to list.
     * @param recursive Whether to list children of a directory.
     * @param fileListFromTaskOptions Additional parameters for the operation
     * @throws BatchErrorException exception thrown from REST call
     * @throws IOException exception thrown from serialization/deserialization
     * @throws IllegalArgumentException exception thrown from invalid parameters
     * @return the List<NodeFile> object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<NodeFile>, FileListFromTaskHeaders> listFromTask(final String jobId, final String taskId, final Boolean recursive, final FileListFromTaskOptions fileListFromTaskOptions) throws BatchErrorException, IOException, IllegalArgumentException {
    if (jobId == null) {
        throw new IllegalArgumentException("Parameter jobId is required and cannot be null.");
    }
    if (taskId == null) {
        throw new IllegalArgumentException("Parameter taskId is required and cannot be null.");
    }
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    Validator.validate(fileListFromTaskOptions);
    String filter = null;
    if (fileListFromTaskOptions != null) {
        filter = fileListFromTaskOptions.filter();
    }
    Integer maxResults = null;
    if (fileListFromTaskOptions != null) {
        maxResults = fileListFromTaskOptions.maxResults();
    }
    Integer timeout = null;
    if (fileListFromTaskOptions != null) {
        timeout = fileListFromTaskOptions.timeout();
    }
    String clientRequestId = null;
    if (fileListFromTaskOptions != null) {
        clientRequestId = fileListFromTaskOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (fileListFromTaskOptions != null) {
        returnClientRequestId = fileListFromTaskOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (fileListFromTaskOptions != null) {
        ocpDate = fileListFromTaskOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.listFromTask(jobId, taskId, recursive, this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<NodeFile>, FileListFromTaskHeaders> response = listFromTaskDelegate(call.execute());
    PagedList<NodeFile> result = new PagedList<NodeFile>(response.getBody()) {

        @Override
        public Page<NodeFile> nextPage(String nextPageLink) throws BatchErrorException, IOException {
            FileListFromTaskNextOptions fileListFromTaskNextOptions = null;
            if (fileListFromTaskOptions != null) {
                fileListFromTaskNextOptions = new FileListFromTaskNextOptions();
                fileListFromTaskNextOptions.withClientRequestId(fileListFromTaskOptions.clientRequestId());
                fileListFromTaskNextOptions.withReturnClientRequestId(fileListFromTaskOptions.returnClientRequestId());
                fileListFromTaskNextOptions.withOcpDate(fileListFromTaskOptions.ocpDate());
            }
            return listFromTaskNext(nextPageLink, fileListFromTaskNextOptions).getBody();
        }
    };
    return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
Also used : PageImpl(com.microsoft.azure.batch.protocol.models.PageImpl) FileListFromTaskNextOptions(com.microsoft.azure.batch.protocol.models.FileListFromTaskNextOptions) PagedList(com.microsoft.azure.PagedList) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) FileListFromTaskHeaders(com.microsoft.azure.batch.protocol.models.FileListFromTaskHeaders) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) NodeFile(com.microsoft.azure.batch.protocol.models.NodeFile)

Example 2 with NodeFile

use of com.microsoft.azure.batch.protocol.models.NodeFile in project azure-sdk-for-java by Azure.

the class FilesImpl method listFromComputeNodeAsync.

/**
     * Lists all of the files in task directories on the specified compute node.
     *
     * @param poolId The id of the pool that contains the compute node.
     * @param nodeId The id of the compute node whose files you want to list.
     * @param recursive Whether to list children of a directory.
     * @param fileListFromComputeNodeOptions Additional parameters for the operation
     * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
     * @throws IllegalArgumentException thrown if callback is null
     * @return the {@link Call} object
     */
public ServiceCall listFromComputeNodeAsync(final String poolId, final String nodeId, final Boolean recursive, final FileListFromComputeNodeOptions fileListFromComputeNodeOptions, final ListOperationCallback<NodeFile> serviceCallback) throws IllegalArgumentException {
    if (serviceCallback == null) {
        throw new IllegalArgumentException("ServiceCallback is required for async calls.");
    }
    if (poolId == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter poolId is required and cannot be null."));
        return null;
    }
    if (nodeId == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter nodeId is required and cannot be null."));
        return null;
    }
    if (this.client.apiVersion() == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."));
        return null;
    }
    Validator.validate(fileListFromComputeNodeOptions, serviceCallback);
    String filter = null;
    if (fileListFromComputeNodeOptions != null) {
        filter = fileListFromComputeNodeOptions.filter();
    }
    Integer maxResults = null;
    if (fileListFromComputeNodeOptions != null) {
        maxResults = fileListFromComputeNodeOptions.maxResults();
    }
    Integer timeout = null;
    if (fileListFromComputeNodeOptions != null) {
        timeout = fileListFromComputeNodeOptions.timeout();
    }
    String clientRequestId = null;
    if (fileListFromComputeNodeOptions != null) {
        clientRequestId = fileListFromComputeNodeOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (fileListFromComputeNodeOptions != null) {
        returnClientRequestId = fileListFromComputeNodeOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (fileListFromComputeNodeOptions != null) {
        ocpDate = fileListFromComputeNodeOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.listFromComputeNode(poolId, nodeId, recursive, this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    final ServiceCall serviceCall = new ServiceCall(call);
    call.enqueue(new ServiceResponseCallback<List<NodeFile>>(serviceCallback) {

        @Override
        public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
            try {
                ServiceResponseWithHeaders<PageImpl<NodeFile>, FileListFromComputeNodeHeaders> result = listFromComputeNodeDelegate(response);
                serviceCallback.load(result.getBody().getItems());
                if (result.getBody().getNextPageLink() != null && serviceCallback.progress(result.getBody().getItems()) == ListOperationCallback.PagingBahavior.CONTINUE) {
                    FileListFromComputeNodeNextOptions fileListFromComputeNodeNextOptions = null;
                    if (fileListFromComputeNodeOptions != null) {
                        fileListFromComputeNodeNextOptions = new FileListFromComputeNodeNextOptions();
                        fileListFromComputeNodeNextOptions.withClientRequestId(fileListFromComputeNodeOptions.clientRequestId());
                        fileListFromComputeNodeNextOptions.withReturnClientRequestId(fileListFromComputeNodeOptions.returnClientRequestId());
                        fileListFromComputeNodeNextOptions.withOcpDate(fileListFromComputeNodeOptions.ocpDate());
                    }
                    listFromComputeNodeNextAsync(result.getBody().getNextPageLink(), fileListFromComputeNodeNextOptions, serviceCall, serviceCallback);
                } else {
                    serviceCallback.success(new ServiceResponseWithHeaders<>(serviceCallback.get(), result.getHeaders(), result.getResponse()));
                }
            } catch (BatchErrorException | IOException exception) {
                serviceCallback.failure(exception);
            }
        }
    });
    return serviceCall;
}
Also used : ServiceCall(com.microsoft.rest.ServiceCall) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) FileListFromComputeNodeNextOptions(com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeNextOptions) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) List(java.util.List) PagedList(com.microsoft.azure.PagedList) NodeFile(com.microsoft.azure.batch.protocol.models.NodeFile)

Example 3 with NodeFile

use of com.microsoft.azure.batch.protocol.models.NodeFile in project azure-sdk-for-java by Azure.

the class FilesImpl method listFromComputeNodeNextAsync.

/**
     * Lists all of the files in task directories on the specified compute node.
     *
     * @param nextPageLink The NextLink from the previous successful call to List operation.
     * @param fileListFromComputeNodeNextOptions Additional parameters for the operation
     * @param serviceCall the ServiceCall object tracking the Retrofit calls
     * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
     * @throws IllegalArgumentException thrown if callback is null
     * @return the {@link Call} object
     */
public ServiceCall listFromComputeNodeNextAsync(final String nextPageLink, final FileListFromComputeNodeNextOptions fileListFromComputeNodeNextOptions, final ServiceCall serviceCall, final ListOperationCallback<NodeFile> serviceCallback) throws IllegalArgumentException {
    if (serviceCallback == null) {
        throw new IllegalArgumentException("ServiceCallback is required for async calls.");
    }
    if (nextPageLink == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter nextPageLink is required and cannot be null."));
        return null;
    }
    Validator.validate(fileListFromComputeNodeNextOptions, serviceCallback);
    String clientRequestId = null;
    if (fileListFromComputeNodeNextOptions != null) {
        clientRequestId = fileListFromComputeNodeNextOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (fileListFromComputeNodeNextOptions != null) {
        returnClientRequestId = fileListFromComputeNodeNextOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (fileListFromComputeNodeNextOptions != null) {
        ocpDate = fileListFromComputeNodeNextOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.listFromComputeNodeNext(nextPageLink, this.client.acceptLanguage(), clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    serviceCall.newCall(call);
    call.enqueue(new ServiceResponseCallback<List<NodeFile>>(serviceCallback) {

        @Override
        public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
            try {
                ServiceResponseWithHeaders<PageImpl<NodeFile>, FileListFromComputeNodeHeaders> result = listFromComputeNodeNextDelegate(response);
                serviceCallback.load(result.getBody().getItems());
                if (result.getBody().getNextPageLink() != null && serviceCallback.progress(result.getBody().getItems()) == ListOperationCallback.PagingBahavior.CONTINUE) {
                    listFromComputeNodeNextAsync(result.getBody().getNextPageLink(), fileListFromComputeNodeNextOptions, serviceCall, serviceCallback);
                } else {
                    serviceCallback.success(new ServiceResponseWithHeaders<>(serviceCallback.get(), result.getHeaders(), result.getResponse()));
                }
            } catch (BatchErrorException | IOException exception) {
                serviceCallback.failure(exception);
            }
        }
    });
    return serviceCall;
}
Also used : DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) List(java.util.List) PagedList(com.microsoft.azure.PagedList) NodeFile(com.microsoft.azure.batch.protocol.models.NodeFile)

Example 4 with NodeFile

use of com.microsoft.azure.batch.protocol.models.NodeFile in project azure-sdk-for-java by Azure.

the class FilesImpl method listFromComputeNode.

/**
     * Lists all of the files in task directories on the specified compute node.
     *
     * @param poolId The id of the pool that contains the compute node.
     * @param nodeId The id of the compute node whose files you want to list.
     * @param recursive Whether to list children of a directory.
     * @param fileListFromComputeNodeOptions Additional parameters for the operation
     * @throws BatchErrorException exception thrown from REST call
     * @throws IOException exception thrown from serialization/deserialization
     * @throws IllegalArgumentException exception thrown from invalid parameters
     * @return the List&lt;NodeFile&gt; object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<NodeFile>, FileListFromComputeNodeHeaders> listFromComputeNode(final String poolId, final String nodeId, final Boolean recursive, final FileListFromComputeNodeOptions fileListFromComputeNodeOptions) throws BatchErrorException, IOException, IllegalArgumentException {
    if (poolId == null) {
        throw new IllegalArgumentException("Parameter poolId is required and cannot be null.");
    }
    if (nodeId == null) {
        throw new IllegalArgumentException("Parameter nodeId is required and cannot be null.");
    }
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    Validator.validate(fileListFromComputeNodeOptions);
    String filter = null;
    if (fileListFromComputeNodeOptions != null) {
        filter = fileListFromComputeNodeOptions.filter();
    }
    Integer maxResults = null;
    if (fileListFromComputeNodeOptions != null) {
        maxResults = fileListFromComputeNodeOptions.maxResults();
    }
    Integer timeout = null;
    if (fileListFromComputeNodeOptions != null) {
        timeout = fileListFromComputeNodeOptions.timeout();
    }
    String clientRequestId = null;
    if (fileListFromComputeNodeOptions != null) {
        clientRequestId = fileListFromComputeNodeOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (fileListFromComputeNodeOptions != null) {
        returnClientRequestId = fileListFromComputeNodeOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (fileListFromComputeNodeOptions != null) {
        ocpDate = fileListFromComputeNodeOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.listFromComputeNode(poolId, nodeId, recursive, this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<NodeFile>, FileListFromComputeNodeHeaders> response = listFromComputeNodeDelegate(call.execute());
    PagedList<NodeFile> result = new PagedList<NodeFile>(response.getBody()) {

        @Override
        public Page<NodeFile> nextPage(String nextPageLink) throws BatchErrorException, IOException {
            FileListFromComputeNodeNextOptions fileListFromComputeNodeNextOptions = null;
            if (fileListFromComputeNodeOptions != null) {
                fileListFromComputeNodeNextOptions = new FileListFromComputeNodeNextOptions();
                fileListFromComputeNodeNextOptions.withClientRequestId(fileListFromComputeNodeOptions.clientRequestId());
                fileListFromComputeNodeNextOptions.withReturnClientRequestId(fileListFromComputeNodeOptions.returnClientRequestId());
                fileListFromComputeNodeNextOptions.withOcpDate(fileListFromComputeNodeOptions.ocpDate());
            }
            return listFromComputeNodeNext(nextPageLink, fileListFromComputeNodeNextOptions).getBody();
        }
    };
    return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
Also used : PageImpl(com.microsoft.azure.batch.protocol.models.PageImpl) PagedList(com.microsoft.azure.PagedList) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) FileListFromComputeNodeNextOptions(com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeNextOptions) FileListFromComputeNodeHeaders(com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeHeaders) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) NodeFile(com.microsoft.azure.batch.protocol.models.NodeFile)

Example 5 with NodeFile

use of com.microsoft.azure.batch.protocol.models.NodeFile in project azure-sdk-for-java by Azure.

the class FilesImpl method listFromTask.

/**
     * Lists the files in a task's directory on its compute node.
     *
     * @param jobId The id of the job that contains the task.
     * @param taskId The id of the task whose files you want to list.
     * @throws BatchErrorException exception thrown from REST call
     * @throws IOException exception thrown from serialization/deserialization
     * @throws IllegalArgumentException exception thrown from invalid parameters
     * @return the List&lt;NodeFile&gt; object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<NodeFile>, FileListFromTaskHeaders> listFromTask(final String jobId, final String taskId) throws BatchErrorException, IOException, IllegalArgumentException {
    if (jobId == null) {
        throw new IllegalArgumentException("Parameter jobId is required and cannot be null.");
    }
    if (taskId == null) {
        throw new IllegalArgumentException("Parameter taskId is required and cannot be null.");
    }
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    final Boolean recursive = null;
    final FileListFromTaskOptions fileListFromTaskOptions = null;
    String filter = null;
    Integer maxResults = null;
    Integer timeout = null;
    String clientRequestId = null;
    Boolean returnClientRequestId = null;
    DateTime ocpDate = null;
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.listFromTask(jobId, taskId, recursive, this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<NodeFile>, FileListFromTaskHeaders> response = listFromTaskDelegate(call.execute());
    PagedList<NodeFile> result = new PagedList<NodeFile>(response.getBody()) {

        @Override
        public Page<NodeFile> nextPage(String nextPageLink) throws BatchErrorException, IOException {
            return listFromTaskNext(nextPageLink, null).getBody();
        }
    };
    return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
Also used : PageImpl(com.microsoft.azure.batch.protocol.models.PageImpl) PagedList(com.microsoft.azure.PagedList) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) FileListFromTaskHeaders(com.microsoft.azure.batch.protocol.models.FileListFromTaskHeaders) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) NodeFile(com.microsoft.azure.batch.protocol.models.NodeFile) FileListFromTaskOptions(com.microsoft.azure.batch.protocol.models.FileListFromTaskOptions)

Aggregations

PagedList (com.microsoft.azure.PagedList)12 NodeFile (com.microsoft.azure.batch.protocol.models.NodeFile)12 DateTimeRfc1123 (com.microsoft.rest.DateTimeRfc1123)12 ServiceResponseWithHeaders (com.microsoft.rest.ServiceResponseWithHeaders)12 ResponseBody (okhttp3.ResponseBody)12 DateTime (org.joda.time.DateTime)12 List (java.util.List)8 PageImpl (com.microsoft.azure.batch.protocol.models.PageImpl)4 ServiceCall (com.microsoft.rest.ServiceCall)4 FileListFromComputeNodeNextOptions (com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeNextOptions)3 FileListFromTaskNextOptions (com.microsoft.azure.batch.protocol.models.FileListFromTaskNextOptions)3 FileListFromComputeNodeHeaders (com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeHeaders)2 FileListFromComputeNodeOptions (com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeOptions)2 FileListFromTaskHeaders (com.microsoft.azure.batch.protocol.models.FileListFromTaskHeaders)2 FileListFromTaskOptions (com.microsoft.azure.batch.protocol.models.FileListFromTaskOptions)2