Chromium Code Reviews| Index: chrome/browser/local_discovery/service_discovery_client.h |
| diff --git a/chrome/browser/local_discovery/service_discovery_client.h b/chrome/browser/local_discovery/service_discovery_client.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..30c059d71090ebee0d5d78b722ed6b7c2d7483eb |
| --- /dev/null |
| +++ b/chrome/browser/local_discovery/service_discovery_client.h |
| @@ -0,0 +1,134 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_H_ |
| +#define CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_H_ |
| + |
| +#include <string> |
| +#include <vector> |
| + |
| +#include "base/callback.h" |
| +#include "base/memory/scoped_ptr.h" |
| +#include "base/time.h" |
| +#include "net/base/host_port_pair.h" |
| +#include "net/base/net_util.h" |
| + |
| +namespace local_discovery { |
| + |
| +struct Service { |
|
Vitaly Buka (NO REVIEWS)
2013/06/18 23:01:46
Service -> ServiceDescription ?
Noam Samuel
2013/06/19 18:46:22
Done.
|
| + public: |
| + Service(); |
| + ~Service(); |
| + |
| + // The address (in host/port format) for the service (from SRV record). |
|
gene
2013/06/18 23:46:53
Do you need service name as a part of this class?
Noam Samuel
2013/06/19 18:46:22
Done.
|
| + net::HostPortPair address; |
| + // The metadata (from TXT record) of the service. |
| + std::vector<std::string> metadata; |
| + // IP address of the service, if available from cache. May be empty. |
| + net::IPAddressNumber ip_address; |
| + // Last time the service was seen. |
| + base::Time last_seen; |
| +}; |
| + |
| +// Lets users browse the network for services of interest or listen for changes |
| +// in the services they are interested in. See |
| +// |ServiceDiscoveryClient::CreateServiceWatcher|. |
| +class ServiceWatcher { |
| + public: |
| + class Delegate { |
| + public: |
| + virtual ~Delegate() {} |
| + |
| + // A service has been added or removed for a certain service name. |
| + virtual void OnServiceStatusChanged(bool available, |
| + const std::string& service_name) = 0; |
| + |
| + virtual void OnServiceChanged(const std::string& service_name) = 0; |
|
gene
2013/06/18 23:46:53
Do you need to pass Service/ServiceDescription obj
Noam Samuel
2013/06/19 18:46:22
Users will need to resolve the service separately
|
| + }; |
| + |
| + // Listening will automatically stop when the destructor is called. |
| + virtual ~ServiceWatcher() {} |
| + |
| + // Start the service type watcher. |
| + virtual bool Start() = 0; |
| + |
| + // Get all known services names of this watcher's type. Return them in |
| + // |services|. |
| + virtual void GetAvailableServices( |
| + std::vector<std::string>* services) const = 0; |
| + |
| + // Read services from the cache, alerting the delegate to any service that |
| + // is not yet known. |
| + virtual void ReadCachedServices() = 0; |
| + |
| + // Probe for services of this type. |
| + virtual void DiscoverNewServices(bool force_update) = 0; |
| + |
| + virtual std::string GetServiceType() const = 0; |
| +}; |
| + |
| +// Represents a service on the network and allows users to access the service's |
| +// address and metadata. See |ServiceDiscoveryClient::CreateServiceResolver|. |
| +class ServiceResolver { |
| + public: |
| + enum RequestStatus { |
| + STATUS_SUCCESS = 0, |
| + STATUS_TIMEOUT = 1, |
| + STATUS_KNOWN_NONEXISTENT = 2 |
| + }; |
| + |
| + // A callback for recieving the last time the PTR record has been seen. |
|
gene
2013/06/18 23:46:53
Do you mean SRV record here?
Noam Samuel
2013/06/19 18:46:22
Whoops. This is completely the wrong comment. That
|
| + typedef base::Callback<void(RequestStatus)> ResolveCompleteCallback; |
|
gene
2013/06/18 23:46:53
Do you need to pass Service/ServiceDescription her
Noam Samuel
2013/06/19 18:46:22
Done.
|
| + |
| + // Listening will automatically stop when the destructor is called. |
| + virtual ~ServiceResolver() {} |
| + |
| + // Start the service reader. |
| + virtual bool StartResolving() = 0; |
| + |
| + // Check whether the resolver is currently resolving. Can be called multiple |
| + // times. |
| + virtual bool IsResolving() const = 0; |
| + |
| + // Check wheteher the resolver has resolved the service already. |
| + virtual bool HasResolved() const = 0; |
| + |
| + virtual std::string GetHumanReadableName() const = 0; |
| + virtual std::string GetType() const = 0; |
| + virtual std::string GetName() const = 0; |
| + |
| + virtual const Service& GetService() const = 0; |
| +}; |
| + |
| +class ServiceDiscoveryClient { |
| + public: |
| + virtual ~ServiceDiscoveryClient() {} |
| + |
| + // Create a service object listening for DNS-SD service announcements on |
| + // service type |service_type|. If a service type watcher is |active|, |
|
gene
2013/06/18 23:46:53
you can remove part about active listener here
Noam Samuel
2013/06/19 18:46:22
Done.
|
| + // it will query the network for new services. If |alert_existing_services| is |
| + // true, the delegate will be alerted for services already in the cache. |
| + virtual scoped_ptr<ServiceWatcher> CreateServiceWatcher( |
| + const std::string& service_type, |
| + ServiceWatcher::Delegate* delegate) = 0; |
| + |
| + // Create a service object listening for DNS-SD service announcements on |
| + // service |service_name|. |delegate| may be null in which case the |
| + // object will not recieve continuous announcements but may still query |
| + // about the relevant service. |
| + virtual scoped_ptr<ServiceResolver> CreateServiceResolver( |
| + const std::string& service_name, |
| + const ServiceResolver::ResolveCompleteCallback& callback) = 0; |
| + |
| + // Lazily create and return static instance for ServiceDiscoveryClient. |
| + static ServiceDiscoveryClient* GetInstance(); |
| + |
| + // Set the global instance (for testing). MUST be called before the first call |
| + // to GetInstance. |
| + static void SetInstance(ServiceDiscoveryClient* instance); |
| +}; |
| + |
| +} // namespace local_discovery |
| + |
| +#endif // CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_H_ |