]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.server/src/org/simantics/db/server/protocol/GetClusterNewFunction.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.server / src / org / simantics / db / server / protocol / GetClusterNewFunction.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.server.protocol;
13
14 import java.nio.ByteOrder;
15 import java.nio.ByteBuffer;
16
17 public class GetClusterNewFunction extends AbstractFunction {
18     public byte[] clusterUID = null;
19     public int inflateSize = 0;
20     public ByteBuffer deflated = null;
21     public GetClusterNewFunction() {
22         super(MessageNumber.GetClusterNewRequest, MessageNumber.GetClusterNewResponse);
23     }
24     public GetClusterNewFunction(byte[] clusterUID) {
25         super(MessageNumber.GetClusterNewRequest, MessageNumber.GetClusterNewResponse);
26         this.clusterUID = clusterUID;
27     }
28     @Override
29     public DataBuffer serialize(ByteOrder byteOrder) {
30         buffer.clear();
31         buffer.order(byteOrder);
32         buffer.put(clusterUID);
33         buffer.mark();
34         return buffer;
35     }
36     @Override
37     public void deserialize(int receivedNumber_, DataBuffer dataBuffer) {
38         receivedNumber = receivedNumber_;
39         if (notRightDataForUs())
40             return;
41         inflateSize = dataBuffer.get(inflateSize);
42         deflated = dataBuffer.get(deflated);
43         gotResponse();
44     }
45 }