use of com.google.gson.Gson in project elastic-job by dangdangdotcom.
the class GsonFactoryTest method assertRegisterTypeAdapter.
@Test
public void assertRegisterTypeAdapter() {
Gson beforeRegisterGson = GsonFactory.getGson();
GsonFactory.registerTypeAdapter(GsonFactoryTest.class, new TypeAdapter() {
@Override
public Object read(final JsonReader in) throws IOException {
return null;
}
@Override
public void write(final JsonWriter out, final Object value) throws IOException {
out.jsonValue("test");
}
});
assertThat(beforeRegisterGson.toJson(new GsonFactoryTest()), is("{}"));
assertThat(GsonFactory.getGson().toJson(new GsonFactoryTest()), is("test"));
}
use of com.google.gson.Gson in project MultiType by drakeet.
the class TextItem method init.
@Override
public void init(@NonNull byte[] data) {
String json = new String(data);
this.text = new Gson().fromJson(json, TextItem.class).text;
}
use of com.google.gson.Gson in project cw-omnibus by commonsguy.
the class PresoRoster method load.
void load(Context ctxt) {
Gson gson = new Gson();
AssetManager assets = ctxt.getAssets();
for (String presoDir : PRESO_ASSET_DIRS) {
PresoContents c = loadPreso(gson, assets, presoDir);
if (c != null) {
c.id = presos.size();
presos.add(c);
}
}
}
use of com.google.gson.Gson in project sharding-jdbc by dangdangdotcom.
the class RdbTransactionLogStorage method add.
@Override
public void add(final TransactionLog transactionLog) {
String sql = "INSERT INTO `transaction_log` (`id`, `transaction_type`, `data_source`, `sql`, `parameters`, `creation_time`) VALUES (?, ?, ?, ?, ?, ?);";
try (Connection conn = dataSource.getConnection();
PreparedStatement preparedStatement = conn.prepareStatement(sql)) {
preparedStatement.setString(1, transactionLog.getId());
preparedStatement.setString(2, SoftTransactionType.BestEffortsDelivery.name());
preparedStatement.setString(3, transactionLog.getDataSource());
preparedStatement.setString(4, transactionLog.getSql());
preparedStatement.setString(5, new Gson().toJson(transactionLog.getParameters()));
preparedStatement.setLong(6, transactionLog.getCreationTime());
preparedStatement.executeUpdate();
} catch (final SQLException ex) {
throw new TransactionLogStorageException(ex);
}
}
use of com.google.gson.Gson in project sharding-jdbc by dangdangdotcom.
the class RdbTransactionLogStorage method findEligibleTransactionLogs.
@Override
public List<TransactionLog> findEligibleTransactionLogs(final int size, final int maxDeliveryTryTimes, final long maxDeliveryTryDelayMillis) {
List<TransactionLog> result = new ArrayList<>(size);
String sql = "SELECT `id`, `transaction_type`, `data_source`, `sql`, `parameters`, `creation_time`, `async_delivery_try_times` " + "FROM `transaction_log` WHERE `async_delivery_try_times`<? AND `transaction_type`=? AND `creation_time`<? LIMIT ?;";
try (Connection conn = dataSource.getConnection()) {
try (PreparedStatement preparedStatement = conn.prepareStatement(sql)) {
preparedStatement.setInt(1, maxDeliveryTryTimes);
preparedStatement.setString(2, SoftTransactionType.BestEffortsDelivery.name());
preparedStatement.setLong(3, System.currentTimeMillis() - maxDeliveryTryDelayMillis);
preparedStatement.setInt(4, size);
try (ResultSet rs = preparedStatement.executeQuery()) {
while (rs.next()) {
Gson gson = new Gson();
//TODO 对于批量执行的参数需要解析成两层列表
List<Object> parameters = gson.fromJson(rs.getString(5), new TypeToken<List<Object>>() {
}.getType());
result.add(new TransactionLog(rs.getString(1), "", SoftTransactionType.valueOf(rs.getString(2)), rs.getString(3), rs.getString(4), parameters, rs.getLong(6), rs.getInt(7)));
}
}
}
} catch (final SQLException ex) {
throw new TransactionLogStorageException(ex);
}
return result;
}
Aggregations