rb.java 9.74 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
import com.google.common.base.Preconditions;
import java.io.IOException;
import java.io.Reader;

public final class rb
  extends Reader
{
  private CharSequence a;
  private int b;
  private int c;
  
  public rb(CharSequence paramCharSequence)
  {
    this.a = ((CharSequence)Preconditions.checkNotNull(paramCharSequence));
  }
  
  private void a()
    throws IOException
  {
    if (this.a == null) {
      throw new IOException("reader closed");
    }
  }
  
  private boolean b()
  {
    return c() > 0;
  }
  
  private int c()
  {
    return this.a.length() - this.b;
  }
  
  public final void close()
    throws IOException
  {
    try
    {
      this.a = null;
      return;
    }
    finally
    {
      localObject = finally;
      throw ((Throwable)localObject);
    }
  }
  
  /* Error */
  public final void mark(int paramInt)
    throws IOException
  {
    // Byte code:
    //   0: iconst_1
    //   1: istore_2
    //   2: aload_0
    //   3: monitorenter
    //   4: iload_1
    //   5: iflt +35 -> 40
    //   8: iload_2
    //   9: ldc 47
    //   11: iconst_1
    //   12: anewarray 49	java/lang/Object
    //   15: dup
    //   16: iconst_0
    //   17: iload_1
    //   18: invokestatic 55	java/lang/Integer:valueOf	(I)Ljava/lang/Integer;
    //   21: aastore
    //   22: invokestatic 59	com/google/common/base/Preconditions:checkArgument	(ZLjava/lang/String;[Ljava/lang/Object;)V
    //   25: aload_0
    //   26: invokespecial 61	rb:a	()V
    //   29: aload_0
    //   30: aload_0
    //   31: getfield 42	rb:b	I
    //   34: putfield 63	rb:c	I
    //   37: aload_0
    //   38: monitorexit
    //   39: return
    //   40: iconst_0
    //   41: istore_2
    //   42: goto -34 -> 8
    //   45: astore_3
    //   46: aload_0
    //   47: monitorexit
    //   48: aload_3
    //   49: athrow
    // Local variable table:
    //   start	length	slot	name	signature
    //   0	50	0	this	rb
    //   0	50	1	paramInt	int
    //   1	41	2	bool	boolean
    //   45	4	3	localObject	Object
    // Exception table:
    //   from	to	target	type
    //   8	37	45	finally
  }
  
  public final boolean markSupported()
  {
    return true;
  }
  
  /* Error */
  public final int read()
    throws IOException
  {
    // Byte code:
    //   0: aload_0
    //   1: monitorenter
    //   2: aload_0
    //   3: invokespecial 61	rb:a	()V
    //   6: aload_0
    //   7: invokespecial 67	rb:b	()Z
    //   10: ifeq +32 -> 42
    //   13: aload_0
    //   14: getfield 24	rb:a	Ljava/lang/CharSequence;
    //   17: astore_2
    //   18: aload_0
    //   19: getfield 42	rb:b	I
    //   22: istore_1
    //   23: aload_0
    //   24: iload_1
    //   25: iconst_1
    //   26: iadd
    //   27: putfield 42	rb:b	I
    //   30: aload_2
    //   31: iload_1
    //   32: invokeinterface 71 2 0
    //   37: istore_1
    //   38: aload_0
    //   39: monitorexit
    //   40: iload_1
    //   41: ireturn
    //   42: iconst_m1
    //   43: istore_1
    //   44: goto -6 -> 38
    //   47: astore_2
    //   48: aload_0
    //   49: monitorexit
    //   50: aload_2
    //   51: athrow
    // Local variable table:
    //   start	length	slot	name	signature
    //   0	52	0	this	rb
    //   22	22	1	i	int
    //   17	14	2	localCharSequence	CharSequence
    //   47	4	2	localObject	Object
    // Exception table:
    //   from	to	target	type
    //   2	38	47	finally
  }
  
  /* Error */
  public final int read(java.nio.CharBuffer paramCharBuffer)
    throws IOException
  {
    // Byte code:
    //   0: aload_0
    //   1: monitorenter
    //   2: aload_1
    //   3: invokestatic 20	com/google/common/base/Preconditions:checkNotNull	(Ljava/lang/Object;)Ljava/lang/Object;
    //   6: pop
    //   7: aload_0
    //   8: invokespecial 61	rb:a	()V
    //   11: aload_0
    //   12: invokespecial 67	rb:b	()Z
    //   15: istore 5
    //   17: iload 5
    //   19: ifne +9 -> 28
    //   22: iconst_m1
    //   23: istore_3
    //   24: aload_0
    //   25: monitorexit
    //   26: iload_3
    //   27: ireturn
    //   28: aload_1
    //   29: invokevirtual 77	java/nio/CharBuffer:remaining	()I
    //   32: aload_0
    //   33: invokespecial 37	rb:c	()I
    //   36: invokestatic 83	java/lang/Math:min	(II)I
    //   39: istore 4
    //   41: iconst_0
    //   42: istore_2
    //   43: iload 4
    //   45: istore_3
    //   46: iload_2
    //   47: iload 4
    //   49: if_icmpge -25 -> 24
    //   52: aload_0
    //   53: getfield 24	rb:a	Ljava/lang/CharSequence;
    //   56: astore 6
    //   58: aload_0
    //   59: getfield 42	rb:b	I
    //   62: istore_3
    //   63: aload_0
    //   64: iload_3
    //   65: iconst_1
    //   66: iadd
    //   67: putfield 42	rb:b	I
    //   70: aload_1
    //   71: aload 6
    //   73: iload_3
    //   74: invokeinterface 71 2 0
    //   79: invokevirtual 87	java/nio/CharBuffer:put	(C)Ljava/nio/CharBuffer;
    //   82: pop
    //   83: iload_2
    //   84: iconst_1
    //   85: iadd
    //   86: istore_2
    //   87: goto -44 -> 43
    //   90: astore_1
    //   91: aload_0
    //   92: monitorexit
    //   93: aload_1
    //   94: athrow
    // Local variable table:
    //   start	length	slot	name	signature
    //   0	95	0	this	rb
    //   0	95	1	paramCharBuffer	java.nio.CharBuffer
    //   42	45	2	i	int
    //   23	51	3	j	int
    //   39	11	4	k	int
    //   15	3	5	bool	boolean
    //   56	16	6	localCharSequence	CharSequence
    // Exception table:
    //   from	to	target	type
    //   2	17	90	finally
    //   28	41	90	finally
    //   52	83	90	finally
  }
  
  /* Error */
  public final int read(char[] paramArrayOfChar, int paramInt1, int paramInt2)
    throws IOException
  {
    // Byte code:
    //   0: aload_0
    //   1: monitorenter
    //   2: iload_2
    //   3: iload_2
    //   4: iload_3
    //   5: iadd
    //   6: aload_1
    //   7: arraylength
    //   8: invokestatic 92	com/google/common/base/Preconditions:checkPositionIndexes	(III)V
    //   11: aload_0
    //   12: invokespecial 61	rb:a	()V
    //   15: aload_0
    //   16: invokespecial 67	rb:b	()Z
    //   19: istore 6
    //   21: iload 6
    //   23: ifne +11 -> 34
    //   26: iconst_m1
    //   27: istore 4
    //   29: aload_0
    //   30: monitorexit
    //   31: iload 4
    //   33: ireturn
    //   34: iload_3
    //   35: aload_0
    //   36: invokespecial 37	rb:c	()I
    //   39: invokestatic 83	java/lang/Math:min	(II)I
    //   42: istore 5
    //   44: iconst_0
    //   45: istore_3
    //   46: iload 5
    //   48: istore 4
    //   50: iload_3
    //   51: iload 5
    //   53: if_icmpge -24 -> 29
    //   56: aload_0
    //   57: getfield 24	rb:a	Ljava/lang/CharSequence;
    //   60: astore 7
    //   62: aload_0
    //   63: getfield 42	rb:b	I
    //   66: istore 4
    //   68: aload_0
    //   69: iload 4
    //   71: iconst_1
    //   72: iadd
    //   73: putfield 42	rb:b	I
    //   76: aload_1
    //   77: iload_2
    //   78: iload_3
    //   79: iadd
    //   80: aload 7
    //   82: iload 4
    //   84: invokeinterface 71 2 0
    //   89: castore
    //   90: iload_3
    //   91: iconst_1
    //   92: iadd
    //   93: istore_3
    //   94: goto -48 -> 46
    //   97: astore_1
    //   98: aload_0
    //   99: monitorexit
    //   100: aload_1
    //   101: athrow
    // Local variable table:
    //   start	length	slot	name	signature
    //   0	102	0	this	rb
    //   0	102	1	paramArrayOfChar	char[]
    //   0	102	2	paramInt1	int
    //   0	102	3	paramInt2	int
    //   27	56	4	i	int
    //   42	12	5	j	int
    //   19	3	6	bool	boolean
    //   60	21	7	localCharSequence	CharSequence
    // Exception table:
    //   from	to	target	type
    //   2	21	97	finally
    //   34	44	97	finally
    //   56	90	97	finally
  }
  
  public final boolean ready()
    throws IOException
  {
    try
    {
      a();
      return true;
    }
    finally
    {
      localObject = finally;
      throw ((Throwable)localObject);
    }
  }
  
  public final void reset()
    throws IOException
  {
    try
    {
      a();
      this.b = this.c;
      return;
    }
    finally
    {
      localObject = finally;
      throw ((Throwable)localObject);
    }
  }
  
  /* Error */
  public final long skip(long paramLong)
    throws IOException
  {
    // Byte code:
    //   0: iconst_1
    //   1: istore 4
    //   3: aload_0
    //   4: monitorenter
    //   5: lload_1
    //   6: lconst_0
    //   7: lcmp
    //   8: iflt +53 -> 61
    //   11: iload 4
    //   13: ldc 98
    //   15: iconst_1
    //   16: anewarray 49	java/lang/Object
    //   19: dup
    //   20: iconst_0
    //   21: lload_1
    //   22: invokestatic 103	java/lang/Long:valueOf	(J)Ljava/lang/Long;
    //   25: aastore
    //   26: invokestatic 59	com/google/common/base/Preconditions:checkArgument	(ZLjava/lang/String;[Ljava/lang/Object;)V
    //   29: aload_0
    //   30: invokespecial 61	rb:a	()V
    //   33: aload_0
    //   34: invokespecial 37	rb:c	()I
    //   37: i2l
    //   38: lload_1
    //   39: invokestatic 106	java/lang/Math:min	(JJ)J
    //   42: l2i
    //   43: istore_3
    //   44: aload_0
    //   45: aload_0
    //   46: getfield 42	rb:b	I
    //   49: iload_3
    //   50: iadd
    //   51: putfield 42	rb:b	I
    //   54: iload_3
    //   55: i2l
    //   56: lstore_1
    //   57: aload_0
    //   58: monitorexit
    //   59: lload_1
    //   60: lreturn
    //   61: iconst_0
    //   62: istore 4
    //   64: goto -53 -> 11
    //   67: astore 5
    //   69: aload_0
    //   70: monitorexit
    //   71: aload 5
    //   73: athrow
    // Local variable table:
    //   start	length	slot	name	signature
    //   0	74	0	this	rb
    //   0	74	1	paramLong	long
    //   43	12	3	i	int
    //   1	62	4	bool	boolean
    //   67	5	5	localObject	Object
    // Exception table:
    //   from	to	target	type
    //   11	54	67	finally
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/rb.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */