119120121122123124125126127128129
try{ Query q = qparser.parse(query); breq.setQuery(q); } catch(Exception e){ throw new ParseException(e.getMessage()); } } breq.setOffset(req.getOffset()); breq.setCount(req.getCount());
359360361362363364365366
BrowseRequestBPO.Request protoReq = protoReqBuilder.build(); try{ return convert(protoReq,qparser); } catch(Exception e){ throw new ParseException(e.getMessage()); } }
4445464748495051
ObjectInputStream oin = new ObjectInputStream(bin); return oin.readObject(); } catch(Exception e){ logger.error(e.getMessage(),e); throw new ParseException(e.getMessage()); } }
6061626364656667
byte[] data = bout.toByteArray(); return ByteString.copyFrom(data); } catch(Exception e){ logger.error(e.getMessage(),e); throw new ParseException(e.getMessage()); } }
7778798081828384
try{ return serializeOut(data); } catch(Exception e){ logger.error(e.getMessage(),e); throw new ParseException(e.getMessage()); } }
949596979899100101
111112113114115116117118
128129130131132133134135
145146147148149150151152
162163164165166167168169
try{ return (int[])serializeIn(byteString); } catch(Exception e){ logger.error(e.getMessage(),e); throw new ParseException(e.getMessage()); } }