blob: 57a270983e0c42a03b0ff4f1f31318217a0a8cbe [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors
//
// 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.
#ifndef COBALT_ANALYZER_STORE_BIGTABLE_NAMES_H_
#define COBALT_ANALYZER_STORE_BIGTABLE_NAMES_H_
#include <string>
#include <utility>
namespace cobalt {
namespace analyzer {
namespace store {
const char kDataColumnFamilyName[] = "data";
const char kObservationsTableId[] = "observations";
const char kReportMetadataTableId[] = "report_metadata";
const char kReportRowsTableId[] = "report_rows";
const char kCloudBigtableUri[] = "bigtable.googleapis.com";
const char kCloudBigtableAdminUri[] = "bigtableadmin.googleapis.com";
class BigtableNames {
public:
static std::string TableParentName(const std::string& project_name,
const std::string& instance_id) {
return "projects/" + project_name + "/instances/" + instance_id;
}
static std::string ObservationsTableName(const std::string& project_name,
const std::string& instance_id) {
return FullTableName(project_name, instance_id, kObservationsTableId);
}
static std::string ReportMetadataTableName(const std::string& project_name,
const std::string& instance_id) {
return FullTableName(project_name, instance_id, kReportMetadataTableId);
}
static std::string ReportRowsTableName(const std::string& project_name,
const std::string& instance_id) {
return FullTableName(project_name, instance_id, kReportRowsTableId);
}
static std::string FullTableName(const std::string& project_name,
const std::string& instance_id,
const std::string& table_id) {
return TableParentName(project_name, instance_id) + "/tables/" + table_id;
}
};
} // namespace store
} // namespace analyzer
} // namespace cobalt
#endif // COBALT_ANALYZER_STORE_BIGTABLE_NAMES_H_