blob: 16ba3ae0ac7676d3f123e7ad1b05ce2bad572609 [file] [log] [blame]
/**
* Copyright (c) 2020, The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <climits>
#include <map>
#include <mutex>
#include <string>
#include <string_view>
#include <android-base/thread_annotations.h>
#include <netdutils/DumpWriter.h>
namespace android::net {
// TODO: Add some way to update the stored experiment flags periodically.
// TODO: Refactor this class and make things easier. (e.g. remove string map.)
class Experiments {
public:
using GetExperimentFlagIntFunction = std::function<int(const std::string&, int)>;
static Experiments* getInstance();
int getFlag(std::string_view key, int defaultValue) const EXCLUDES(mMutex);
void update();
void dump(netdutils::DumpWriter& dw) const EXCLUDES(mMutex);
Experiments(Experiments const&) = delete;
void operator=(Experiments const&) = delete;
private:
explicit Experiments(GetExperimentFlagIntFunction getExperimentFlagIntFunction);
Experiments() = delete;
void updateInternal() EXCLUDES(mMutex);
mutable std::mutex mMutex;
std::map<std::string_view, int> mFlagsMapInt GUARDED_BY(mMutex);
static constexpr const char* const kExperimentFlagKeyList[] = {
"doh",
"doh_early_data",
"doh_idle_timeout_ms",
"doh_probe_timeout_ms",
"doh_query_timeout_ms",
"doh_session_resumption",
"dot_async_handshake",
"dot_connect_timeout_ms",
"dot_maxtries",
"dot_query_timeout_ms",
"dot_quick_fallback",
"dot_revalidation_threshold",
"dot_validation_latency_factor",
"dot_validation_latency_offset_ms",
"dot_xport_unusable_threshold",
"keep_listening_udp",
"max_cache_entries",
"max_queries_global",
"mdns_resolution",
"parallel_lookup_release",
"parallel_lookup_sleep_time",
"retransmission_time_interval",
"retry_count",
"skip_4a_query_on_v6_linklocal_addr",
"sort_nameservers",
};
// This value is used in updateInternal as the default value if any flags can't be found.
static constexpr int kFlagIntDefault = INT_MIN;
// For testing.
friend class ExperimentsTest;
const GetExperimentFlagIntFunction mGetExperimentFlagIntFunction;
};
} // namespace android::net