/java/playground/Test2/src/server_RRPC.java

http://rpc-php-ruby-c-java.googlecode.com/ · Java · 699 lines · 547 code · 113 blank · 39 comment · 101 complexity · 0ec6356cd2a24de502b1a6fac966a52b MD5 · raw file

  1. /**
  2. * Created by IntelliJ IDEA.
  3. * User: Admin
  4. * Date: 02.12.11
  5. * Time: 14:12
  6. * To change this template use File | Settings | File Templates.
  7. */
  8. import java.io.*;
  9. import java.lang.reflect.Array;
  10. import java.net.InetAddress;
  11. import java.net.ServerSocket;
  12. import java.net.Socket;
  13. import java.util.Objects;
  14. import java.util.Random;
  15. public class server_RRPC{
  16. Integer server_port;
  17. public server_RRPC(Integer port){
  18. this.server_port = port;
  19. }
  20. public void start() throws IOException, InterruptedException {
  21. ServerSocket server;
  22. Socket client_sock;
  23. try{
  24. server = new ServerSocket(this.server_port);
  25. }catch (IOException e) {
  26. System.out.print("Couldn't listen to port ");
  27. System.out.println(server_port);
  28. return;
  29. }
  30. while (true){
  31. System.out.println("Waiting for client");
  32. try{
  33. client_sock = server.accept();
  34. } catch (IOException e) {
  35. System.out.println("Accept error");
  36. return;
  37. }
  38. System.out.println("Client connected");
  39. protocol_encoder pe = new protocol_encoder();
  40. Object[] data = pe.encode(client_sock.getInputStream());
  41. dubug_Object_printer dop = new dubug_Object_printer();
  42. System.out.println("RECIVED DATA:");
  43. dop.print(data);
  44. OutputStream out = client_sock.getOutputStream();
  45. Object[] res;
  46. res = function_calling(data);
  47. protocol_coder pc = new protocol_coder();
  48. ByteArrayOutputStream msg = pc.code(res);
  49. out.write(msg.toByteArray());
  50. out.flush();
  51. out.close();
  52. client_sock.close();
  53. /*System.out.println(count);
  54. for (int i = 0; i < count; i++){
  55. System.out.println(data[i].toString());
  56. }
  57. System.out.println("asdasd");
  58. */
  59. }
  60. }
  61. private Object[] function_calling(Object[] data){
  62. return data;
  63. }
  64. }
  65. class protocol_coder{
  66. ByteArrayOutputStream stream;
  67. DataOutputStream writer;
  68. public ByteArrayOutputStream code(Object ... argv) throws IOException {
  69. stream = new ByteArrayOutputStream();
  70. writer = new DataOutputStream(stream);
  71. writer.writeByte(((String)argv[0]).length()*2);
  72. writer.writeChars((String)argv[0]);
  73. int argc = argv.length;
  74. writer.writeByte(argc-1);
  75. for(int i = 1; i < argc; i++){
  76. Object a = argv[i];
  77. if (a instanceof Byte){
  78. //System.out.println("Byte");
  79. writer.writeByte((byte) 1);
  80. writer.writeByte(((Byte)argv[i]).byteValue());
  81. }
  82. if (a instanceof Boolean){
  83. //System.out.println("Boolean");
  84. writer.writeByte((byte) 2);
  85. if ((Boolean) argv[i]){
  86. writer.writeByte((byte) 1);
  87. }else{
  88. writer.writeByte((byte)0);
  89. }
  90. }
  91. if (a instanceof Short){
  92. //System.out.println("Short");
  93. writer.writeByte((byte) 3);
  94. writer.writeShort(((Short) argv[i]).shortValue());
  95. }
  96. if (a instanceof Integer){
  97. //System.out.println("Integer");
  98. writer.writeByte((byte) 5);
  99. writer.writeInt(((Integer) argv[i]).intValue());
  100. }
  101. //Long la = (long)10;
  102. if (a instanceof Long ){
  103. //System.out.println("Long");
  104. writer.writeByte((byte) 7);
  105. writer.writeLong(((Long)argv[i]).longValue());
  106. }
  107. if (a instanceof Float){
  108. //System.out.println("Float");
  109. writer.writeByte((byte) 9);
  110. writer.writeFloat( ((Float)argv[i]).floatValue());
  111. }
  112. if (a instanceof Double){
  113. //System.out.println("Double");
  114. writer.writeByte((byte) 10);
  115. writer.writeDouble( ((Double)argv[i]).doubleValue());
  116. }
  117. if (a instanceof String){
  118. //System.out.println("String");
  119. writer.writeByte((byte) 11);
  120. writer.writeByte((((String)argv[i]).length()*2));
  121. writer.writeChars(((String)argv[i]));
  122. }
  123. if (a.getClass().isArray()){
  124. //System.out.println("array");
  125. writer.writeByte((byte) 12);
  126. writer.writeByte(this.GetArrayDimension(a));
  127. byte type = this.GetType(a);
  128. writer.writeByte(type);
  129. this.arrayParse(a,type);
  130. }
  131. }
  132. return stream;
  133. }
  134. public ByteArrayOutputStream code(String function_name,Object ... argv) throws IOException {
  135. stream = new ByteArrayOutputStream();
  136. writer = new DataOutputStream(stream);
  137. writer.writeByte(function_name.length()*2);
  138. writer.writeChars(function_name);
  139. int argc = argv.length;
  140. writer.writeByte(argc);
  141. for(int i = 0; i < argc; i++){
  142. Object a = argv[i];
  143. if (a instanceof Byte){
  144. //System.out.println("Byte");
  145. writer.writeByte((byte) 1);
  146. writer.writeByte(((Byte)argv[i]).byteValue());
  147. }
  148. if (a instanceof Boolean){
  149. //System.out.println("Boolean");
  150. writer.writeByte((byte) 2);
  151. if ((Boolean) argv[i]){
  152. writer.writeByte((byte) 1);
  153. }else{
  154. writer.writeByte((byte)0);
  155. }
  156. }
  157. if (a instanceof Short){
  158. //System.out.println("Short");
  159. writer.writeByte((byte) 3);
  160. writer.writeShort(((Short) argv[i]).shortValue());
  161. }
  162. if (a instanceof Integer){
  163. //System.out.println("Integer");
  164. writer.writeByte((byte) 5);
  165. writer.writeInt(((Integer) argv[i]).intValue());
  166. }
  167. //Long la = (long)10;
  168. if (a instanceof Long ){
  169. //System.out.println("Long");
  170. writer.writeByte((byte) 7);
  171. writer.writeLong(((Long)argv[i]).longValue());
  172. }
  173. if (a instanceof Float){
  174. //System.out.println("Float");
  175. writer.writeByte((byte) 9);
  176. writer.writeFloat( ((Float)argv[i]).floatValue());
  177. }
  178. if (a instanceof Double){
  179. //System.out.println("Double");
  180. writer.writeByte((byte) 10);
  181. writer.writeDouble( ((Double)argv[i]).doubleValue());
  182. }
  183. if (a instanceof String){
  184. //System.out.println("String");
  185. writer.writeByte((byte) 11);
  186. writer.writeByte((((String)argv[i]).length()*2));
  187. writer.writeChars(((String)argv[i]));
  188. }
  189. if (a.getClass().isArray()){
  190. //System.out.println("array");
  191. writer.writeByte((byte) 12);
  192. writer.writeByte(this.GetArrayDimension(a));
  193. byte type = this.GetType(a);
  194. writer.writeByte(type);
  195. this.arrayParse(a,type);
  196. }
  197. }
  198. return stream;
  199. }
  200. private byte GetArrayDimension(Object a){
  201. byte size = 0;
  202. while (a.getClass().isArray()){
  203. size++;
  204. a = Array.get(a, 0);
  205. }
  206. return size;
  207. }
  208. private byte GetType(Object a){
  209. while (a.getClass().isArray()){
  210. a = Array.get(a,0);
  211. }
  212. if (a instanceof Byte){
  213. return 1;
  214. }
  215. if (a instanceof Boolean){
  216. return 2;
  217. }
  218. if (a instanceof Short){
  219. return 3;
  220. }
  221. if (a instanceof Integer){
  222. return 5;
  223. }
  224. //Long la = (long)10;
  225. if (a instanceof Long ){
  226. return 7;
  227. }
  228. if (a instanceof Float){
  229. return 9;
  230. }
  231. if (a instanceof Double){
  232. return 10;
  233. }
  234. if (a instanceof String){
  235. return 11;
  236. }
  237. return -1;
  238. }
  239. private void arrayParse(Object a, byte type) throws IOException{
  240. switch (type){
  241. case (1):
  242. this.arrayParseByte(a);
  243. break;
  244. case (2):
  245. this.arrayParseBool(a);
  246. break;
  247. case (3):
  248. this.arrayParseShort(a);
  249. break;
  250. case (5):
  251. this.arrayParseInt(a);
  252. break;
  253. case (7):
  254. this.arrayParseLong(a);
  255. break;
  256. case (9):
  257. this.arrayParseFloat(a);
  258. break;
  259. case (10):
  260. this.arrayParseDouble(a);
  261. break;
  262. case (11):
  263. this.arrayParseString(a);
  264. break;
  265. }
  266. }
  267. private void arrayParseByte(Object a) throws IOException {
  268. int length = Array.getLength(a);
  269. writer.writeByte(length);
  270. if (Array.get(a,0).getClass().isArray()){
  271. for (int i = 0; i < length; i++){
  272. arrayParseByte(Array.get(a,i));
  273. }
  274. }else{
  275. for (int i = 0; i < length; i++){
  276. writer.writeByte((Byte)Array.get(a,i));
  277. }
  278. }
  279. }
  280. private void arrayParseBool(Object a) throws IOException {
  281. int length = Array.getLength(a);
  282. writer.writeByte(length);
  283. if (Array.get(a,0).getClass().isArray()){
  284. for (int i = 0; i < length; i++){
  285. arrayParseBool(Array.get(a,i));
  286. }
  287. }else{
  288. for (int i = 0; i < length; i++){
  289. if ((Boolean)Array.get(a,i)){
  290. writer.writeByte(1);
  291. }else{
  292. writer.writeByte(0);
  293. }
  294. }
  295. }
  296. }
  297. private void arrayParseShort(Object a) throws IOException {
  298. int length = Array.getLength(a);
  299. writer.writeByte(length);
  300. if (Array.get(a,0).getClass().isArray()){
  301. for (int i = 0; i < length; i++){
  302. arrayParseShort(Array.get(a,i));
  303. }
  304. }else{
  305. for (int i = 0; i < length; i++){
  306. writer.writeShort((Short)Array.get(a,i));
  307. }
  308. }
  309. }
  310. private void arrayParseInt(Object a) throws IOException {
  311. int length = Array.getLength(a);
  312. writer.writeByte(length);
  313. if (Array.get(a,0).getClass().isArray()){
  314. for (int i = 0; i < length; i++){
  315. arrayParseInt(Array.get(a,i));
  316. }
  317. }else{
  318. for (int i = 0; i < length; i++){
  319. if (a.getClass().isArray()){
  320. writer.writeInt((Integer)Array.get(a,i));
  321. }
  322. }
  323. }
  324. }
  325. private void arrayParseLong(Object a) throws IOException {
  326. int length = Array.getLength(a);
  327. writer.writeByte(length);
  328. if (Array.get(a,0).getClass().isArray()){
  329. for (int i = 0; i < length; i++){
  330. arrayParseLong(Array.get(a,i));
  331. }
  332. }else{
  333. for (int i = 0; i < length; i++){
  334. writer.writeLong((Long)Array.get(a,i));
  335. }
  336. }
  337. }
  338. private void arrayParseFloat(Object a) throws IOException {
  339. int length = Array.getLength(a);
  340. writer.writeByte(length);
  341. if (Array.get(a,0).getClass().isArray()){
  342. for (int i = 0; i < length; i++){
  343. arrayParseFloat(Array.get(a,i));
  344. }
  345. }else{
  346. for (int i = 0; i < length; i++){
  347. writer.writeFloat((Float)Array.get(a,i));
  348. }
  349. }
  350. }
  351. private void arrayParseDouble(Object a) throws IOException {
  352. int length = Array.getLength(a);
  353. writer.writeByte(length);
  354. if (Array.get(a,0).getClass().isArray()){
  355. for (int i = 0; i < length; i++){
  356. arrayParseDouble(Array.get(a,i));
  357. }
  358. }else{
  359. for (int i = 0; i < length; i++){
  360. writer.writeDouble((Double)Array.get(a,i));
  361. }
  362. }
  363. }
  364. private void arrayParseString(Object a) throws IOException {
  365. int length = Array.getLength(a);
  366. writer.writeByte(length);
  367. if (Array.get(a,0).getClass().isArray()){
  368. for (int i = 0; i < length; i++){
  369. arrayParseString(Array.get(a,i));
  370. }
  371. }else{
  372. for (int i = 0; i < length; i++){
  373. String tmp = (String)Array.get(a,i);
  374. writer.writeByte(tmp.length()*2);
  375. writer.writeChars(tmp);
  376. }
  377. }
  378. }
  379. }
  380. class protocol_encoder{
  381. DataInputStream reader;
  382. public Object[] encode(InputStream stream) throws IOException{
  383. reader = new DataInputStream(stream);
  384. //byte[] msg = new byte[1024];
  385. //reader.readFully(msg);
  386. //System.out.println("bla");
  387. byte name_length = reader.readByte();
  388. byte tmp[] = new byte[name_length];
  389. reader.read(tmp,0,name_length);
  390. //reader.
  391. byte count = reader.readByte();
  392. Object data[] = new Object[count+1];
  393. data[0] = new String(tmp,0,name_length,"UTF-16BE");
  394. //System.out.print(data[0]);
  395. boolean errors = false;
  396. for (int i = 1; i < count+1 ;i++){
  397. byte flag = reader.readByte();
  398. if (flag == -1){
  399. return null;
  400. }
  401. switch (flag){
  402. case (1)://byte block
  403. data[i] = reader.readByte();
  404. break;
  405. case (2)://boolean block
  406. byte bool_value = reader.readByte();
  407. if (bool_value == 1){
  408. data[i] = true;
  409. }else{
  410. data[i] = false;
  411. }
  412. break;
  413. case (3)://short block
  414. data[i] = reader.readShort();
  415. break;
  416. case (5)://int block
  417. data[i] = reader.readInt();
  418. break;
  419. case (7)://Long block
  420. data[i] = reader.readLong();
  421. break;
  422. case (9)://float block
  423. data[i] = reader.readFloat();
  424. break;
  425. case (10)://double block
  426. data[i] = reader.readDouble();
  427. break;
  428. case (11):
  429. int length = reader.readByte();
  430. byte ntmp[] = new byte[length];
  431. reader.read(ntmp,0,length);
  432. data[i]=new String(ntmp,0,length,"UTF-16BE");
  433. break;
  434. case (12):
  435. data[i]=perse_to_array();
  436. break;
  437. default:
  438. return null;
  439. }
  440. }
  441. return data;
  442. }
  443. private Object perse_to_array() throws IOException{
  444. int dimention = (int)reader.readByte();
  445. byte type = reader.readByte();
  446. switch (type){
  447. case (1):
  448. return parse_to_array_byte(dimention);
  449. case (2):
  450. return parse_to_array_bool(dimention);
  451. case (3):
  452. return parse_to_array_short(dimention);
  453. case (5):
  454. return parse_to_array_int(dimention);
  455. case (7):
  456. return parse_to_array_long(dimention);
  457. case (9):
  458. return parse_to_array_float(dimention);
  459. case (10):
  460. return parse_to_array_double(dimention);
  461. case (11):
  462. return parse_to_array_string(dimention);
  463. }
  464. return null;
  465. }
  466. private Object parse_to_array_byte(int my_dimention) throws IOException{
  467. Byte length = reader.readByte();
  468. Object[] data = new Object[length];
  469. if (my_dimention == 1){
  470. for (int i = 0; i < length; i++){
  471. data[i] = reader.readByte();
  472. }
  473. }else{
  474. for (int i = 0; i < length; i++){
  475. data[i] = parse_to_array_byte(my_dimention-1);
  476. }
  477. }
  478. return data;
  479. }
  480. private Object parse_to_array_bool(int my_dimention)throws IOException{
  481. Byte length = reader.readByte();
  482. Object[] data = new Object[length];
  483. if (my_dimention == 1){
  484. for (int i = 0; i < length; i++){
  485. byte tmp = reader.readByte();
  486. if (tmp == 1){
  487. data[i] = true;
  488. }else{
  489. data[i]=false;
  490. }
  491. }
  492. }else{
  493. for (int i = 0; i < length; i++){
  494. data[i] = parse_to_array_bool(my_dimention-1);
  495. }
  496. }
  497. return data;
  498. }
  499. private Object parse_to_array_short(int my_dimention) throws IOException{
  500. Byte length = reader.readByte();
  501. Object[] data = new Object[length];
  502. if (my_dimention == 1){
  503. for (int i = 0; i < length; i++){
  504. data[i]=reader.readShort();
  505. }
  506. }else{
  507. for (int i = 0; i < length; i++){
  508. data[i] = parse_to_array_short(my_dimention-1);
  509. }
  510. }
  511. return data;
  512. }
  513. private Object parse_to_array_int(int my_dimention) throws IOException{
  514. Byte length = reader.readByte();
  515. Object[] data = new Object[length];
  516. if (my_dimention == 1){
  517. for (int i = 0; i < length; i++){
  518. data[i]=reader.readInt();
  519. }
  520. }else{
  521. for (int i = 0; i < length; i++){
  522. data[i] = parse_to_array_int(my_dimention-1);
  523. }
  524. }
  525. return data;
  526. }
  527. private Object parse_to_array_long(int my_dimention) throws IOException{
  528. Byte length = reader.readByte();
  529. Object[] data = new Object[length];
  530. if (my_dimention == 1){
  531. for (int i = 0; i < length; i++){
  532. data[i]=reader.readLong();
  533. }
  534. }else{
  535. for (int i = 0; i < length; i++){
  536. data[i] = parse_to_array_long(my_dimention-1);
  537. }
  538. }
  539. return data;
  540. }
  541. private Object parse_to_array_float(int my_dimention) throws IOException{
  542. Byte length = reader.readByte();
  543. Object[] data = new Object[length];
  544. if (my_dimention == 1){
  545. for (int i = 0; i < length; i++){
  546. data[i]=reader.readFloat();
  547. }
  548. }else{
  549. for (int i = 0; i < length; i++){
  550. data[i] = parse_to_array_float(my_dimention-1);
  551. }
  552. }
  553. return data;
  554. }
  555. private Object parse_to_array_double(int my_dimention) throws IOException{
  556. Byte length = reader.readByte();
  557. Object[] data = new Object[length];
  558. if (my_dimention == 1){
  559. for (int i = 0; i < length; i++){
  560. data[i]=reader.readDouble();
  561. }
  562. }else{
  563. for (int i = 0; i < length; i++){
  564. data[i] = parse_to_array_double(my_dimention-1);
  565. }
  566. }
  567. return data;
  568. }
  569. private Object parse_to_array_string(int my_dimention) throws IOException{
  570. Byte length = reader.readByte();
  571. Object[] data = new Object[length];
  572. if (my_dimention == 1){
  573. for (int i = 0; i < length; i++){
  574. int strlen = reader.readByte();
  575. byte ntmp[] = new byte[strlen];
  576. reader.read(ntmp,0,strlen);
  577. data[i]=new String(ntmp,0,strlen,"UTF-16BE");
  578. }
  579. }else{
  580. for (int i = 0; i < length; i++){
  581. data[i] = parse_to_array_string(my_dimention-1);
  582. }
  583. }
  584. return data;
  585. }
  586. }