Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Copyright 2015, Google Inc. |
| 4 | * All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions are |
| 8 | * met: |
| 9 | * |
| 10 | * * Redistributions of source code must retain the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer. |
| 12 | * * Redistributions in binary form must reproduce the above |
| 13 | * copyright notice, this list of conditions and the following disclaimer |
| 14 | * in the documentation and/or other materials provided with the |
| 15 | * distribution. |
| 16 | * * Neither the name of Google Inc. nor the names of its |
| 17 | * contributors may be used to endorse or promote products derived from |
| 18 | * this software without specific prior written permission. |
| 19 | * |
| 20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 21 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 22 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 23 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 24 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 25 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 26 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | *is % allowed in string |
| 32 | */ |
| 33 | |
| 34 | #include "test/cpp/util/metrics_server.h" |
| 35 | |
David Garcia Quintas | 1aeabd7 | 2016-01-19 10:44:05 -0800 | [diff] [blame^] | 36 | #include <grpc++/server.h> |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 37 | #include <grpc++/server_builder.h> |
| 38 | |
Craig Tiller | 1b4e330 | 2015-12-17 16:35:00 -0800 | [diff] [blame] | 39 | #include "src/proto/grpc/testing/metrics.grpc.pb.h" |
| 40 | #include "src/proto/grpc/testing/metrics.pb.h" |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 41 | |
| 42 | namespace grpc { |
| 43 | namespace testing { |
| 44 | |
Sree Kuchibhotla | 4d0f2f9 | 2015-11-03 15:55:43 -0800 | [diff] [blame] | 45 | Gauge::Gauge(long initial_val) : val_(initial_val) {} |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 46 | |
Sree Kuchibhotla | 4d0f2f9 | 2015-11-03 15:55:43 -0800 | [diff] [blame] | 47 | void Gauge::Set(long new_val) { |
Sree Kuchibhotla | 52a514a | 2015-11-19 10:28:47 -0800 | [diff] [blame] | 48 | std::lock_guard<std::mutex> lock(val_mu_); |
| 49 | val_ = new_val; |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 50 | } |
| 51 | |
Sree Kuchibhotla | 52a514a | 2015-11-19 10:28:47 -0800 | [diff] [blame] | 52 | long Gauge::Get() { |
| 53 | std::lock_guard<std::mutex> lock(val_mu_); |
| 54 | return val_; |
| 55 | } |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 56 | |
Sree Kuchibhotla | 4d0f2f9 | 2015-11-03 15:55:43 -0800 | [diff] [blame] | 57 | grpc::Status MetricsServiceImpl::GetAllGauges( |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 58 | ServerContext* context, const EmptyMessage* request, |
Sree Kuchibhotla | 4d0f2f9 | 2015-11-03 15:55:43 -0800 | [diff] [blame] | 59 | ServerWriter<GaugeResponse>* writer) { |
| 60 | gpr_log(GPR_INFO, "GetAllGauges called"); |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 61 | |
| 62 | std::lock_guard<std::mutex> lock(mu_); |
Sree Kuchibhotla | 4d0f2f9 | 2015-11-03 15:55:43 -0800 | [diff] [blame] | 63 | for (auto it = gauges_.begin(); it != gauges_.end(); it++) { |
| 64 | GaugeResponse resp; |
Sree Kuchibhotla | b047c0f | 2015-11-16 11:52:54 -0800 | [diff] [blame] | 65 | resp.set_name(it->first); // Gauge name |
| 66 | resp.set_long_value(it->second->Get()); // Gauge value |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 67 | writer->Write(resp); |
| 68 | } |
| 69 | |
| 70 | return Status::OK; |
| 71 | } |
| 72 | |
Sree Kuchibhotla | 4d0f2f9 | 2015-11-03 15:55:43 -0800 | [diff] [blame] | 73 | grpc::Status MetricsServiceImpl::GetGauge(ServerContext* context, |
| 74 | const GaugeRequest* request, |
| 75 | GaugeResponse* response) { |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 76 | std::lock_guard<std::mutex> lock(mu_); |
| 77 | |
Sree Kuchibhotla | 52a514a | 2015-11-19 10:28:47 -0800 | [diff] [blame] | 78 | const auto it = gauges_.find(request->name()); |
Sree Kuchibhotla | 4d0f2f9 | 2015-11-03 15:55:43 -0800 | [diff] [blame] | 79 | if (it != gauges_.end()) { |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 80 | response->set_name(it->first); |
Sree Kuchibhotla | b047c0f | 2015-11-16 11:52:54 -0800 | [diff] [blame] | 81 | response->set_long_value(it->second->Get()); |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | return Status::OK; |
| 85 | } |
| 86 | |
Sree Kuchibhotla | b047c0f | 2015-11-16 11:52:54 -0800 | [diff] [blame] | 87 | std::shared_ptr<Gauge> MetricsServiceImpl::CreateGauge(const grpc::string& name, |
| 88 | bool* already_present) { |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 89 | std::lock_guard<std::mutex> lock(mu_); |
| 90 | |
Sree Kuchibhotla | 4d0f2f9 | 2015-11-03 15:55:43 -0800 | [diff] [blame] | 91 | std::shared_ptr<Gauge> gauge(new Gauge(0)); |
Sree Kuchibhotla | 52a514a | 2015-11-19 10:28:47 -0800 | [diff] [blame] | 92 | const auto p = gauges_.emplace(name, gauge); |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 93 | |
Sree Kuchibhotla | 4d0f2f9 | 2015-11-03 15:55:43 -0800 | [diff] [blame] | 94 | // p.first is an iterator pointing to <name, shared_ptr<Gauge>> pair. p.second |
Sree Kuchibhotla | 52a514a | 2015-11-19 10:28:47 -0800 | [diff] [blame] | 95 | // is a boolean which is set to 'true' if the Gauge is inserted in the guages_ |
| 96 | // map and 'false' if it is already present in the map |
Sree Kuchibhotla | b047c0f | 2015-11-16 11:52:54 -0800 | [diff] [blame] | 97 | *already_present = !p.second; |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 98 | return p.first->second; |
| 99 | } |
| 100 | |
Sree Kuchibhotla | 52a514a | 2015-11-19 10:28:47 -0800 | [diff] [blame] | 101 | // Starts the metrics server and returns the grpc::Server instance. Call Wait() |
| 102 | // on the returned server instance. |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 103 | std::unique_ptr<grpc::Server> MetricsServiceImpl::StartServer(int port) { |
| 104 | gpr_log(GPR_INFO, "Building metrics server.."); |
| 105 | |
Sree Kuchibhotla | bc3127d | 2015-11-19 10:32:59 -0800 | [diff] [blame] | 106 | const grpc::string address = "0.0.0.0:" + std::to_string(port); |
Sree Kuchibhotla | b5e98c5 | 2015-10-27 22:55:26 -0700 | [diff] [blame] | 107 | |
| 108 | ServerBuilder builder; |
| 109 | builder.AddListeningPort(address, grpc::InsecureServerCredentials()); |
| 110 | builder.RegisterService(this); |
| 111 | |
| 112 | std::unique_ptr<grpc::Server> server(builder.BuildAndStart()); |
| 113 | gpr_log(GPR_INFO, "Metrics server %s started. Ready to receive requests..", |
| 114 | address.c_str()); |
| 115 | |
| 116 | return server; |
| 117 | } |
| 118 | |
| 119 | } // namespace testing |
| 120 | } // namespace grpc |