2014年8月19日火曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の3章(小さなツールの作成: 1つのことだけをうまくやる)、プールパズル(p.133)を解いてみる。

その他参考書籍

プールパズル(p.133)

コード(BBEdit, Emacs)

bermuda.c

#include <stdio.h>

int main(int argc, char *argv[])
{
  float latitude;
  float longitude;
  char info[80];
  
  while (scanf("%f,%f,%79[^\n]", &latitude, &longitude, info) == 3)
    if (latitude > 26 && latitude < 34)
      if (longitude > -76 && longitude < -64)
        printf("%f,%f,%s\n", latitude, longitude, info);

  return (0);
}

geo2json.c

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
  float latitude;
  float longitude;
  char info[80];
  int started = 0;

  puts("data=[");
  while (scanf("%f,%f,%79[^\n]", &latitude, &longitude, info) == 3) {
    if (started)
      printf(",\n");
    else
      started = 1;
    if (latitude < -90 || latitude > 90) {
      fprintf(stderr, "緯度に問題があります。%f\n", latitude);
      exit(2);
    }
    if (longitude < -180 || longitude > 180) {
      fprintf(stderr, "経度に問題があります。%f\n", longitude);
      exit (2);
    }
    printf("{latitude: %f, longitude: %f, info: '%s'}",
           latitude, longitude, info);
  }
  puts("\n]");
  
  return (0);
}

Makefile

CC=cc
CFLAGS=-g -Wall
SRC=geo2json.c geo2json.c
OBJ=geo2json.o bermuda.o

all: geo2json bermuda

geo2json: geo2json.o
 $(CC) $(CFLAGS) geo2json.o -o geo2json

geo2json.o: geo2json.c
 $(CC) $(CFLAGS) -c geo2json.c -o geo2json.o

bermuda: bermuda.o
 $(CC) $(CFLAGS) bermuda.o -o bermuda

bermuda.o: bermuda.c
 $(CC) $(CFLAGS) -c bermuda.c -o bermuda.o

clear:
 rm -rf geo2json bermuda $(OBJ)

入出力結果(Terminal)

$ make
cc -g -Wall -c geo2json.c -o geo2json.o
cc -g -Wall geo2json.o -o geo2json
cc -g -Wall -c bermuda.c -o bermuda.o
cc -g -Wall bermuda.o -o bermuda
$ ( ./bermuda | ./geo2json ) < gpsdata.csv
data=[
{latitude: 30.000000, longitude: -70.000000, info: 'Speed = 20'}
]
$ cat gpsdata.csv
42.363400,-710.098465,Speed = 21
42.363327,-71.097588,Speed = 23
30.0,-70.0,Speed = 20
42.363255,-71.096710,Speed = 17
$

0 コメント:

コメントを投稿