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
|
/**
* @copyright
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
* ====================================================================
* @endcopyright
*
* @file RemoteSessionContext.cpp
* @brief Implementation of the class RemoteSessionContext
*/
#include "RemoteSessionContext.h"
#include "JNIUtil.h"
#include "Prompter.h"
RemoteSessionContext::RemoteSessionContext(
SVN::Pool &pool, const char* configDirectory,
const char* usernameStr, const char* passwordStr,
Prompter::UniquePtr prompter, jobject jcfgcb, jobject jtunnelcb)
: OperationContext(pool), m_raCallbacks(NULL)
{
setConfigDirectory(configDirectory);
if (usernameStr != NULL)
username(usernameStr);
if (passwordStr != NULL)
password(passwordStr);
setPrompt(prompter);
setConfigEventHandler(jcfgcb);
setTunnelCallback(jtunnelcb);
/*
* Setup callbacks
*/
SVN_JNI_ERR(svn_ra_create_callbacks(&m_raCallbacks, m_pool->getPool()), );
m_raCallbacks->auth_baton = getAuthBaton(pool);
m_raCallbacks->cancel_func = checkCancel;
m_raCallbacks->get_client_string = clientName;
m_raCallbacks->progress_baton = NULL;
m_raCallbacks->progress_func = progress;
/*
* JNI RA layer does not work with WC so all WC callbacks are set to NULL
*/
m_raCallbacks->get_wc_prop = NULL;
m_raCallbacks->invalidate_wc_props = NULL;
m_raCallbacks->push_wc_prop = NULL;
m_raCallbacks->set_wc_prop = NULL;
/*
* Don't set deprecated callback
*/
m_raCallbacks->open_tmp_file = NULL;
if (m_jtunnelcb)
{
m_raCallbacks->check_tunnel_func = checkTunnel;
m_raCallbacks->open_tunnel_func = openTunnel;
m_raCallbacks->tunnel_baton = m_jtunnelcb;
}
}
RemoteSessionContext::~RemoteSessionContext()
{
}
void RemoteSessionContext::activate(jobject jremoteSession, jobject jprogress)
{
/*
* Attach session context java object
*/
static jfieldID ctxFieldID = 0;
attachJavaObject(jremoteSession,
JAVAHL_ARG("/remote/RemoteSession$RemoteSessionContext;"),
"sessionContext", &ctxFieldID);
/*
* Set the progress callback
*/
JNIEnv *env = JNIUtil::getEnv();
jclass clazz = env->GetObjectClass(m_jctx);
if (JNIUtil::isJavaExceptionThrown())
return;
jmethodID mid = env->GetMethodID(
clazz, "setProgressCallback",
"(" JAVAHL_ARG("/callback/ProgressCallback;") ")V");
if (JNIUtil::isJavaExceptionThrown() || mid == 0)
return;
env->CallVoidMethod(m_jctx, mid, jprogress);
m_raCallbacks->progress_baton = m_jctx;
}
void *
RemoteSessionContext::getCallbackBaton()
{
return this;
}
svn_ra_callbacks2_t *
RemoteSessionContext::getCallbacks()
{
return m_raCallbacks;
}
|