WidcommPlaying.cs :  » Business-Application » 32feet.NET » InTheHand » Net » Bluetooth » Widcomm » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Business Application » 32feet.NET 
32feet.NET » InTheHand » Net » Bluetooth » Widcomm » WidcommPlaying.cs
// 32feet.NET - Personal Area Networking for .NET
//
// InTheHand.Net.Widcomm.WidcommSocketExceptions
// 
// Copyright (c) 2009-2010 In The Hand Ltd, All rights reserved.
// Copyright (c) 2009-2010 Alan J. McFarlane, All rights reserved.
// This source code is licensed under the In The Hand Community License - see License.txt

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using InTheHand.Net.Bluetooth.Factory;

namespace InTheHand.Net.Bluetooth.Widcomm{

    /// <summary>
    /// "Define common return code for new SDK functions that would normally return BOOL"
    /// </summary>
    /// -
    /// <remarks>"Added BTW and SDK 5.0.1.1100".
    /// </remarks>
    public enum SDK_RETURN_CODE
    {
        /// <summary>
        /// "The call was successful"
        /// </summary>
        Success,
        /// <summary>
        /// "Unspecified failure"
        /// </summary>
        Fail,
        /// <summary>
        /// "The API is not supported on the platform BTW stack version"
        /// </summary>
        NotSupported,
        /// <summary>
        /// "The API cannot complete at this time, but may be retried"
        /// </summary>
        Busy,
        /// <summary>
        /// "One of the API parameters was invalid"
        /// </summary>
        InvalidParam,
        /// <summary>
        /// "A necessary resource could not be obtained"
        /// </summary>
        ErrResources,
        /// <summary>
        /// "The operation timed out before completion"
        /// </summary>
        Timeout
    };


#pragma warning disable 1591 // warning CS1591: Missing XML comment for publicly visible type or member ...

    public enum RemoteDeviceState
    {
        Unknown,
        NotPresent,
        Present,
        Connected
    }


    public class WidcommPlaying
    {
        WidcommBluetoothFactoryBase m_factory;

        public WidcommPlaying()
        {
            foreach (BluetoothFactory f in BluetoothFactory.Factories) {
                WidcommBluetoothFactoryBase wf = f as WidcommBluetoothFactoryBase;
                if (f != null) {
                    m_factory = wf;
                    break;
                }
            }
            if (m_factory == null)
                throw new InvalidOperationException("Widcomm stack not present.");
        }

        internal WidcommPlaying(WidcommBluetoothFactoryBase factory)
        {
            m_factory = factory;
        }

        //--
        public RemoteDeviceState FindIfPresentOrConnected(BluetoothAddress addr)
        {
            return FindIfPresentOrConnected(WidcommUtils.FromBluetoothAddress(addr));
        }

        public RemoteDeviceState FindIfPresentOrConnected(byte[] bda)
        {
            WidcommBtInterface iface = m_factory.GetWidcommBtInterface();
            int start;
            start = Environment.TickCount;
            WidcommUtils.Trace_WriteLine("FiPoC: gonna IsRemoteDeviceConnected");
            bool connected = iface.IsRemoteDeviceConnected(bda);
            int tc = Environment.TickCount - start;
            //
            start = Environment.TickCount;
            //TO-DO If this chap is slow, when connected==true we could exit before calling it.
            //(...But it should be quick in that case!)
            WidcommUtils.Trace_WriteLine("FiPoC: gonna IsRemoteDevicePresent");
            SDK_RETURN_CODE present0 = iface.IsRemoteDevicePresent(bda);
            bool present = (present0 == SDK_RETURN_CODE.Success);
            int tp = Environment.TickCount - start;
            //--
#if NETCF
#else
            Debug.Assert(present0 == SDK_RETURN_CODE.NotSupported);
            Debug.Assert(connected == false);
            const int ExpectedMilliseconds = 100;
            Debug.Assert(tp < ExpectedMilliseconds, "slow Is-Present: " + tp);
            Debug.Assert(tc < ExpectedMilliseconds, "slow Is-Connected: " + tc);
#endif
            //--
            RemoteDeviceState state;
            if (connected) {
                state = RemoteDeviceState.Connected;
#if NETCF
                Debug.Assert(present0 == SDK_RETURN_CODE.Success, "present0: " + present0);
#else
                // On BTW IsConnected was implemented before IsPresent.
                Debug.Assert(present0 == SDK_RETURN_CODE.NotSupported
                    || present0 == SDK_RETURN_CODE.Success, "present0: " + present0);
#endif
            } else if (present0 == SDK_RETURN_CODE.NotSupported) {
                state = RemoteDeviceState.Unknown;
            } else if (present0 == SDK_RETURN_CODE.Success) {
                state = RemoteDeviceState.Present;
            } else {
                Debug.Assert(present0 == SDK_RETURN_CODE.Timeout, "present0: " + present0);
                state = RemoteDeviceState.NotPresent;
            }
            WidcommUtils.Trace_WriteLine("FindIfPresentOrConnected: c={0} + p={1} => {2}",
                connected, present0, state);
            return state;
        }


    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.