]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.server/src/org/simantics/db/server/protocol/OpenClientSessionFunction.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.server / src / org / simantics / db / server / protocol / OpenClientSessionFunction.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
16 public class OpenClientSessionFunction extends AbstractFunction {
17     public int sessionId = -1;
18     public boolean bigEndian = false;
19     public long headChangeSetId = 0;
20     public OpenClientSessionFunction() {
21         super(MessageNumber.OpenClientSessionRequest, MessageNumber.OpenClientSessionResponse);
22     }
23     public OpenClientSessionFunction(int sessionId) {
24         super(MessageNumber.OpenClientSessionRequest, MessageNumber.OpenClientSessionResponse);
25         this.sessionId = sessionId;
26     }
27     @Override
28     public DataBuffer serialize(ByteOrder byteOrder) {
29         buffer.clear();
30         buffer.order(byteOrder);
31         buffer.put(sessionId);
32         buffer.mark();
33         return buffer;
34     }
35     @Override
36     public void deserialize(int receivedNumber_, DataBuffer dataBuffer) {
37         receivedNumber = receivedNumber_;
38         if (notRightDataForUs())
39             return;
40         sessionId = dataBuffer.get(sessionId);
41         bigEndian = dataBuffer.get(bigEndian);
42         headChangeSetId = dataBuffer.get(headChangeSetId);
43         gotResponse();
44     }
45 }