func QuoteDriver(db *db.Database, l logging.Logger) *quoteDriver { qc := quotes.Collection(db, l) return "eDriver{ QuoteCollection: qc, limits: make(map[string]*rateLimit), l: l, } }
func main() { flag.Parse() log = logging.NewFromFlags() // Let's go find some mongo. mdb, err := db.Connect("localhost") if err != nil { log.Fatal("Oh no: %v", err) } defer mdb.Session.Close() qc := quotes.Collection(mdb, log) // A communication channel of Quotes. quotes := make(chan *quotes.Quote) rows := make(chan []interface{}) // Function to feed rows into the rows channel. row_feeder := func(sth *sqlite3.Statement, row ...interface{}) { rows <- row } // Function to execute a query on the SQLite db. db_query := func(dbh *sqlite3.Database) { n, err := dbh.Execute("SELECT * FROM Quotes;", row_feeder) if err == nil { log.Info("Read %d rows from database.\n", n) } else { log.Error("DB error: %s\n", err) } } // Open up the quote database in a goroutine and feed rows // in on the input_rows channel. go func() { sqlite3.Session(*file, db_query) // once we've done the query, close the channel to indicate this close(rows) }() // Another goroutine to munge the rows into quotes. // This was originally done inside the SQLite callbacks, but // cgo or sqlite3 obscures runtime panics and makes fail happen. go func() { for row := range rows { parseQuote(row, quotes) } close(quotes) }() // And finally... count := 0 for quote := range quotes { // ... push each quote into mongo err = qc.Insert(quote) if err != nil { log.Error("Awww: %v\n", err) } else { if count%1000 == 0 { fmt.Printf("%d...", count) } count++ } } fmt.Println("done.") log.Info("Inserted %d quotes.\n", count) }