Skip to content

Instantly share code, notes, and snippets.

@tebeka
Created March 28, 2013 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tebeka/5260443 to your computer and use it in GitHub Desktop.
Save tebeka/5260443 to your computer and use it in GitHub Desktop.
geoip code review in L.A. Gophers meetup
/* Go (cgo) interface to libgeoip */
package geoip
/*
#cgo CFLAGS: -I/opt/local/include -I/usr/local/include
#cgo LDFLAGS: -lGeoIP -L/opt/local/lib -L/usr/local/lib
#include <stdio.h>
#include <errno.h>
#include <GeoIP.h>
//typedef GeoIP* GeoIP_pnt
*/
import "C"
import (
"log"
"os"
"unsafe"
)
// Set Quiet to true to silence warnings when the database can't be opened
// (though libgeoip still prints to errout)
// XXX: Flip to verbose
var Quiet bool = false
type GeoIP struct {
db *C.GeoIP
}
func (gi *GeoIP) Free() {
// FIXME: Free Willy
// Check everything is OK before free and null everything after
}
// Open opens a GeoIP database, all formats supported by libgeoip are supported though
// there are only functions to access the country information in this API.
// The database is opened in MEMORY_CACHE mode, if you need to optimize for memory
// instead of performance you should change this.
// If you don't pass a filename, it will try opening the database from
// a list of common paths.
func Open(files ...string) *GeoIP {
if len(files) == 0 {
files = []string{
"/usr/share/GeoIP/GeoIP.dat", // Linux default
"/usr/share/local/GeoIP/GeoIP.dat", // source install?
"/usr/local/share/GeoIP/GeoIP.dat", // FreeBSD
"/opt/local/share/GeoIP/GeoIP.dat", // MacPorts
}
}
g := &GeoIP{}
runtime.SetFinalizer(g, (*GeoIP).Free)
var err error
for _, file := range files {
// libgeoip prints errors if it can't open the file, so check first
if _, err := os.Stat(file); err != nil {
if os.IsExist(err) {
log.Println(err)
}
continue
}
cbase := C.CString(file)
defer C.free(unsafe.Pointer(cbase))
g.db, err = C.GeoIP_open(cbase, C.GEOIP_MEMORY_CACHE)
if g.db != nil && err != nil {
break
}
}
// FIXME: API decision - return error
if err != nil && !Quiet {
log.Println("Error opening GeoIP database", files, err)
}
if g.db != nil {
C.GeoIP_set_charset(g.db, C.GEOIP_CHARSET_UTF8)
return g
}
return nil
}
// GetOrg takes an IPv4 address string and returns the org name for that IP.
// Requires the geoip org database
func (gi *GeoIP) GetOrg(ip string) string {
if gi.db == nil {
return ""
}
cip := C.CString(ip)
defer C.free(unsafe.Pointer(cip))
cname := C.GeoIP_name_by_addr(gi.db, cip)
defer C.free(unsafe.Pointer(cname))
if cname != nil {
rets := C.GoString(cname)
return rets
}
return ""
}
// GetCountry takes an IPv4 address string and returns the country code for that IP.
func (gi *GeoIP) GetCountry(ip string) string {
// FIXME: Return error?
if gi.db == nil {
return ""
}
cip := C.CString(ip)
defer C.free(unsafe.Pointer(cip))
ccountry := C.GeoIP_country_code_by_addr(gi.db, cip)
defer C.free(unsafe.Pointer(ccountry))
if ccountry != nil {
rets := C.GoString(ccountry)
return rets
}
return ""
}
// GetCountry_v6 works the same as GetCountry except for IPv6 addresses, be sure to
// load a database with IPv6 data to get any results.
func (gi *GeoIP) GetCountry_v6(ip string) string {
if gi.db == nil {
return ""
}
cip := C.CString(ip)
ccountry := C.GeoIP_country_code_by_addr_v6(gi.db, cip)
C.free(unsafe.Pointer(cip))
if ccountry != nil {
rets := C.GoString(ccountry)
return rets
}
return ""
}
/* FIXME: Dispatch magic
type CFunc func(db *C.GeoIP, *C.char value)
func call(fn CFunc, string value) {
cstr := C.CString(value)
defer C.free(unsafe.Pointer(cstr))
res := CFunc(cstr)
defer C.free(unsafe.Pointer(res))
return C.GoString(res)
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment