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/*www.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.Document;
import com.couchbase.lite.Emitter;
import com.couchbase.lite.LitePerfTestCase;
import com.couchbase.lite.LiteTestCase;
import com.couchbase.lite.Mapper;
import com.couchbase.lite.Query;
import com.couchbase.lite.Query.AllDocsMode;
import com.couchbase.lite.QueryEnumerator;
import com.couchbase.lite.QueryRow;
import com.couchbase.lite.Reducer;
import com.couchbase.lite.Status;
import com.couchbase.lite.TransactionalTask;
import com.couchbase.lite.View;
import com.couchbase.lite.internal.Body;
import com.couchbase.lite.internal.RevisionInternal;
import com.couchbase.lite.util.Log;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
//This test case is similar to Test13_QueryView, But it measures the time for create docs, define view, and do query
// This is to compare with Android's test case of similar name
publicclass Test29_AllDocQuery extends LitePerfTestCase {
publicstaticfinal String TAG = "Test29_AllDocQuery.java";
privatestaticfinal String _propertyValue = "1";
publicdouble runOne(finalint numberOfDocuments, finalint sizeOfDocuments) throws CouchbaseLiteException {
final StringBuffer bigObj = new StringBuffer(sizeOfDocuments);
for (int i = 0; i < sizeOfDocuments; i++) {
bigObj.append(_propertyValue);
}
boolean success = database.runInTransaction(new TransactionalTask() {
publicboolean run() {
for (int i = 0; i < numberOfDocuments; i++) {
String name = String.format("%s",bigObj);
boolean vacant = ((i + 2) % 2 == 0) ? true : false;
Map<String,Object> props = new HashMap<String,Object>();
props.put("name",name);
props.put("apt",i);
props.put("phone",408100000 + i);
props.put("vacant",vacant);
Document doc = database.createDocument();
try {
doc.putProperties(props);
}
catch(CouchbaseLiteException cblex)
{
Log.v("PerformanceStats",TAG+", Failed to create doc "+props,cblex);
return false;
}
}
return true;
}
});
//Start measurement, including create docs, define view, and do query
long startMillis = System.currentTimeMillis();
Query query = database.createAllDocumentsQuery();
query.setAllDocsMode(AllDocsMode.INCLUDE_DELETED);
QueryEnumerator rowEnum = query.run();
Object key;
Object value;
while (rowEnum.hasNext()) {
QueryRow row = rowEnum.next();
key = (String)row.getKey();
value = row.getValue();
}
double executionTime = Long.valueOf(System.currentTimeMillis()-startMillis);
Log.v("PerformanceStats",TAG+","+executionTime+","+numberOfDocuments+","+sizeOfDocuments);
return executionTime;
}
}