pkg/tools/operator/uname.go (34 lines of code) (raw):
// Licensed to Apache Software Foundation (ASF) under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Apache Software Foundation (ASF) licenses this file to you 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.
package operator
import "golang.org/x/sys/unix"
type UnameInfo struct {
SysName string
Nodename string
Release string
Version string
Machine string
}
func GetOSUname() (*UnameInfo, error) {
u := unix.Utsname{}
e := unix.Uname(&u)
if e != nil {
return nil, e
}
ui := UnameInfo{}
ui.SysName = charsToString(u.Sysname[:])
ui.Nodename = charsToString(u.Nodename[:])
ui.Release = charsToString(u.Release[:])
ui.Version = charsToString(u.Version[:])
ui.Machine = charsToString(u.Machine[:])
return &ui, nil
}
func charsToString(ca []byte) string {
s := make([]byte, len(ca))
var lens int
for ; lens < len(ca); lens++ {
if ca[lens] == 0 {
break
}
s[lens] = ca[lens]
}
return string(s[0:lens])
}