我正在尝试编写一个golang程序,它将能够从以下类型的数据文件中读取
#define __LPM_classic__(addr) (__extension__({ uint16_t __addr16 = (uint16_t)(addr); uint8_t __result; __asm__ __volatile__ ( "lpm" "\n\t" "mov %0, r0" "\n\t" : "=r" (__result) : "z" (__addr16) : "r0" ); __result; }))
#define PRIXFAST32 "lX"
#define INT0 0
#define INT1 1
#define clockCyclesToMicroseconds(a) ( (a) / clockCyclesPerMicrosecond() )
#define B00010000 16
#define B11101000 232
#define B11101001 233
#define PRADC 0
#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
#define Arduino_h
#define sq(x) ((x)*(x))
#define B01000100 68
#define B01000101 69
(对任何人感到疑惑,是的,这是来自CLAN预处理器的输出。我做这件事的原因很复杂,我不想用不必要的细节麻烦别人。
我需要编写一个golang程序,它将读取这个文件,并给我一个字符串的定义值。例如
func getDefinedValue(filepath string,defineName string) string{
//Need help with this part
}
因此,如果我按以下方式运行函数
Value :=getDefinedValue("preprocessorOutput.txt","PRADC")
根据上面的示例文件,变量值应该保持0。
我曾尝试使用FMT Fscnaf。
file, err := os.Open("preprocessorOutput.txt")
Value :=""
readLine :=""
defName :=""
var errr error
for (errr == nil) && (len(Value)==0){
ret,err :=fmt.Fscanf(file,"#define %s %s",&defName,&readLine)
errr=err
fmt.Println("This is returned ",ret, " and this is the defName ",defName, " And this is the value ",readLine," and this is the error",err)
if(ret <1){
continue
}
//I planned to process the defName and readline to get the actual value here, as per which defName I want to get.
}
(别担心细节,这是我在MCVE的尝试)
它允许我使用类似clang的scanf allows的格式字符串,但它在示例的第一行失败,并在第二行抛出错误。
这是我第一天使用高朗,我可能会杀了有一个包为我做这项工作。