Bug 634734 - Fennec ASSERTION: mFUnitsConvFactor not valid: mFUnitsConvFactor > 0...
[mozilla-central.git] / storage / src / mozStorageBindingParamsArray.cpp
blob47519f1fa4def8cb95bffb62edbd166150300e1f
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
16 * The Original Code is mozilla.org code.
18 * The Initial Developer of the Original Code is
19 * Mozilla Corporation.
20 * Portions created by the Initial Developer are Copyright (C) 2009
21 * the Initial Developer. All Rights Reserved.
23 * Contributor(s):
24 * Shawn Wilsher <me@shawnwilsher.com> (Original Author)
26 * Alternatively, the contents of this file may be used under the terms of
27 * either the GNU General Public License Version 2 or later (the "GPL"), or
28 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 * in which case the provisions of the GPL or the LGPL are applicable instead
30 * of those above. If you wish to allow use of your version of this file only
31 * under the terms of either the GPL or the LGPL, and not to allow others to
32 * use your version of this file under the terms of the MPL, indicate your
33 * decision by deleting the provisions above and replace them with the notice
34 * and other provisions required by the GPL or the LGPL. If you do not delete
35 * the provisions above, a recipient may use your version of this file under
36 * the terms of any one of the MPL, the GPL or the LGPL.
38 * ***** END LICENSE BLOCK ***** */
40 #include "mozStorageBindingParamsArray.h"
41 #include "mozStorageBindingParams.h"
42 #include "StorageBaseStatementInternal.h"
44 namespace mozilla {
45 namespace storage {
47 ////////////////////////////////////////////////////////////////////////////////
48 //// BindingParamsArray
50 BindingParamsArray::BindingParamsArray(
51 StorageBaseStatementInternal *aOwningStatement
53 : mOwningStatement(aOwningStatement)
54 , mLocked(false)
58 void
59 BindingParamsArray::lock()
61 NS_ASSERTION(mLocked == false, "Array has already been locked!");
62 mLocked = true;
64 // We also no longer need to hold a reference to our statement since it owns
65 // us.
66 mOwningStatement = nsnull;
69 const StorageBaseStatementInternal *
70 BindingParamsArray::getOwner() const
72 return mOwningStatement;
75 NS_IMPL_THREADSAFE_ISUPPORTS1(
76 BindingParamsArray,
77 mozIStorageBindingParamsArray
80 ///////////////////////////////////////////////////////////////////////////////
81 //// mozIStorageBindingParamsArray
83 NS_IMETHODIMP
84 BindingParamsArray::NewBindingParams(mozIStorageBindingParams **_params)
86 NS_ENSURE_FALSE(mLocked, NS_ERROR_UNEXPECTED);
88 nsCOMPtr<mozIStorageBindingParams> params(
89 mOwningStatement->newBindingParams(this));
90 NS_ENSURE_TRUE(params, NS_ERROR_UNEXPECTED);
92 params.forget(_params);
93 return NS_OK;
96 NS_IMETHODIMP
97 BindingParamsArray::AddParams(mozIStorageBindingParams *aParameters)
99 NS_ENSURE_FALSE(mLocked, NS_ERROR_UNEXPECTED);
101 BindingParams *params = static_cast<BindingParams *>(aParameters);
103 // Check to make sure that this set of parameters was created with us.
104 if (params->getOwner() != this)
105 return NS_ERROR_UNEXPECTED;
107 NS_ENSURE_TRUE(mArray.AppendElement(params), NS_ERROR_OUT_OF_MEMORY);
109 // Lock the parameters only after we've successfully added them.
110 params->lock();
112 return NS_OK;
115 NS_IMETHODIMP
116 BindingParamsArray::GetLength(PRUint32 *_length)
118 *_length = length();
119 return NS_OK;
122 } // namespace storage
123 } // namespace mozilla