[storage] Migrate to mozbuild (bug #114)
[abstract.git] / storage / base / aaLoadPendingFacts.cpp
blob6bc5f00c5b8406a5debc12625870ba66af3775d0
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent tw=79 ft=cpp: */
3 /*
4 * Copyright (C) 2007 Sergey Yanovich <ynvich@gmail.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
22 #include "xpcom-config.h"
24 #include "nsCOMPtr.h"
25 #include "nsIMutableArray.h"
26 #include "nsComponentManagerUtils.h"
27 #include "nsStringAPI.h"
28 #include "nsEmbedString.h"
30 /* Unfrozen API */
31 #include "mozIStorageConnection.h"
32 #include "mozIStorageStatement.h"
34 /* Project includes */
35 #include "aaIFlow.h"
36 #include "aaIEvent.h"
37 #include "aaIFact.h"
38 #include "aaLoadPendingFacts.h"
40 #define AA_LOADPENDINGFACTS_SELECT_QUERY "SELECT strftime('%s',transfer.day),\
41 transfer.event_id, transfer.id, fromF.flow_id, toF.flow_id, transfer.amount\
42 FROM transfer\
43 LEFT JOIN txn ON transfer.day == txn.day AND transfer.event_id == txn.event_id\
44 AND transfer.id == txn.transfer_id\
45 LEFT JOIN fact AS fromF ON transfer.day == fromF.day AND transfer.event_id\
46 == fromF.event_id AND transfer.id == fromF.transfer_id AND\
47 fromF.side == 1\
48 LEFT JOIN fact AS toF ON transfer.day == toF.day AND transfer.event_id ==\
49 toF.event_id AND transfer.id == toF.transfer_id AND toF.side == 0\
50 WHERE txn.value IS NULL"
52 aaLoadPendingFacts::aaLoadPendingFacts(nsISupports *aOuter)
53 :aaLoadQuery(aOuter)
57 aaLoadPendingFacts::~aaLoadPendingFacts()
61 NS_IMPL_ISUPPORTS_INHERITED0(aaLoadPendingFacts,
62 aaLoadQuery)
64 /* Virtual methods */
65 const char*
66 aaLoadPendingFacts::getSelectQuery() const
68 return AA_LOADPENDINGFACTS_SELECT_QUERY;
71 aaIDataNode*
72 aaLoadPendingFacts::fetchRow()
74 nsresult rv;
75 PRInt64 id, eventId, fromId, toId;
76 PRTime time;
77 double sum;
79 rv = mStatement->GetInt64(0, &time);
80 if (NS_FAILED(rv))
81 return nsnull;
82 time *= 1000000;
84 rv = mStatement->GetInt64(1, &eventId);
85 if (NS_FAILED(rv))
86 return nsnull;
88 nsCOMPtr<aaIEvent> event = do_CreateInstance("@aasii.org/base/event;1");
89 if (NS_UNLIKELY( ! event ))
90 return nsnull;
91 event->SetTime( time );
92 event->SetId( eventId );
94 rv = mStatement->GetInt64(2, &id);
95 NS_ENSURE_SUCCESS(rv, nsnull);
97 nsCOMPtr<aaIFlow> fromFlow(do_CreateInstance("@aasii.org/base/flow;1"));
98 nsCOMPtr<aaIFlow> toFlow(do_CreateInstance("@aasii.org/base/flow;1"));
99 NS_ENSURE_TRUE(fromFlow && toFlow, nsnull);
101 rv = mStatement->GetInt64(3, &fromId);
102 NS_ENSURE_SUCCESS(rv, nsnull);
103 fromFlow->SetId(fromId);
105 rv = mStatement->GetInt64(4, &toId);
106 NS_ENSURE_SUCCESS(rv, nsnull);
107 toFlow->SetId(toId);
109 rv = mStatement->GetDouble(5, &sum);
110 NS_ENSURE_SUCCESS(rv, nsnull);
112 aaIFact *fact;
113 CallCreateInstance("@aasii.org/base/fact;1", nsnull, &fact);
114 if (! fact)
115 return nsnull;
117 fact->SetId(id);
118 fact->SetEvent(event);
119 fact->SetTakeFrom(fromFlow);
120 fact->SetGiveTo(toFlow);
121 fact->SetAmount(sum);
122 return fact;