public void ConnectDevicesDDServer(string ip, int port)
        {
            if (_connectionInProgress)
            {
                return;
            }
            try
            {
                _connectionInProgress = true;
                _deviceEnumerator.RemoveDisconnected();
                DdClient client = new DdClient();
                if (!client.Open(ip, port))
                {
                    throw new Exception("No server was found!");
                }
                var devices = client.GetDevices();
                if (devices.Count == 0)
                {
                    throw new Exception("No connected device was found!");
                }

                client.Connect(devices[0]);
                DdServerProtocol protocol = new DdServerProtocol(client);

                if (GetNativeDriver(protocol.Model) != null)
                {
                    ICameraDevice    cameraDevice;
                    DeviceDescriptor descriptor = new DeviceDescriptor {
                        WpdId = "ddserver"
                    };
                    cameraDevice = (ICameraDevice)Activator.CreateInstance(GetNativeDriver(protocol.Model));
                    descriptor.StillImageDevice = protocol;

                    //cameraDevice.SerialNumber = StaticHelper.GetSerial(portableDevice.DeviceId);
                    cameraDevice.Init(descriptor);
                    ConnectedDevices.Add(cameraDevice);
                    NewCameraConnected(cameraDevice);

                    descriptor.CameraDevice = cameraDevice;
                    _deviceEnumerator.Add(descriptor);
                }
                else
                {
                    throw new Exception("Not Supported device " + protocol.Model);
                }
            }
            finally
            {
                _connectionInProgress = false;
            }
        }
Пример #2
0
        public DeviceDescriptor Connect(string address)
        {
            int    port = 4757;
            string ip   = address;

            if (address.Contains(":"))
            {
                ip = address.Split(':')[0];
                int.TryParse(address.Split(':')[1], out port);
            }
            DdClient client = new DdClient();

            if (!client.Open(ip, port))
            {
                throw new Exception("No server was found!");
            }
            var devices = client.GetDevices();

            if (devices.Count == 0)
            {
                throw new Exception("No connected device was found!");
            }

            client.Connect(devices[0]);
            DdServerProtocol protocol = new DdServerProtocol(client);

            if (CameraDeviceManager.GetNativeDriver(protocol.Model) != null)
            {
                DeviceDescriptor descriptor = new DeviceDescriptor {
                    WpdId = "ddserver"
                };
                var cameraDevice = (ICameraDevice)Activator.CreateInstance(CameraDeviceManager.GetNativeDriver(protocol.Model));
                descriptor.StillImageDevice = protocol;

                //cameraDevice.SerialNumber = StaticHelper.GetSerial(portableDevice.DeviceId);
                cameraDevice.Init(descriptor);
                descriptor.CameraDevice = cameraDevice;
                return(descriptor);
            }
            else
            {
                throw new Exception("Not Supported device " + protocol.Model);
            }
        }
Пример #3
0
 public void Init(DdClient client)
 {
     _client = client;
     LoadDeviceInfo();
     OpenSession();
 }
Пример #4
0
 public DdServerProtocol(DdClient client)
 {
     Init(client);
 }
Пример #5
0
 public DdClientExt(DdClient dd)
   : base(dd)
 {
 }