U8SDK——U8Server订单号压缩
最近因为有客户游戏是网游, 但是游戏类型是捕鱼和棋牌,在一些渠道平台审核的时候, 会被强制作为单机类型, 同时需要接入对方的单机SDK。 这两天,在接百度单机SDK的时候, 其中有一个地方有点坑。 使用u8sdk的同学应该知道, U8SDK调用渠道支付接口之前会去U8Server下单, 下单之后U8Server生成一个long类型的订单号(19位),然后这个订单号会放到渠道支付接口的回传参数中, 在渠道平台支付回调通知U8Server的时候, U8Server再用这里的回传参数(u8自己的订单号)去数据库中查找下单时生成的订单。
但是百度单机这里,要求这个回传参数最大长度是11位,那么就和U8Server生成的19位long类型的订单号有冲突了。这里有两种方案, 一个是单独为百度这个渠道生成一个11位的订单号, 下单的时候传给客户端, 同时保存在订单表中的渠道订单号字段中。另一种方案是想办法将U8Server生成的19位订单号压缩成不超过11位,然后回调通知到U8Server的时候, 再反过来解析成19位订单号。
这里优先考虑第二种方案, 因为第二种方案,通过算法解决,处理起来简单, 少一步更新数据库的操作。 这里优先想到的就是进制转换。将19的纯数字订单号,转换为11位的字符。在测试了几种进制转换之后, 发现达到62进制之后, 生成的字符串不会超过11位。
所以, 这里算法就简单了, 下单的时候, 将u8server生成的订单号进行62进制转换(这里为了以防万一,我们采用70进制, 让生成的字符串更短), 然后支付回调到u8server的时候, 再将70进制的字符串转换为10进制的long类型的订单号。算法代码如下:
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 |
package com.u8.server.sdk.baidusingle.utils; public class U8OrderIDHexUtils { private static final long RADIX = 70L; /** * 将long类型的订单号生成不超过11位的字符串 * @param ten * @return */ public static String encode(long ten){ long divVal; long resVal; String hex = ""; do { divVal = ten / RADIX; resVal = ten % RADIX; hex = encodeSingle((int) resVal) + hex; ten = divVal; }while (ten >= RADIX); if(ten != 0){ hex = encodeSingle((int) ten) + hex; } return hex; } /** * 将11位字符串形式的订单号还原成纯数字的订单号 * @param hex * @return */ public static long decode(String hex){ if(hex == null || hex.length() == 0) return 0; long t = 0L; for(int i=0; i<hex.length(); i++){ char c = hex.charAt(i); long ten = decodeSingle(c); t = ten * (long)Math.pow(RADIX, hex.length()-i-1) + t; } return t; } private static String encodeSingle(int ten) { switch (ten) { case 0: return "0"; case 1: return "1"; case 2: return "2"; case 3: return "3"; case 4: return "4"; case 5: return "5"; case 6: return "6"; case 7: return "7"; case 8: return "8"; case 9: return "9"; case 10: return "a"; case 11: return "b"; case 12: return "c"; case 13: return "d"; case 14: return "e"; case 15: return "f"; case 16: return "g"; case 17: return "h"; case 18: return "i"; case 19: return "j"; case 20: return "k"; case 21: return "l"; case 22: return "m"; case 23: return "n"; case 24: return "o"; case 25: return "p"; case 26: return "q"; case 27: return "r"; case 28: return "s"; case 29: return "t"; case 30: return "u"; case 31: return "v"; case 32: return "w"; case 33: return "x"; case 34: return "y"; case 35: return "z"; case 36: return "A"; case 37: return "B"; case 38: return "C"; case 39: return "D"; case 40: return "E"; case 41: return "F"; case 42: return "G"; case 43: return "H"; case 44: return "I"; case 45: return "J"; case 46: return "K"; case 47: return "L"; case 48: return "M"; case 49: return "N"; case 50: return "O"; case 51: return "P"; case 52: return "Q"; case 53: return "R"; case 54: return "S"; case 55: return "T"; case 56: return "U"; case 57: return "V"; case 58: return "W"; case 59: return "X"; case 60: return "Y"; case 61: return "Z"; case 62: return "*"; case 63: return "$"; case 64: return "^"; case 65: return "@"; case 66: return "="; case 67: return "+"; case 68: return "%"; case 69: return "!"; default: return ""; } } private static int decodeSingle(char c) { switch (c) { case '0':return 0; case '1':return 1; case '2':return 2; case '3':return 3; case '4':return 4; case '5':return 5; case '6':return 6; case '7':return 7; case '8':return 8; case '9':return 9; case 'a':return 10; case 'b':return 11; case 'c':return 12; case 'd':return 13; case 'e':return 14; case 'f':return 15; case 'g':return 16; case 'h':return 17; case 'i':return 18; case 'j':return 19; case 'k':return 20; case 'l':return 21; case 'm':return 22; case 'n':return 23; case 'o':return 24; case 'p':return 25; case 'q':return 26; case 'r':return 27; case 's':return 28; case 't':return 29; case 'u':return 30; case 'v':return 31; case 'w':return 32; case 'x':return 33; case 'y':return 34; case 'z':return 35; case 'A': return 36; case 'B': return 37; case 'C': return 38; case 'D': return 39; case 'E': return 40; case 'F': return 41; case 'G': return 42; case 'H': return 43; case 'I': return 44; case 'J': return 45; case 'K': return 46; case 'L': return 47; case 'M': return 48; case 'N': return 49; case 'O': return 50; case 'P': return 51; case 'Q': return 52; case 'R': return 53; case 'S': return 54; case 'T': return 55; case 'U': return 56; case 'V': return 57; case 'W': return 58; case 'X': return 59; case 'Y': return 60; case 'Z': return 61; case '*': return 62; case '$': return 63; case '^': return 64; case '@': return 65; case '=': return 66; case '+': return 67; case '%': return 68; case '!': return 69; default: return 0; } } } |
技术大大在做这个时, 还发生了一个小插曲, 之前encode方法里面, 他除法是这么写的:
1 2 3 |
divVal = (long)Math.floor(ten / 70d); |
然后encode和decode始终对不起来,每次都是最后几位不同。 后来想到可能是精度或者写法问题。 其实很简单,这里直接除即可:
1 2 3 |
divVal = ten / 70L; |
对于long类型来说, 同样的ten值, 这两种计算出来的结果是不同的, 上面那种计算出来的结果有误差。
本文出自 U8SDK技术博客,转载时请注明出处及相应链接。
本文永久链接: http://www.uustory.com/?p=2187