Handle the EINTR error when doing a waitpid() in wvmagicloopback.
[wvapps.git] / evolution / sync.h
blobba9ab900f0ccc4608cb1b195269cb7103eac6bf7
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: s; c-basic-offset: 4 -*- */
2 /*
3 * Authors : Patrick Patterson <ppatters@nit.ca>
4 * Peter Colijn <pcolijn@nit.ca>
5 * Scott MacLean <scott@nit.ca>
6 * William Lachance <wlach@nit.ca>
8 * Copyright 2003-2004, Net Integration Technologies, Inc.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of version 2 of the GNU General Public
12 * License as published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
25 #ifndef __SYNC_H
26 #define __SYNC_H
27 #include "exchangeitadaptor.h"
28 #include "taggedcommand.h"
29 #include "strutils.h"
30 #include "wvlog.h"
32 class ExchangeItStorage;
33 class WvStream;
35 class Sync : public TaggedCommand
37 public:
38 Sync(ExchangeItAdaptor *_adaptor) :
39 adaptor(_adaptor),
40 log("Sync", WvLog::Debug3)
41 { }
43 virtual ~Sync()
44 { }
46 virtual void get_command(WvString &command, WvStringList &params,
47 WvStringList &lines);
49 virtual bool apply_response(WvStringList &parts,
50 WvStream &stream,
51 ExchangeItStorage *storage);
53 virtual bool check_error(WvStringParm response,
54 const WvStringList &params)
55 { return false; }
57 bool ready()
58 { return adaptor->is_ready(); }
60 private:
61 ExchangeItAdaptor *adaptor;
62 WvLog log;
65 #endif