summaryrefslogtreecommitdiff
path: root/subversion/bindings/javahl/native/ClientContext.h
blob: 55ae9ff95656786e6b90a3f82ee3b43799da726f (plain)
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
/**
 * @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 ClientContext.h
 * @brief Interface of the class ClientContext
 */

#ifndef CLIENTCONTEXT_H
#define CLIENTCONTEXT_H

#include <string>

#include "OperationContext.h"

#include "svn_types.h"
#include "svn_client.h"

#include <jni.h>
#include "Pool.h"
#include "JNIStringHolder.h"

class CommitMessage;

/**
 * This class contains a Java objects implementing the interface ClientContext
 * and implements the functions read & close of svn_stream_t.
 *
 */
class ClientContext : public OperationContext
{
 private:
  svn_client_ctx_t *m_context;

 protected:
  static void notify(void *baton, const svn_wc_notify_t *notify,
                     apr_pool_t *pool);
  static svn_error_t *resolve(svn_wc_conflict_result_t **result,
                              const svn_wc_conflict_description2_t *desc,
                              void *baton,
                              apr_pool_t *result_pool,
                              apr_pool_t *scratch_pool);
  static svn_wc_conflict_result_t *javaResultToC(jobject result,
                                                 apr_pool_t *pool);

 public:
  ClientContext(jobject jsvnclient, SVN::Pool &pool);
  virtual ~ClientContext();
  virtual void setTunnelCallback(jobject jtunnelcb);

  svn_client_ctx_t *getContext(CommitMessage *message, SVN::Pool &in_pool);
};

#endif // CLIENTCONTEXT_H