Files
Tanvi Jagtap 04dc9b1da0 [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging GPR_ASSERT (#36440)
[grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging GPR_ASSERT
Replacing GPR_ASSERT with absl CHECK

These changes have been made using string replacement and regex.

Will not be replacing all instances of CHECK with CHECK_EQ , CHECK_NE etc because there are too many callsites. Only ones which are doable using very simple regex with least chance of failure will be replaced.

Given that we have 5000+ instances of GPR_ASSERT to edit, Doing it manually is too much work for both the author and reviewer.

<!--

If you know who should review your pull request, please assign it to that
person, otherwise the pull request would get assigned randomly.

If your pull request is for a specific language, please add the appropriate
lang label.

-->

Closes #36440

COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/36440 from tanvi-jagtap:tjagtap_iomgr_memory_usage a56570338e308e9bfcd9f16c265074e777c9d6e9
PiperOrigin-RevId: 628276606
2024-04-25 20:35:14 -07:00

59 lines
2.0 KiB
C++

// Copyright 2022 gRPC 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.
#include "test/core/memory_usage/memstats.h"
#include <unistd.h>
#include <fstream>
#include <string>
#include "absl/log/check.h"
#include "absl/strings/str_cat.h"
#include <grpc/support/log.h>
long GetMemUsage(absl::optional<int> pid) {
// Default is getting memory usage for self (calling process)
std::string path = "/proc/self/stat";
if (pid != absl::nullopt) {
path = absl::StrCat("/proc/", pid.value(), "/stat");
}
std::ifstream stat_stream(path, std::ios_base::in);
double resident_set = 0.0;
// Temporary variables for irrelevant leading entries in stats
std::string temp_pid, comm, state, ppid, pgrp, session, tty_nr;
std::string tpgid, flags, minflt, cminflt, majflt, cmajflt;
std::string utime, stime, cutime, cstime, priority, nice;
std::string O, itrealvalue, starttime, vsize;
// Get rss to find memory usage
long rss;
stat_stream >> temp_pid >> comm >> state >> ppid >> pgrp >> session >>
tty_nr >> tpgid >> flags >> minflt >> cminflt >> majflt >> cmajflt >>
utime >> stime >> cutime >> cstime >> priority >> nice >> O >>
itrealvalue >> starttime >> vsize >> rss;
stat_stream.close();
// pid does not connect to an existing process
CHECK(!state.empty());
// Calculations in case x86-64 is configured to use 2MB pages
long page_size_kb = sysconf(_SC_PAGE_SIZE) / 1024;
resident_set = rss * page_size_kb;
// Memory in KB
return resident_set;
}