Files
allwpilib/wpiutil/src/main/native/cpp/hostname.cpp

66 lines
1.7 KiB
C++
Raw Normal View History

2017-08-27 21:35:34 -07:00
/*----------------------------------------------------------------------------*/
2018-01-01 17:32:39 -08:00
/* Copyright (c) 2017-2018 FIRST. All Rights Reserved. */
2017-08-27 21:35:34 -07:00
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#include "wpi/hostname.h"
2017-08-27 21:35:34 -07:00
#ifdef _WIN32
#include <Winsock2.h>
#pragma comment(lib, "Ws2_32.lib")
#else
#include <unistd.h>
#endif
#include <string>
2017-10-21 20:31:20 -07:00
#include "wpi/SmallVector.h"
#include "wpi/StringRef.h"
2017-08-27 21:35:34 -07:00
#ifdef _WIN32
struct WSAHelper {
WSAHelper() {
WSAData wsaData;
WORD wVersionRequested = MAKEWORD(2, 2);
WSAStartup(wVersionRequested, &wsaData);
}
~WSAHelper() { WSACleanup(); }
};
static WSAHelper& GetWSAHelper() {
static WSAHelper helper;
return helper;
}
#endif
namespace wpi {
static bool GetHostnameImpl(char* name, size_t name_len) {
#ifdef _WIN32
GetWSAHelper();
#endif
if (::gethostname(name, name_len) != 0) return false;
2017-10-21 20:31:20 -07:00
name[name_len - 1] =
'\0'; // Per POSIX, may not be null terminated if too long
2017-08-27 21:35:34 -07:00
return true;
}
std::string GetHostname() {
char name[256];
if (!GetHostnameImpl(name, sizeof(name))) return "";
return name;
}
StringRef GetHostname(SmallVectorImpl<char>& name) {
2017-08-27 21:35:34 -07:00
// Use a tmp array to not require the SmallVector to be too large.
char tmpName[256];
if (!GetHostnameImpl(tmpName, sizeof(tmpName))) {
return StringRef{};
2017-08-27 21:35:34 -07:00
}
name.clear();
name.append(tmpName, tmpName + std::strlen(tmpName) + 1);
return StringRef{name.data(), name.size(), true};
2017-08-27 21:35:34 -07:00
}
} // namespace wpi