transport: pass correct channel
[abstract.git] / storage / base / aaBalanceDelete.cpp
blob7623984ba8d2f0db215f17a8fb045e3c71a9bc09
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) 2008 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 "nsComponentManagerUtils.h"
26 #include "nsXPCOMCID.h"
27 #include "nsIMutableArray.h"
28 #include "nsISupportsPrimitives.h"
30 /* Unfrozen API */
32 /* Project includes */
33 #include "aaAmountUtils.h"
34 #include "aaIBalance.h"
36 #include "aaBalanceDelete.h"
38 static const char *sql =
39 "DELETE FROM balance WHERE id == ?";
41 aaBalanceDelete::aaBalanceDelete()
43 mSql = sql;
46 NS_IMPL_ISUPPORTS_INHERITED0(aaBalanceDelete,
47 aaSaveRequest)
49 /* aaSaveRequest */
50 NS_IMETHODIMP
51 aaBalanceDelete::SetFilter(nsISupports * aFilter)
53 nsresult rv;
54 mBalance = do_QueryInterface(aFilter, &rv);
55 NS_ENSURE_SUCCESS(rv, rv);
57 return NS_OK;
60 NS_IMETHODIMP
61 aaBalanceDelete::GetParams(nsIArray * * aParams)
63 NS_ENSURE_TRUE(mBalance, NS_ERROR_NOT_INITIALIZED);
64 nsresult rv;
66 PRInt64 id;
67 rv = mBalance->GetId(&id);
68 NS_ENSURE_SUCCESS(rv, rv);
70 nsCOMPtr<nsIMutableArray> result
71 = do_CreateInstance(NS_ARRAY_CONTRACTID, &rv);
72 NS_ENSURE_SUCCESS(rv, rv);
74 nsCOMPtr<nsISupportsPRInt64> valInt64;
76 valInt64 = do_CreateInstance(NS_SUPPORTS_PRINT64_CONTRACTID, &rv);
77 NS_ENSURE_SUCCESS(rv, rv);
78 rv = valInt64->SetData(id);
79 NS_ENSURE_SUCCESS(rv, rv);
80 rv = result->InsertElementAt(valInt64, 0, PR_FALSE);
81 NS_ENSURE_SUCCESS(rv, rv);
83 *aParams = result;
84 result.forget();
86 return NS_OK;