99707bdd817bb230de1a9a7200710eee474d4715
[platform/framework/web/crosswalk.git] / src / chromeos / network / network_util.h
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROMEOS_NETWORK_NETWORK_UTIL_H_
6 #define CHROMEOS_NETWORK_NETWORK_UTIL_H_
7
8 // This header is introduced to make it easy to switch from chromeos_network.cc
9 // to Chrome's own DBus code.  crosbug.com/16557
10 // All calls to functions in chromeos_network.h should be made through
11 // functions provided by this header.
12
13 #include <string>
14 #include <vector>
15
16 #include "base/basictypes.h"
17 #include "base/callback.h"
18 #include "base/memory/scoped_ptr.h"
19 #include "base/time/time.h"
20 #include "base/values.h"
21 #include "chromeos/chromeos_export.h"
22
23 namespace base {
24 class ListValue;
25 }
26
27 namespace chromeos {
28
29 class NetworkState;
30 class NetworkTypePattern;
31
32 // Struct for passing wifi access point data.
33 struct CHROMEOS_EXPORT WifiAccessPoint {
34   WifiAccessPoint();
35   ~WifiAccessPoint();
36   std::string ssid;  // The ssid of the WiFi node if available.
37   std::string mac_address;  // The mac address of the WiFi node.
38   base::Time timestamp;  // Timestamp when this AP was detected.
39   int signal_strength;  // Radio signal strength measured in dBm.
40   int signal_to_noise;  // Current signal to noise ratio measured in dB.
41   int channel;  // Wifi channel number.
42 };
43
44 // Struct for passing network scan result data.
45 struct CHROMEOS_EXPORT CellularScanResult {
46   CellularScanResult();
47   ~CellularScanResult();
48   std::string status;  // The network's availability status. (One of "unknown",
49                        // "available", "current", or "forbidden")
50   std::string network_id;  // 3GPP operator code ("MCCMNC").
51   std::string short_name;  // Short-format name of the operator.
52   std::string long_name;  // Long-format name of the operator.
53   std::string technology;  // Access technology.
54 };
55
56 typedef std::vector<WifiAccessPoint> WifiAccessPointVector;
57
58 // Describes whether there is an error and whether the error came from
59 // the local system or from the server implementing the connect
60 // method.
61 enum NetworkMethodErrorType {
62   NETWORK_METHOD_ERROR_NONE = 0,
63   NETWORK_METHOD_ERROR_LOCAL = 1,
64   NETWORK_METHOD_ERROR_REMOTE = 2,
65 };
66
67 // Callback for methods that initiate an operation and return no data.
68 typedef base::Callback<void(
69     const std::string& path,
70     NetworkMethodErrorType error,
71     const std::string& error_message)> NetworkOperationCallback;
72
73 namespace network_util {
74
75 // Converts a |prefix_length| to a netmask. (for IPv4 only)
76 // e.g. a |prefix_length| of 24 is converted to a netmask of "255.255.255.0".
77 // Invalid prefix lengths will return the empty string.
78 CHROMEOS_EXPORT std::string PrefixLengthToNetmask(int32 prefix_length);
79
80 // Converts a |netmask| to a prefixlen. (for IPv4 only)
81 // e.g. a |netmask| of 255.255.255.0 is converted to a prefixlen of 24
82 CHROMEOS_EXPORT int32 NetmaskToPrefixLength(const std::string& netmask);
83
84 // Returns |shill_mac_address| in aa:bb format.
85 CHROMEOS_EXPORT std::string FormattedMacAddress(
86     const std::string& shill_mac_address);
87
88 // Parses |list|, which contains DictionaryValues and returns a vector of
89 // CellularScanResult in |scan_results|. Returns false if parsing fails,
90 // in which case the contents of |scan_results| will be undefined.
91 CHROMEOS_EXPORT bool ParseCellularScanResults(
92     const base::ListValue& list, std::vector<CellularScanResult>* scan_results);
93
94 // Retrieves the ONC state dictionary for |network| using GetStateProperties.
95 // This includes properties from the corresponding NetworkState if it exists.
96 CHROMEOS_EXPORT scoped_ptr<base::DictionaryValue> TranslateNetworkStateToONC(
97     const NetworkState* network);
98
99 // Retrieves the list of network services by passing |pattern|,
100 // |configured_only|, and |visible_only| to NetworkStateHandler::
101 // GetNetworkListByType(). Translates the result into a list of ONC
102 // dictionaries using TranslateShillServiceToONCPart. |limit| is used to limit
103 // the number of results. If |debugging_properties| is true then also include
104 // additional debugging properties (used in release code for chrome://network).
105 CHROMEOS_EXPORT scoped_ptr<base::ListValue> TranslateNetworkListToONC(
106     NetworkTypePattern pattern,
107     bool configured_only,
108     bool visible_only,
109     int limit,
110     bool debugging_properties);
111
112 }  // namespace network_util
113 }  // namespace chromeos
114
115 #endif  // CHROMEOS_NETWORK_NETWORK_UTIL_H_