/astyanax-cql/src/main/java/com/netflix/astyanax/cql/CqlOperationResultImpl.java

http://github.com/Netflix/astyanax · Java · 108 lines · 65 code · 17 blank · 26 comment · 7 complexity · 4518cf78a3b1366c4e0a4f568cb13931 MD5 · raw file

  1. /**
  2. * Copyright 2013 Netflix, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.netflix.astyanax.cql;
  17. import java.net.InetAddress;
  18. import java.util.concurrent.TimeUnit;
  19. import com.datastax.driver.core.ExecutionInfo;
  20. import com.datastax.driver.core.QueryTrace;
  21. import com.datastax.driver.core.ResultSet;
  22. import com.netflix.astyanax.connectionpool.Host;
  23. import com.netflix.astyanax.connectionpool.OperationResult;
  24. /**
  25. * Simple impl of {@link OperationResult} that tracks some basic info for every operation execution, such as
  26. * 1. The host that was used for the operation
  27. * 2. The operation attempt count
  28. * 3. The encapsulated result
  29. * 4. The overall latency for the operation.
  30. *
  31. * @author poberai
  32. *
  33. * @param <R>
  34. */
  35. public class CqlOperationResultImpl<R> implements OperationResult<R> {
  36. private Host host;
  37. private R result;
  38. private int attemptCount = 0;
  39. private long durationMicros = 0L;
  40. public CqlOperationResultImpl(ResultSet rs, R result) {
  41. this.host = parseHostInfo(rs);
  42. this.result = result;
  43. this.durationMicros = parseDuration(rs);
  44. }
  45. private Host parseHostInfo(ResultSet rs) {
  46. if (rs == null) {
  47. return null;
  48. }
  49. com.datastax.driver.core.Host fromHost = rs.getExecutionInfo().getQueriedHost();
  50. InetAddress add = fromHost.getAddress();
  51. Host toHost = new Host(add.getHostAddress(), -1);
  52. toHost.setRack(fromHost.getRack());
  53. return toHost;
  54. }
  55. private long parseDuration(ResultSet rs) {
  56. if (rs != null) {
  57. ExecutionInfo info = rs.getExecutionInfo();
  58. if (info !=null) {
  59. QueryTrace qt = info.getQueryTrace();
  60. if (qt != null) {
  61. return qt.getDurationMicros();
  62. }
  63. }
  64. }
  65. return 0L;
  66. }
  67. @Override
  68. public Host getHost() {
  69. return host;
  70. }
  71. @Override
  72. public R getResult() {
  73. return result;
  74. }
  75. @Override
  76. public long getLatency() {
  77. return durationMicros;
  78. }
  79. @Override
  80. public long getLatency(TimeUnit units) {
  81. return units.convert(durationMicros, TimeUnit.MICROSECONDS);
  82. }
  83. @Override
  84. public int getAttemptsCount() {
  85. return attemptCount;
  86. }
  87. @Override
  88. public void setAttemptsCount(int count) {
  89. attemptCount = count;
  90. }
  91. }