summaryrefslogtreecommitdiffabout
path: root/libkdepim/phoneaccess.cpp
blob: 0ea73f535f3fece69029f73919ce3f49a48fe572 (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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/*
    This file is part of libkdepim.

    Copyright (c) 2004 Lutz Rogowski <rogowski@kde.org>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.
*/


#include <qstring.h>
#include <qapplication.h>
#include <QDesktopWidget>
#include <q3ptrlist.h>
#include <qregexp.h>
#include <qfile.h>
#include <qlabel.h>
#include <q3textstream.h>
#include <qtextcodec.h>
#include <qdir.h>
#include <kmessagebox.h>
#include <stdlib.h>
#include "phoneaccess.h"

void PhoneAccess::writeConfig( QString device, QString connection, QString model )
{
#ifdef _WIN32_
    QString fileName = qApp->applicationDirPath () +"\\gammurc";
#else
    QString fileName = QDir::homeDirPath() +"/.gammurc";
#endif
    //qDebug("save %d ", load );
    QString content = "[gammu]\n";;
    bool write = false;
    bool addPort = true, addConnection = true, addModel = true;
    QFile file( fileName );
    if ( QFile::exists(  fileName) ) {
        if (!file.open( QIODevice::ReadOnly ) ) {
            qDebug("Error: cannot open %s ", fileName.latin1() );
            return;
        } 
        QString line;
	char tmp[1024];
        while ( file.readLine( tmp, 1024 ) > 0 ) {
	    line = tmp;
            //qDebug("*%s* ", line.latin1() );
            if ( line.left(7 ) == "[gammu]" ) {
               ; 
            } else 
            if ( line.left(4 ) == "port" ) {
                if ( line == "port = " + device+"\n" ) {
                    content += line ;
                    addPort = false;  
                    //qDebug("port found" );
                }
               
            } else  if ( line.left(5 ) == "model" )  {
                if ( line == "model = " + model +"\n") {
                    content += line ;
                    addModel = false;  
                    //qDebug("model found" );
                }
              
            } else  if ( line.left( 10 ) == "connection" )  {
                if ( line == "connection = " + connection +"\n") {
                    addConnection = false; 
                    content += line ;
                    //qDebug("con found" );
                }
              
            } else {
                content += line ;
            }
        }
        file.close();
    } else {
        if ( ! connection.isEmpty() ) {
            addConnection = true; 
        }
        if ( ! device.isEmpty() ) {
            addPort = true; 

        }
        if ( ! model.isEmpty() ) {
            addModel = true; 
        }
    }
   
    if ( addConnection ) {
        write = true;
        content += "connection = ";
        content += connection;
        content += "\n";
    }
    if ( addPort ) {
        write = true;
        content += "port = ";
        content += device;
        content += "\n";

    }
    if ( addModel ) {
        write = true;
        content += "model = ";
        content += model;
        content += "\n";
    }
    if ( write ) {
        if (!file.open( QIODevice::WriteOnly ) ) {
            qDebug("Error: cannot write file  %s ", fileName.latin1() );
            return;
        } 
        qDebug("Writing file  %s ", fileName.latin1() );
        Q3TextStream ts( &file );
        ts << content ;
        file.close();
    }

}


bool PhoneAccess::writeToPhone( QString fileName)
{

#ifdef DESKTOP_VERSION
#ifdef _WIN32_ 
    QString command ="kammu --restore " + fileName ;
#else
    QString command ="./kammu --restore " + fileName ;
#endif
#else
    QString command ="kammu --restore " + fileName ;
#endif
    int ret = 1;
    while ( ret != 0 ) {
        QLabel* status = new QLabel( i18n(" This may take 1-3 minutes!"), 0 );
        int w = 235;
        int h = status->sizeHint().height()+20 ;
        int dw = QApplication::desktop()->width();
        int dh = QApplication::desktop()->height();
        if ( dw > 310 )
            w = 310;
        status->setCaption(i18n("Writing to phone...") );
        status->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h );
        status->show();
        status->raise();
        status->update();
        qApp->processEvents();
        status->update();
        qApp->processEvents();
        ret = system (  command.latin1());
        delete status;
        qApp->processEvents();
        if ( ret ) {
            qDebug("Error S::command returned %d.", ret); 
            int retval = KMessageBox::warningContinueCancel(0,
                                                            i18n("Error accessing device!\nPlease turn on connection\nand retry!"),i18n("KDE/Pim phone access"),i18n("Retry"),i18n("Cancel"));
            if ( retval != KMessageBox::Continue )
                return false;
        }
    }
    return true;
}
bool PhoneAccess::readFromPhone( QString fileName)
{

#ifdef DESKTOP_VERSION
#ifdef _WIN32_ 
    QString command ="kammu --backup " + fileName + " -yes" ;
#else
    QString command ="./kammu --backup " + fileName + " -yes" ;
#endif
#else
    QString command ="kammu --backup " + fileName + " -yes" ;
#endif
    int ret = 1;
    while ( ret != 0 ) {
        QLabel* status = new QLabel( i18n(" This may take 1-3 minutes!"), 0 );
        int w = 235;
        int h = status->sizeHint().height()+20 ;
        int dw = QApplication::desktop()->width();
        int dh = QApplication::desktop()->height();
        if ( dw > 310 )
            w = 310;
        status->setCaption(i18n("Reading from phone...") );
        status->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h );
        status->show();
        status->raise();
        status->update();
        qApp->processEvents();
        status->update();
        qApp->processEvents();
        ret = system (  command.latin1() );
        delete status;
        qApp->processEvents();
        if ( ret ) {
            qDebug("Error reading from phone:Command returned %d", ret); 
            int retval = KMessageBox::warningContinueCancel(0,
                                                            i18n("Error accessing device!\nPlease turn on connection\nand retry!"),i18n("KDE/Pim phone access"),i18n("Retry"),i18n("Cancel"));
            if ( retval != KMessageBox::Continue )
                return false;

        }
    }
    qApp->processEvents();
    return true;
}