blob: 55ea75c7210b900ecb41075555144913c756815c [file] [log] [blame]
// Copyright 2017 The Fuchsia 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 GARNET_BIN_NETWORK_TIME_SERVICE_SERVICE_H_
#define GARNET_BIN_NETWORK_TIME_SERVICE_SERVICE_H_
#include <fuchsia/deprecatedtimezone/cpp/fidl.h>
#include <fuchsia/timezone/cpp/fidl.h>
#include <lib/sys/cpp/component_context.h>
#include <vector>
#include "garnet/bin/network_time/timezone.h"
#include "lib/fidl/cpp/binding_set.h"
namespace network_time_service {
// Implementation of the FIDL time service. Handles setting/getting the
// timezone offset by ICU timezone ID. Also supports getting the raw UTC
// offset in minutes.
//
// For information on ICU ID's and timezone information see:
// http://userguide.icu-project.org/formatparse/datetime
class TimeServiceImpl : public fuchsia::timezone::TimeService,
public fuchsia::deprecatedtimezone::TimeService {
// The type of the callback is identical between the two namespaces.
using fuchsia::timezone::TimeService::UpdateCallback;
public:
// Constructs the time service with a caller-owned application context.
TimeServiceImpl(std::unique_ptr<sys::ComponentContext> context, const char server_config_path[],
const char rtc_device_path[]);
~TimeServiceImpl();
// |TimeServiceImpl|:
void Update(uint8_t num_retries, UpdateCallback callback) override;
private:
std::unique_ptr<sys::ComponentContext> context_;
fidl::BindingSet<fuchsia::timezone::TimeService> bindings_;
fidl::BindingSet<fuchsia::deprecatedtimezone::TimeService> deprecated_bindings_;
time_server::Timezone time_server_;
};
} // namespace network_time_service
#endif // GARNET_BIN_NETWORK_TIME_SERVICE_SERVICE_H_