OSDN Git Service

42675e1c673477928cef7345f596309bbf3a0dd6
[kita/kita.git] / kita / src / libkita / thread.cpp
1 /***************************************************************************
2 *   Copyright (C) 2003 by Hideki Ikemoto                                  *
3 *   ikemo@users.sourceforge.jp                                            *
4 *                                                                         *
5 *   This program is free software; you can redistribute it and/or modify  *
6 *   it under the terms of the GNU General Public License as published by  *
7 *   the Free Software Foundation; either version 2 of the License, or     *
8 *   (at your option) any later version.                                   *
9 ***************************************************************************/
10
11 #include "thread.h"
12
13 #include <config.h>
14
15 #include <stdlib.h>
16 #include <unistd.h>
17
18 #include <kurl.h>
19 #include <kdebug.h>
20 #include <kprotocolmanager.h>
21 #include <kglobal.h>
22 #include <kstandarddirs.h>
23
24 #include <kio/slaveconfig.h>
25 #include <kio/jobclasses.h>
26 #include <kio/scheduler.h>
27 #include <kio/netaccess.h>
28
29 #include <qwidget.h>
30 #include <qapplication.h>
31 #include <qregexp.h>
32
33 #include "board.h"
34 #include "kita_misc.h"
35 #include "qcp932codec.h"
36 #include "threadinfo.h"
37
38 using namespace Kita;
39
40 QDict<Thread>* Thread::m_threadDict = 0;
41
42 Thread::Thread()
43 {}
44
45 Thread::Thread( const QString& datURL, const QString& threadName )
46         : m_datURL( datURL ), m_threadName( threadName )
47 {}
48
49 Thread::~Thread()
50 {}
51
52 const QString& Thread::datURL() const
53 {
54     return m_datURL;
55 }
56
57 const QString Thread::url() const
58 {
59     return datToThread( m_datURL );
60 }
61
62 const QString Thread::datID() const
63 {
64     return KURL( m_datURL ).filename().section( ".", 0, 0 );
65 }
66
67 int Thread::resNum() const
68 {
69     return KitaThreadInfo::resNum( m_datURL );
70 }
71
72 const QString& Thread::name() const
73 {
74     if ( ! Kita::Thread::getByURL( m_datURL ) ->m_threadName.isEmpty() ) {
75         return Kita::Thread::getByURL( m_datURL ) ->m_threadName;
76     }
77     return m_threadName;
78 }
79
80 void Thread::setResNum( int resNum )
81 {
82     KitaThreadInfo::setResNum( m_datURL, resNum );
83 }
84
85 const QString& Thread::boardName() const
86 {
87     return Kita::Board::getName( boardURL() );
88 }
89
90 const QString Thread::boardURL() const
91 {
92     return datToBoard( m_datURL );
93 }
94
95 const QString Thread::boardID() const
96 {
97     return KURL( datToBoard( m_datURL ) ).fileName();
98 }
99
100 Thread* Thread::getByURL( const QString& datURL )
101 {
102     if ( m_threadDict == 0 ) {
103         m_threadDict = new QDict<Thread>();
104     }
105
106     if ( m_threadDict->find( datURL ) ) {
107         return m_threadDict->find( datURL );
108     }
109
110     Thread* newThread = new Thread( datURL );
111     m_threadDict->insert( datURL, newThread );
112
113     return newThread;
114 }
115
116 void Thread::setName( const QString& datURL, const QString& threadName )
117 {
118     if ( datURL.isNull() ) {
119         return ;
120     }
121
122     if ( m_threadDict == 0 ) {
123         m_threadDict = new QDict<Thread>();
124     }
125
126     if ( m_threadDict->find( datURL ) ) {
127         Thread * thread = getByURL( datURL );
128         thread->m_threadName = threadName;
129     } else {
130         Thread* newThread = new Thread( datURL, threadName );
131         m_threadDict->insert( datURL, newThread );
132     }
133
134     return ;
135 }
136
137 void Thread::replace( const QString& fromURL, const QString& toURL )
138 {
139     QDictIterator<Kita::Thread> it( *m_threadDict );
140     for( ; it.current(); ++it ) {
141         QString url = it.currentKey();
142         Kita::Thread* thread = it.current();
143         if ( url.find( fromURL ) == 0 ) {
144             m_threadDict->remove( url );
145             url = url.replace( 0, fromURL.length(), toURL );
146             thread->m_datURL = url;
147             Kita::Board::replace( fromURL, toURL );
148             m_threadDict->insert( url, thread );
149             it.toFirst();
150         }
151     }
152 }
153
154 NullThread::NullThread()
155 {}
156
157 NullThread::~NullThread()
158 {}