Here you can find the source of getWindowFlooredBinaryTime(TimeUnit unit, long timestamp, int windowSizeInSeconds)
Parameter | Description |
---|---|
unit | a parameter |
timestamp | a parameter |
windowSizeInBinarySeconds | (must be a power of 2) |
public static int getWindowFlooredBinaryTime(TimeUnit unit, long timestamp, int windowSizeInSeconds)
//package com.java2s; /**// w w w. jav a 2 s .c o m * Copyright 2016 Ambud Sharma * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.util.concurrent.TimeUnit; public class Main { private static final int MAX_BITS_TO_SHIFT = 63; private static final IllegalArgumentException ARGUMENT_EXCEPTION = new IllegalArgumentException(); /** * @param unit * @param timestamp * @param windowSizeInBinarySeconds * (must be a power of 2) * @return */ public static int getWindowFlooredBinaryTime(TimeUnit unit, long timestamp, int windowSizeInSeconds) { timestamp = timeToNanoSeconds(unit, timestamp); System.err.println("shift:" + (MAX_BITS_TO_SHIFT - Integer.numberOfLeadingZeros(windowSizeInSeconds))); int ts = (int) (timestamp >> (MAX_BITS_TO_SHIFT - Integer.numberOfLeadingZeros(windowSizeInSeconds))); return ts; } /** * @param unit * @param timeInSeconds * @return */ public static long timeToNanoSeconds(TimeUnit unit, long time) { long ts; switch (unit) { case NANOSECONDS: ts = time; break; case MICROSECONDS: ts = ((long) time * (1000)); break; case MILLISECONDS: ts = (((long) time) * 1000 * 1000); break; case SECONDS: ts = (((long) time) * (1000 * 1000 * 1000)); break; default: throw ARGUMENT_EXCEPTION; } return ts; } }