Search in sources :

Example 1 with SearchItem

use of com.netflix.exhibitor.core.index.SearchItem in project exhibitor by soabase.

the class IndexResource method getResult.

@Path("get/{index-name}/{doc-id}")
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getResult(@PathParam("index-name") String indexName, @PathParam("doc-id") int docId) throws Exception {
    LogSearch logSearch = getLogSearch(indexName);
    if (logSearch == null) {
        return Response.status(Response.Status.NOT_FOUND).build();
    }
    SearchResult result;
    try {
        DateFormat dateFormatter = new SimpleDateFormat(DATE_FORMAT_STR);
        SearchItem item = logSearch.toResult(docId);
        if (item == null) {
            return Response.status(Response.Status.NOT_FOUND).build();
        }
        byte[] bytes = logSearch.toData(docId);
        if (bytes == null) {
            bytes = new byte[0];
        }
        result = new SearchResult(docId, item.getType(), item.getPath(), dateFormatter.format(item.getDate()), new String(bytes, "UTF-8"), ExplorerResource.bytesToString(bytes));
    } finally {
        context.getExhibitor().getIndexCache().releaseLogSearch(logSearch.getFile());
    }
    return Response.ok(result).build();
}
Also used : SimpleDateFormat(java.text.SimpleDateFormat) DateFormat(java.text.DateFormat) LogSearch(com.netflix.exhibitor.core.index.LogSearch) SearchResult(com.netflix.exhibitor.core.entities.SearchResult) SimpleDateFormat(java.text.SimpleDateFormat) SearchItem(com.netflix.exhibitor.core.index.SearchItem) Path(javax.ws.rs.Path) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Example 2 with SearchItem

use of com.netflix.exhibitor.core.index.SearchItem in project exhibitor by soabase.

the class IndexResource method getDataTableData.

@Path("dataTable/{index-name}/{search-handle}")
@GET
@Produces(MediaType.APPLICATION_JSON)
public String getDataTableData(@PathParam("index-name") String indexName, @PathParam("search-handle") String searchHandle, @QueryParam("iDisplayStart") int iDisplayStart, @QueryParam("iDisplayLength") int iDisplayLength, @QueryParam("sEcho") String sEcho) throws Exception {
    LogSearch logSearch = getLogSearch(indexName);
    if (logSearch == null) {
        return "{}";
    }
    ObjectNode node;
    try {
        CachedSearch cachedSearch = logSearch.getCachedSearch(searchHandle);
        DateFormat dateFormatter = new SimpleDateFormat(DATE_FORMAT_STR);
        ArrayNode dataTab = JsonNodeFactory.instance.arrayNode();
        for (int i = iDisplayStart; i < (iDisplayStart + iDisplayLength); ++i) {
            if (i < cachedSearch.getTotalHits()) {
                ObjectNode data = JsonNodeFactory.instance.objectNode();
                int docId = cachedSearch.getNthDocId(i);
                SearchItem item = logSearch.toResult(docId);
                data.put("DT_RowId", "index-query-result-" + docId);
                data.put("0", getTypeName(EntryTypes.getFromId(item.getType())));
                data.put("1", dateFormatter.format(item.getDate()));
                data.put("2", trimPath(item.getPath()));
                dataTab.add(data);
            }
        }
        node = JsonNodeFactory.instance.objectNode();
        node.put("sEcho", sEcho);
        node.put("iTotalRecords", logSearch.getDocQty());
        node.put("iTotalDisplayRecords", cachedSearch.getTotalHits());
        node.put("aaData", dataTab);
    } finally {
        context.getExhibitor().getIndexCache().releaseLogSearch(logSearch.getFile());
    }
    return node.toString();
}
Also used : ObjectNode(org.codehaus.jackson.node.ObjectNode) CachedSearch(com.netflix.exhibitor.core.index.CachedSearch) SimpleDateFormat(java.text.SimpleDateFormat) DateFormat(java.text.DateFormat) LogSearch(com.netflix.exhibitor.core.index.LogSearch) ArrayNode(org.codehaus.jackson.node.ArrayNode) SimpleDateFormat(java.text.SimpleDateFormat) SearchItem(com.netflix.exhibitor.core.index.SearchItem) Path(javax.ws.rs.Path) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Aggregations

LogSearch (com.netflix.exhibitor.core.index.LogSearch)2 SearchItem (com.netflix.exhibitor.core.index.SearchItem)2 DateFormat (java.text.DateFormat)2 SimpleDateFormat (java.text.SimpleDateFormat)2 GET (javax.ws.rs.GET)2 Path (javax.ws.rs.Path)2 Produces (javax.ws.rs.Produces)2 SearchResult (com.netflix.exhibitor.core.entities.SearchResult)1 CachedSearch (com.netflix.exhibitor.core.index.CachedSearch)1 ArrayNode (org.codehaus.jackson.node.ArrayNode)1 ObjectNode (org.codehaus.jackson.node.ObjectNode)1