If you think the Android project couchbase-lite-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/**
* Original iOS version by Jens Alfke/*fromwww.java2s.com*/
* Ported to Android by Marty Schoch
*
* Copyright (c) 2012 Couchbase, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the
* License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/package com.couchbase.lite.performance2;
import com.couchbase.lite.CouchbaseLiteException;
import com.couchbase.lite.Database;
import com.couchbase.lite.DocumentChange;
import com.couchbase.lite.LitePerfTestCase;
import com.couchbase.lite.LiteTestCase;
import com.couchbase.lite.ReplicationFilter;
import com.couchbase.lite.RevisionList;
import com.couchbase.lite.SavedRevision;
import com.couchbase.lite.Status;
import com.couchbase.lite.TransactionalTask;
import com.couchbase.lite.internal.Body;
import com.couchbase.lite.internal.RevisionInternal;
import com.couchbase.lite.support.Base64;
import com.couchbase.lite.util.Log;
import org.apache.commons.io.IOUtils;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.couchbase.lite.Revision;
import com.couchbase.lite.Document;
publicclass Test01_CreateDocs extends LitePerfTestCase {
publicstaticfinal String TAG = "Test1_CreateDocs";
privatestaticfinal String _propertyValue = "1";
publicdouble runOne(finalint numberOfDocuments, finalint sizeOfDocuments) throws Exception {
String[] bigObj = new String[sizeOfDocuments];
for (int i = 0; i < sizeOfDocuments; i++) {
bigObj[i] = _propertyValue;
}
final Map<String, Object> props = new HashMap<String, Object>();
props.put("bigArray", bigObj);
long startMillis = System.currentTimeMillis();
boolean success = database.runInTransaction(new TransactionalTask() {
publicboolean run() {
for (int i = 0; i < numberOfDocuments; i++) {
//create a document
try {
Document document = database.createDocument();
document.putProperties(props);
} catch (Throwable t) {
Log.v("PerformanceStats",TAG+", Document create failed", t);
return true;
}
}
return true;
}
});
double executionTime = Long.valueOf(System.currentTimeMillis()-startMillis);
//Log.v("PerformanceStats",TAG+","+executionTime+","+numberOfDocuments+","+sizeOfDocuments);
return executionTime;
}
}