stub in windows and darwin files. golang is neat
This commit is contained in:
parent
ba5c32d244
commit
1c18f171c1
|
@ -0,0 +1,11 @@
|
||||||
|
package zoopb
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go.wit.com/log"
|
||||||
|
)
|
||||||
|
|
||||||
|
// getPackageList returns the list of installed packages based on the distro
|
||||||
|
func getPackageList(distro string) (map[string]string, error) {
|
||||||
|
log.Info("zoopb: have not done macos yet, skipping okay")
|
||||||
|
return nil, nil
|
||||||
|
}
|
58
apt_linux.go
58
apt_linux.go
|
@ -11,6 +11,62 @@ import (
|
||||||
|
|
||||||
// getPackageList returns the list of installed packages based on the distro
|
// getPackageList returns the list of installed packages based on the distro
|
||||||
func getPackageList(distro string) (map[string]string, error) {
|
func getPackageList(distro string) (map[string]string, error) {
|
||||||
log.Info("zoopb: have not done macos yet, skipping okay")
|
var cmd *exec.Cmd
|
||||||
|
|
||||||
|
// Run the appropriate command based on the detected distribution
|
||||||
|
switch distro {
|
||||||
|
case "ubuntu", "debian":
|
||||||
|
return dpkgQuery()
|
||||||
|
case "fedora", "centos", "rhel":
|
||||||
|
cmd = exec.Command("rpm", "-qa")
|
||||||
|
case "arch", "manjaro":
|
||||||
|
cmd = exec.Command("pacman", "-Q")
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unsupported distribution: %s", distro)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Capture the command's output
|
||||||
|
output, err := cmd.CombinedOutput()
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("error running command: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// todo: Split the output into lines and return
|
||||||
|
lines := strings.Split(string(output), "\n")
|
||||||
|
log.Info("output had", len(lines), "lines")
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func dpkgQuery() (map[string]string, error) {
|
||||||
|
// Run the dpkg-query command to list installed packages and versions
|
||||||
|
cmd := exec.Command("dpkg-query", "-W", "-f=${Package} ${Version}\n")
|
||||||
|
stdout, err := cmd.StdoutPipe()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Start the command execution
|
||||||
|
if err := cmd.Start(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer cmd.Wait()
|
||||||
|
|
||||||
|
// Create a map to store package names and versions
|
||||||
|
installedPackages := make(map[string]string)
|
||||||
|
|
||||||
|
// Use a scanner to read the output of the command line by line
|
||||||
|
scanner := bufio.NewScanner(stdout)
|
||||||
|
for scanner.Scan() {
|
||||||
|
line := scanner.Text()
|
||||||
|
// Split each line into package name and version
|
||||||
|
parts := strings.SplitN(line, " ", 2)
|
||||||
|
if len(parts) == 2 {
|
||||||
|
packageName := parts[0]
|
||||||
|
version := parts[1]
|
||||||
|
installedPackages[packageName] = version
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return the map with package names and versions
|
||||||
|
return installedPackages, scanner.Err()
|
||||||
|
}
|
||||||
|
|
72
apt_macos.go
72
apt_macos.go
|
@ -1,72 +0,0 @@
|
||||||
package zoopb
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bufio"
|
|
||||||
"fmt"
|
|
||||||
"os/exec"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"go.wit.com/log"
|
|
||||||
)
|
|
||||||
|
|
||||||
// getPackageList returns the list of installed packages based on the distro
|
|
||||||
func getPackageList(distro string) (map[string]string, error) {
|
|
||||||
var cmd *exec.Cmd
|
|
||||||
|
|
||||||
// Run the appropriate command based on the detected distribution
|
|
||||||
switch distro {
|
|
||||||
case "ubuntu", "debian":
|
|
||||||
return dpkgQuery()
|
|
||||||
case "fedora", "centos", "rhel":
|
|
||||||
cmd = exec.Command("rpm", "-qa")
|
|
||||||
case "arch", "manjaro":
|
|
||||||
cmd = exec.Command("pacman", "-Q")
|
|
||||||
default:
|
|
||||||
return nil, fmt.Errorf("unsupported distribution: %s", distro)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Capture the command's output
|
|
||||||
output, err := cmd.CombinedOutput()
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("error running command: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// todo: Split the output into lines and return
|
|
||||||
lines := strings.Split(string(output), "\n")
|
|
||||||
log.Info("output had", len(lines), "lines")
|
|
||||||
return nil, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func dpkgQuery() (map[string]string, error) {
|
|
||||||
// Run the dpkg-query command to list installed packages and versions
|
|
||||||
cmd := exec.Command("dpkg-query", "-W", "-f=${Package} ${Version}\n")
|
|
||||||
stdout, err := cmd.StdoutPipe()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Start the command execution
|
|
||||||
if err := cmd.Start(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
defer cmd.Wait()
|
|
||||||
|
|
||||||
// Create a map to store package names and versions
|
|
||||||
installedPackages := make(map[string]string)
|
|
||||||
|
|
||||||
// Use a scanner to read the output of the command line by line
|
|
||||||
scanner := bufio.NewScanner(stdout)
|
|
||||||
for scanner.Scan() {
|
|
||||||
line := scanner.Text()
|
|
||||||
// Split each line into package name and version
|
|
||||||
parts := strings.SplitN(line, " ", 2)
|
|
||||||
if len(parts) == 2 {
|
|
||||||
packageName := parts[0]
|
|
||||||
version := parts[1]
|
|
||||||
installedPackages[packageName] = version
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return the map with package names and versions
|
|
||||||
return installedPackages, scanner.Err()
|
|
||||||
}
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
package zoopb
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go.wit.com/log"
|
||||||
|
)
|
||||||
|
|
||||||
|
// getPackageList returns the list of installed packages based on the distro
|
||||||
|
func getPackageList(distro string) (map[string]string, error) {
|
||||||
|
log.Info("zoopb: have not done windows yet, skipping okay")
|
||||||
|
return nil, nil
|
||||||
|
}
|
Loading…
Reference in New Issue