You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FLEcli/fleprocess/adif_write.go

105 lines
3.4 KiB

package fleprocess
/*
Copyright © 2020 Jean-Marc Meessen, ON4KJM <on4kjm@gmail.com>
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.
*/
import (
"fmt"
"strings"
"time"
)
// OutputAdif generates and writes data in ADIF format
func OutputAdif(outputFile string, fullLog []LogLine, isWWFF bool, isSOTA bool) {
4 years ago
//convert the log data to an in-memory ADIF file
adifData := buildAdif(fullLog, isWWFF, isSOTA)
4 years ago
//write to a file
writeFile(outputFile, adifData)
4 years ago
}
4 years ago
// buildAdif creates the adif file in memory ready to be printed
func buildAdif(fullLog []LogLine, isWWFF bool, isSOTA bool) (adifList []string) {
4 years ago
//Print the fixed header
adifList = append(adifList, "ADIF Export for Fast Log Entry by DF3CB")
adifList = append(adifList, "<PROGRAMID:3>FLE")
adifList = append(adifList, "<ADIF_VER:5>3.1.0")
4 years ago
adifList = append(adifList, "<EOH>")
for _, logLine := range fullLog {
var adifLine strings.Builder
adifLine.WriteString(adifElement("STATION_CALLSIGN", logLine.MyCall))
adifLine.WriteString(adifElement("CALL", logLine.Call))
adifLine.WriteString(adifElement("QSO_DATE", adifDate(logLine.Date)))
adifLine.WriteString(adifElement("TIME_ON", logLine.Time))
adifLine.WriteString(adifElement("BAND", logLine.Band))
adifLine.WriteString(adifElement("MODE", logLine.Mode))
4 years ago
if logLine.Frequency != "" {
adifLine.WriteString(adifElement("FREQ", logLine.Frequency))
}
adifLine.WriteString(adifElement("RST_SENT", logLine.RSTsent))
adifLine.WriteString(adifElement("RST_RCVD", logLine.RSTrcvd))
if logLine.Comment != "" {
adifLine.WriteString(adifElement("COMMENT", logLine.Comment))
}
if logLine.OMname != "" {
adifLine.WriteString(adifElement("NAME", logLine.OMname))
}
if logLine.QSLmsg != "" {
adifLine.WriteString(adifElement("QSLMSG", logLine.QSLmsg))
}
if isWWFF {
adifLine.WriteString(adifElement("MY_SIG", "WWFF"))
adifLine.WriteString(adifElement("MY_SIG_INFO", logLine.MyWWFF))
}
if isSOTA {
adifLine.WriteString(adifElement("MY_SOTA_REF", logLine.MySOTA))
if logLine.SOTA != "" {
adifLine.WriteString(adifElement("SOTA_REF", logLine.SOTA))
}
4 years ago
}
adifLine.WriteString(adifElement("OPERATOR", logLine.Operator))
if logLine.Nickname != "" {
adifLine.WriteString(adifElement("APP_EQSL_QTH_NICKNAME", logLine.Nickname))
}
adifLine.WriteString("<EOR>")
adifList = append(adifList, adifLine.String())
4 years ago
}
return adifList
}
4 years ago
// adifElement generated the ADIF sub-element
4 years ago
func adifElement(elementName, elementValue string) (element string) {
return fmt.Sprintf("<%s:%d>%s ", strings.ToUpper(elementName), len(elementValue), elementValue)
}
4 years ago
4 years ago
//adifDate converts a date in YYYY-MM-DD format to YYYYMMDD
func adifDate(inputDate string) (outputDate string) {
const FLEdateFormat = "2006-01-02"
date, err := time.Parse(FLEdateFormat, inputDate)
4 years ago
//error should never happen
if err != nil {
panic(err)
}
const ADIFdateFormat = "20060102"
return date.Format(ADIFdateFormat)
4 years ago
}