blob: ad221537e518b35e746ed104ccdedfcb875ebd67 [file] [log] [blame]
/*
* Copyright 2000-2011 JetBrains s.r.o.
*
* 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.
*/
package com.intellij.cvsSupport2.connections.local;
import com.intellij.cvsSupport2.config.LocalSettings;
import com.intellij.cvsSupport2.connections.ConnectionOnProcess;
import com.intellij.cvsSupport2.errorHandling.ErrorRegistry;
import com.intellij.execution.configurations.GeneralCommandLine;
import org.netbeans.lib.cvsclient.connection.AuthenticationException;
import java.io.IOException;
/**
* author: lesya
*/
public class LocalConnection extends ConnectionOnProcess{
private final LocalSettings myLocalSettings;
public LocalConnection(String repository, LocalSettings localSettings, ErrorRegistry errorRegistry) {
super(repository, errorRegistry);
myLocalSettings = localSettings;
}
public void open() throws AuthenticationException {
if (!myLocalSettings.isCvsClientVerified()) {
verifyServerCapability();
myLocalSettings.setCvsClientVerified(true);
}
final GeneralCommandLine commandLine = new GeneralCommandLine();
commandLine.setExePath(myLocalSettings.PATH_TO_CVS_CLIENT);
commandLine.addParameter("server");
execute(commandLine);
}
private void verifyServerCapability() throws AuthenticationException {
final GeneralCommandLine commandLine = new GeneralCommandLine();
commandLine.setExePath(myLocalSettings.PATH_TO_CVS_CLIENT);
commandLine.addParameter("-v");
execute(commandLine);
try {
StringBuilder responseBuilder = new StringBuilder();
while(true) {
int c = myInputStream.read();
if (c == -1) {
break;
}
responseBuilder.append((char) c);
}
String[] lines = responseBuilder.toString().split("\n");
for (String line : lines) {
// check that the first non-empty line does not end with (client)
if (line.trim().endsWith("(client)")) {
throw new AuthenticationException("CVS client does not support server mode operation", null);
}
if (line.trim().length() > 0) {
break;
}
}
}
catch (IOException e) {
throw new AuthenticationException("Can't read CVS version", e);
}
closeInternal();
}
}