sim-modem/api/modem/modem.go

400 lines
8.8 KiB
Go
Raw Normal View History

2024-07-18 16:34:26 +00:00
package modem
import (
2024-07-21 13:05:09 +00:00
"encoding/json"
2024-07-18 16:34:26 +00:00
"fmt"
"log"
"os"
"os/exec"
2024-07-21 13:05:09 +00:00
"slices"
2024-07-18 16:34:26 +00:00
"strings"
"time"
2024-07-22 15:53:34 +00:00
"github.com/CGSG-2021-AE4/modem-test/api/modem/at"
2024-07-18 16:34:26 +00:00
)
type modem struct {
2024-07-23 14:59:26 +00:00
// Internal values
logger *log.Logger
// Serial values
2024-07-21 13:05:09 +00:00
baudrate int
2024-07-23 16:02:28 +00:00
deviceName string
port at.Port
2024-07-18 16:34:26 +00:00
2024-07-23 14:59:26 +00:00
// Gpio values
2024-07-21 13:05:09 +00:00
onOffPin gpioPin
2024-07-18 16:34:26 +00:00
// Other values
2024-07-21 13:05:09 +00:00
gpsInfo GpsInfo
2024-07-18 16:34:26 +00:00
lastUpdateTime time.Time
}
type Modem interface {
Init() error
2024-07-23 16:02:28 +00:00
// SearchPort(isSoft bool) error
2024-07-18 16:34:26 +00:00
Connect() error
2024-07-23 16:02:28 +00:00
Disconnect() error
IsAvailable() bool
IsConnected() bool
// Ping() error
// SwitchToGpsMode() error
// CalculateSpeed(newLatitude, newlongitude float64)
2024-07-18 16:34:26 +00:00
Update() error
2024-07-21 13:05:09 +00:00
GetInfo() (string, error)
2024-07-23 19:04:15 +00:00
GetShortInfo() string
SaveGPS(path string) error
2024-07-18 16:34:26 +00:00
TestGPS() error
}
2024-07-23 16:02:28 +00:00
func New(logger *log.Logger) Modem {
2024-07-18 16:34:26 +00:00
return &modem{
2024-07-23 16:02:28 +00:00
logger: logger,
2024-07-18 16:34:26 +00:00
baudrate: 115200,
2024-07-23 19:04:15 +00:00
onOffPin: gpioPin{Logger: logger, Pin: 6},
2024-07-18 16:34:26 +00:00
lastUpdateTime: time.Now(),
}
}
func (m *modem) Init() error {
2024-07-21 13:05:09 +00:00
// Turn module on
2024-07-23 19:04:15 +00:00
log.Println("=============================== Turn on module")
if err := m.onOffPin.Init(); err != nil {
return fmt.Errorf("gpio pin init: %w", err)
}
// m.onOffPin.PowerOn()
2024-07-21 13:05:09 +00:00
2024-07-23 14:59:26 +00:00
// Search
m.logger.Println("=============================== Search")
2024-07-21 13:05:09 +00:00
// Soft search
2024-07-23 16:02:28 +00:00
if err := m.searchPort(true); err != nil {
2024-07-18 16:34:26 +00:00
return fmt.Errorf("soft port search: %w", err)
}
2024-07-23 14:59:26 +00:00
// Wide search
2024-07-21 13:05:09 +00:00
if m.port == nil {
2024-07-23 16:02:28 +00:00
if err := m.searchPort(false); err != nil {
2024-07-18 16:34:26 +00:00
return fmt.Errorf("not soft port search: %w", err)
}
}
2024-07-21 13:05:09 +00:00
if m.port == nil {
2024-07-23 16:02:28 +00:00
return fmt.Errorf("no port is detected")
2024-07-18 16:34:26 +00:00
}
2024-07-21 13:05:09 +00:00
// Connect
2024-07-23 14:59:26 +00:00
m.logger.Println("=============================== Connect")
2024-07-18 16:34:26 +00:00
if err := m.Connect(); err != nil {
return fmt.Errorf("connect: %w", err)
}
2024-07-23 14:26:24 +00:00
2024-07-21 13:05:09 +00:00
// Tests
2024-07-23 14:59:26 +00:00
m.logger.Println("=============================== Test")
2024-07-18 16:34:26 +00:00
if err := m.TestGPS(); err != nil {
return fmt.Errorf("testGPS: %w", err)
}
return nil
}
2024-07-23 16:02:28 +00:00
func (m *modem) Connect() error {
if !m.IsAvailable() {
return fmt.Errorf("port is not defined")
}
return m.port.Connect()
}
func (m *modem) Disconnect() error {
if !m.IsAvailable() {
return fmt.Errorf("port is not defined")
}
return m.port.Disconnect()
}
func (m *modem) IsAvailable() bool {
return m.port != nil
}
func (m *modem) IsConnected() bool {
if m.IsAvailable() {
return m.port.IsConnected()
}
return false
}
func (m *modem) Update() error {
if !m.IsConnected() {
m.logger.Println("No connection to module")
return nil
}
m.logger.Println("Update")
// ans, err := m.port.Request(at.CmdQuestion, "CGPSINFO")
// if err != nil {
// return fmt.Errorf("check GPS info mode: %w", err)
// }
// ok := ans == "1"
// if !ok {
// _, err := m.port.Request(at.CmdCheck, "CGPSINFO")
// if err != nil {
// return fmt.Errorf("switch to GPS info mode: %w", err)
// }
// m.logger.Println("switched to GPS mode")
// } else {
// m.logger.Println("mode in right GPS mode")
// }
// Update
m.logger.Println("Receiving GPS data...")
resp, err := m.port.Send("AT+CGPSINFO")
if err != nil {
return fmt.Errorf("receive GPS data: %w", err)
}
if !resp.Check() {
return fmt.Errorf("error response")
}
m.logger.Println("Decoding data...")
if err := m.gpsInfo.decode(strings.Split(strings.Replace(resp.RmFront("+CGPSINFO:").String(), "\r", "", -1), "\n")[0]); err != nil {
m.logger.Println("Gps info decode error:", err.Error())
return nil
}
m.logger.Println("Decoded successfully")
return nil
}
func (m *modem) TestGPS() error {
m.logger.Println("Testing GPS")
if err := m.switchToGpsMode(); err != nil {
return fmt.Errorf("switch to GPS: %w", err)
}
if err := m.Update(); err != nil {
return fmt.Errorf("update: %w", err)
}
m.logger.Println("Current coords:", m.GetShortInfo())
return nil
}
type ModemInfo struct {
Port string `json:"Port"`
GpsInfo
}
type Info struct {
Modem ModemInfo `json:"Modem"`
}
func (m *modem) GetInfo() (string, error) {
info := Info{
Modem: ModemInfo{
Port: m.port.GetName(),
GpsInfo: m.gpsInfo,
},
}
buf, err := json.Marshal(info)
if err != nil {
fmt.Errorf("marshal info: %w", err)
}
return string(buf), nil // why you clamp
}
// Difference: I do not set \n at the end of string
func (m *modem) GetShortInfo() string {
return fmt.Sprintf("%f,%s,%f,%s", m.gpsInfo.Latitude, m.gpsInfo.LatitudeIndicator, m.gpsInfo.Longitude, m.gpsInfo.LongitudeIndicator)
}
func (m *modem) SaveGPS(path string) error {
f, err := os.OpenFile(path, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600)
if err != nil {
return fmt.Errorf("open file: %w", err)
}
defer f.Close()
if _, err = f.WriteString(m.GetShortInfo()); err != nil {
return fmt.Errorf("write file: %W", err)
}
return nil
}
2024-07-23 19:04:15 +00:00
func (m *modem) testConsole() {
for {
var inStr string
fmt.Scanln(&inStr)
if inStr == "exit" {
return
}
resp, err := m.port.Send(inStr)
if err != nil {
m.logger.Println("ERROR:", err.Error())
}
log.Println(resp)
log.Println("------------------")
}
}
2024-07-23 16:02:28 +00:00
func (m *modem) checkPort(portName string) (outErr error) {
defer func() {
if outErr != nil { // Clear port if there is error
m.port = nil
}
}()
2024-07-21 13:05:09 +00:00
// Check device for existance
if _, err := os.Stat(portName); err != nil {
return fmt.Errorf("device does not exist")
}
// Check serial connection
// Connect
2024-07-23 16:02:28 +00:00
m.port = at.New(m.logger, portName, m.baudrate)
2024-07-22 17:37:02 +00:00
if err := m.port.Connect(); err != nil {
2024-07-21 13:05:09 +00:00
return fmt.Errorf("connect: %w", err)
}
2024-07-22 17:37:02 +00:00
defer m.port.Disconnect() // Do not bother about errors...
2024-07-21 13:05:09 +00:00
2024-07-23 19:04:15 +00:00
// Reset input
if err := m.port.GetSerialPort().ResetInputBuffer(); err != nil {
return fmt.Errorf("reset input buffer: %w", err)
}
// Reset output
if err := m.port.GetSerialPort().ResetOutputBuffer(); err != nil {
return fmt.Errorf("reset output buffer: %w", err)
}
m.port.Send("ATE0") // This shit sometimes enables echo mode... why... when... but it can
2024-07-21 13:05:09 +00:00
// Ping
2024-07-23 14:59:26 +00:00
m.logger.Println("Ping...")
2024-07-23 16:02:28 +00:00
if err := m.ping(); err != nil {
2024-07-21 13:05:09 +00:00
return fmt.Errorf("ping error: %w", err)
}
2024-07-23 19:04:15 +00:00
m.logger.Println("\x1b[38;2;0;255;0mOK\x1b[38;2;255;255;255m")
2024-07-21 13:05:09 +00:00
// Check model
2024-07-23 14:59:26 +00:00
m.logger.Println("Check model...")
2024-07-23 09:22:53 +00:00
resp, err := m.port.Send("AT+CGMM")
if err != nil {
return fmt.Errorf("get model: %w", err)
}
if !resp.Check() {
return fmt.Errorf("error response: %s", resp)
}
2024-07-23 14:26:24 +00:00
model := strings.Split(resp.String(), "\n")[0]
2024-07-21 13:05:09 +00:00
if err != nil {
return fmt.Errorf("get model: %w", err)
}
2024-07-23 14:26:24 +00:00
rightModel := "SIMCOM_SIM7600E-H"
2024-07-23 14:59:26 +00:00
// m.logger.Printf("[% x]\n [% x]", []byte("SIMCOM_SIM7600E-H"), []byte(model))
2024-07-23 14:26:24 +00:00
if model[:len(rightModel)] != rightModel {
2024-07-21 13:05:09 +00:00
return fmt.Errorf("invalid modem model: %s", model)
}
2024-07-23 19:04:15 +00:00
m.logger.Println("\x1b[38;2;0;255;0mOK\x1b[38;2;255;255;255m")
2024-07-21 13:05:09 +00:00
return nil
}
2024-07-18 16:34:26 +00:00
2024-07-23 16:02:28 +00:00
func (m *modem) searchPort(isSoft bool) error {
2024-07-18 16:34:26 +00:00
// Get ports
2024-07-21 13:05:09 +00:00
ports := []string{"ttyUSB1", "ttyUSB2", "ttyUSB3"}
if !isSoft {
ps, err := GetTtyDevices()
2024-07-18 16:34:26 +00:00
if err != nil {
2024-07-21 13:05:09 +00:00
fmt.Errorf("get serial devices: %w", err)
2024-07-18 16:34:26 +00:00
}
2024-07-21 13:05:09 +00:00
ports = ps
2024-07-18 16:34:26 +00:00
}
2024-07-21 13:05:09 +00:00
2024-07-18 16:34:26 +00:00
// Check ports
2024-07-21 13:05:09 +00:00
SearchLoop:
2024-07-18 16:34:26 +00:00
for _, p := range ports {
2024-07-23 14:59:26 +00:00
m.logger.Printf("Checking port %s ...\n", p)
2024-07-18 16:34:26 +00:00
2024-07-21 13:05:09 +00:00
if err := m.checkPort("/dev/" + p); err != nil {
2024-07-23 19:04:15 +00:00
m.logger.Printf("\x1b[38;2;255;0;0mCheck failed: %s\x1b[38;2;255;255;255m\n", err.Error())
2024-07-21 13:05:09 +00:00
continue SearchLoop
2024-07-18 16:34:26 +00:00
}
2024-07-23 14:59:26 +00:00
m.logger.Print("Found modem on port: ", p)
2024-07-23 16:02:28 +00:00
m.port = at.New(m.logger, "/dev/"+p, m.baudrate)
2024-07-18 16:34:26 +00:00
return nil
}
return nil
}
2024-07-23 16:02:28 +00:00
func (m *modem) ping() error {
2024-07-23 09:22:53 +00:00
resp, err := m.port.Send("AT")
if err != nil {
return err
}
2024-07-23 14:26:24 +00:00
if !resp.Check() {
2024-07-23 09:22:53 +00:00
return fmt.Errorf("connection lost")
}
return nil
2024-07-18 16:34:26 +00:00
}
2024-07-23 16:02:28 +00:00
func (m *modem) switchToGpsMode() error {
2024-07-23 14:59:26 +00:00
m.logger.Println("Enabling GPS mode...")
2024-07-23 19:04:15 +00:00
// Reset input
2024-07-21 13:05:09 +00:00
if err := m.port.GetSerialPort().ResetInputBuffer(); err != nil {
2024-07-18 16:34:26 +00:00
return fmt.Errorf("reset input buffer: %w", err)
}
2024-07-23 19:04:15 +00:00
// Reset output
if err := m.port.GetSerialPort().ResetOutputBuffer(); err != nil {
return fmt.Errorf("reset output buffer: %w", err)
}
2024-07-21 13:05:09 +00:00
// Check gps mode status
2024-07-23 09:22:53 +00:00
resp, err := m.port.Send("AT+CGPS?")
2024-07-18 16:34:26 +00:00
if err != nil {
2024-07-21 13:05:09 +00:00
return fmt.Errorf("make at ask: %w", err)
2024-07-18 16:34:26 +00:00
}
2024-07-23 09:22:53 +00:00
if !resp.Check() {
return fmt.Errorf("error response")
}
2024-07-23 14:26:24 +00:00
ans := strings.Replace(strings.Split(strings.Split(resp.RmFront("+CGPS:").String(), "\n")[0], ",")[0], " ", "", -1)
2024-07-21 13:05:09 +00:00
if ans == "1" {
2024-07-23 14:59:26 +00:00
m.logger.Println("GPS already enabled")
2024-07-18 16:34:26 +00:00
return nil
}
2024-07-23 14:59:26 +00:00
m.logger.Println(ans)
2024-07-21 13:05:09 +00:00
// Modem is not in GPS mode
2024-07-23 09:22:53 +00:00
resp, err = m.port.Send("AT+CGPS=1")
2024-07-21 13:05:09 +00:00
if err != nil {
return fmt.Errorf("try to switch to gps: %w", err)
}
2024-07-23 09:22:53 +00:00
if !resp.Check() {
return fmt.Errorf("switch tp GPS failed")
}
2024-07-23 14:59:26 +00:00
m.logger.Println("GPS mode enabled")
2024-07-18 16:34:26 +00:00
return nil
}
2024-07-21 13:05:09 +00:00
func GetTtyDevices() ([]string, error) {
devices := []string{}
// Get ports
/**/
out, err := exec.Command("/bin/ls", "/dev").Output()
if err != nil {
return nil, fmt.Errorf("execute ls command: %w", err)
}
allPorts := strings.Split(string(out), "\n")
for _, p := range allPorts {
if len(p) > 3 && p[:3] == "tty" {
devices = append(devices, p)
}
}
slices.Reverse(devices) // ASK why
return devices, nil
}
2024-07-18 16:34:26 +00:00
/*
TODOs:
maybe to store read/write buf in obj
QUESTIONS:
2024-07-21 13:05:09 +00:00
JSON why you clamp
2024-07-18 16:34:26 +00:00
*/
/*
*/