Я пытаюсь выставить веб-API ASP.NET, который должен захватывать и возвращать фотографию в виде вложения.
Я использую CameraControl.Devices 2.1.0-бета для управления моей Nikon DSLR и .NET 4.6.
Но у меня очень противоречивое поведение. Иногда первый HTTP-запрос возвращает фотографию, но с этого момента он останавливается прямо перед составлением окончательного HttpResponseMessage, а затем HTTP-запрос просто зависает и время ожидания. Я считаю, что это тупик, вызванный асинхронными операциями. Он всегда выполняет логику в DeviceManager_PhotoCaptured, которая передает фотографию из DSLR в папку. Иногда так или иначе требуется две фотографии из одного запроса.
Что я делаю не так? Вы знаете лучший способ сделать это?
using System;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Http;
using CameraControl.Devices;
using CameraControl.Devices.Classes;
public class PhotosController : ApiController
{
public string FolderForPhotos = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyPictures), "Test");
private TaskCompletionSource<string> TaskCompletionSource = null;
private CameraDeviceManager DeviceManager = null;
// GET api/photos
public async Task<HttpResponseMessage> Get()
{
TaskCompletionSource = new TaskCompletionSource<string>();
DeviceManager = new CameraDeviceManager();
DeviceManager.StartInNewThread = false;
DeviceManager.PhotoCaptured += DeviceManager_PhotoCaptured;
DeviceManager.ConnectToCamera();
DeviceManager.SelectedCameraDevice.CapturePhoto();
var fileName = await TaskCompletionSource.Task.ConfigureAwait(continueOnCapturedContext: false);
HttpResponseMessage result = new HttpResponseMessage(HttpStatusCode.OK);
var stream = new FileStream(fileName, FileMode.Open);
result.Content = new StreamContent(stream);
result.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment");
result.Content.Headers.ContentDisposition.FileName = Path.GetFileName(fileName);
result.Content.Headers.ContentType = new MediaTypeHeaderValue("image/jpg");
result.Content.Headers.ContentLength = stream.Length;
return result;
}
private void DeviceManager_PhotoCaptured(object sender, PhotoCapturedEventArgs eventArgs)
{
if (eventArgs == null)
{
TaskCompletionSource.TrySetException(new Exception("eventArgs is empty"));
return;
}
try
{
string fileName = Path.Combine(FolderForPhotos, Path.GetFileName(eventArgs.FileName));
// if file exist try to generate a new filename to prevent file lost.
// This useful when camera is set to record in ram the the all file names are same.
if (File.Exists(fileName))
fileName =
StaticHelper.GetUniqueFilename(
Path.GetDirectoryName(fileName) + "\\" + Path.GetFileNameWithoutExtension(fileName) + "_", 0,
Path.GetExtension(fileName));
// check the folder of filename, if not found create it
if (!Directory.Exists(Path.GetDirectoryName(fileName)))
{
Directory.CreateDirectory(Path.GetDirectoryName(fileName));
}
eventArgs.CameraDevice.TransferFile(eventArgs.Handle, fileName);
// the IsBusy may used internally, if file transfer is done should set to false
eventArgs.CameraDevice.IsBusy = false;
TaskCompletionSource.TrySetResult(fileName);
}
catch (Exception exception)
{
TaskCompletionSource.TrySetException(exception);
eventArgs.CameraDevice.IsBusy = false;
}
finally
{
DeviceManager.CloseAll();
}
}
}