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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
|
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef _PRJ_HXX
#define _PRJ_HXX
#include <tools/fsys.hxx>
#include <tools/stream.hxx>
#include "bootstrp/listmacr.hxx"
#include <vos/mutex.hxx>
#define OS_NONE 0x0000
#define OS_WIN16 0x0001
#define OS_WIN32 0x0002
#define OS_OS2 0x0004
#define OS_UNX 0x0008
#define OS_ALL ( OS_WIN16 | OS_WIN32 | OS_OS2 | OS_UNX )
#define COMMAND_PROJECTROOT 0x0000
#define COMMAND_NMAKE 0x0001
#define COMMAND_GET 0x0002
#define COMMAND_USER_START 0x0003
#define COMMAND_USER_END 0xFFFE
#define COMMAND_ALLDIRS 0xFFFF
class SByteStringList;
class GenericInformationList;
/*
// Pfade auf Konfigurationsdateien des Build-Servers
#define REQUEST_DIR \\src\data4\source\b_server\server\newjob
*/
/*********************************************************************
*
* Die Klasse CommandData haelte alle Informationen, die fuer die
* Abarbeitung eines Kommandos (nmake, get) noetig sind
*
*********************************************************************/
class CommandData
{
ByteString aPrj;
ByteString aLogFileName;
ByteString aInpath;
ByteString aUpd;
ByteString aUpdMinor;
ByteString aProduct;
ByteString aCommand;
ByteString aPath;
ByteString aPrePath;
ByteString aPreFix;
ByteString aCommandPara;
ByteString aComment;
ByteString sClientRestriction;
SByteStringList *pDepList;
USHORT nOSType;
USHORT nCommand;
ULONG nDepth; // Tiefe der Abhaenigkeit
public:
CommandData();
~CommandData();
ByteString GetProjectName(){return aPrj;}
void SetProjectName( ByteString aName ){aPrj = aName;}
ByteString GetLogFile(){return aLogFileName;}
void SetLogFile( ByteString aName ){aLogFileName = aName;}
ByteString GetInpath(){return aInpath;}
void SetInpath( ByteString aName ){aInpath = aName;}
ByteString GetUpd(){return aUpd;}
void SetUpd( ByteString aName ){aUpd = aName;}
ByteString GetUpdMinor(){return aUpdMinor;}
void SetUpdMinor( ByteString aName ){aUpdMinor = aName;}
ByteString GetProduct(){return aProduct;}
void SetProduct( ByteString aName ){aProduct = aName;}
ByteString GetCommand(){return aCommand;}
void SetCommand ( ByteString aName ){aCommand = aName;}
ByteString GetCommandPara(){return aCommandPara;}
void SetCommandPara ( ByteString aName ){aCommandPara = aName;}
ByteString GetComment(){return aComment;}
void SetComment ( ByteString aCommentString ){aComment = aCommentString;}
ByteString GetPath(){return aPath;}
void SetPath( ByteString aName ){aPath = aName;}
ByteString GetPrePath(){return aPrePath;}
void SetPrePath( ByteString aName ){aPrePath = aName;}
USHORT GetOSType(){return nOSType;}
ByteString GetOSTypeString();
void SetOSType( USHORT nType ){nOSType = nType;}
USHORT GetCommandType(){return nCommand;}
ByteString GetCommandTypeString();
void SetCommandType( USHORT nCommandType ){nCommand = nCommandType;}
SByteStringList* GetDependencies(){return pDepList;}
void SetDependencies( SByteStringList *pList ){pDepList = pList;}
ByteString GetClientRestriction() { return sClientRestriction; }
void SetClientRestriction( ByteString sRestriction ) { sClientRestriction = sRestriction; }
void AddDepth(){nDepth++;}
ULONG GetDepth(){return nDepth;}
};
/*********************************************************************
*
* Die Klasse SimpleConfig kann benutzt werden, um aus einer Textdatei
* alle Tokens zu lesen
*
*********************************************************************/
class SimpleConfig
{
long nLine;
String aFileName;
SvFileStream aFileStream;
ByteString aTmpStr;
ByteString aStringBuffer;
ByteString GetNextLine();
public:
SimpleConfig(String aSimpleConfigFileName);
SimpleConfig(DirEntry& rDirEntry);
~SimpleConfig();
ByteString GetNext();
ByteString GetCleanedNextLine( BOOL bReadComments = FALSE );
};
#define ENV_GUI 0x00000000
#define ENV_OS 0x00000001
#define ENV_UPD 0x00000002
#define ENV_UPDMIN 0x00000004
#define ENV_INPATH 0x00000008
#define ENV_OUTPATH 0x00000010
#define ENV_GUIBASE 0x00000020
#define ENV_CVER 0x00000040
#define ENV_GVER 0x00000080
#define ENV_GUIENV 0x00000100
#define ENV_CPU 0x00000200
#define ENV_CPUNAME 0x00000400
#define ENV_DLLSUFF 0x00000800
#define ENV_COMEX 0x00001000
#define ENV_COMPATH 0x00002000
#define ENV_INCLUDE 0x00004000
#define ENV_LIB 0x00008000
#define ENV_PATH 0x00010000
#define ENV_SOLVER 0x00020000
#define ENV_SOLENV 0x00040000
#define ENV_SOLROOT 0x00080000
#define ENV_DEVROOT 0x00100000
#define ENV_EMERG 0x00200000
#define ENV_STAND 0x00400000
/*********************************************************************
*
* class Prj
* alle Daten eines Projektes werden hier gehalten
*
*********************************************************************/
DECL_DEST_LIST ( PrjList_tmp, PrjList, CommandData * )
class Star;
class Prj : public PrjList
{
friend class Star;
private:
BOOL bVisited;
ByteString aPrjPath;
ByteString aProjectName;
ByteString aProjectPrefix; // max. 2-buchstabige Abk.
SByteStringList* pPrjInitialDepList;
SByteStringList* pPrjDepList;
BOOL bHardDependencies;
BOOL bSorted;
public:
Prj();
Prj( ByteString aName );
~Prj();
void SetPreFix( ByteString aPre ){aProjectPrefix = aPre;}
ByteString GetPreFix(){return aProjectPrefix;}
ByteString GetProjectName()
{return aProjectName;}
void SetProjectName(ByteString aName)
{aProjectName = aName;}
BOOL InsertDirectory( ByteString aDirName , USHORT aWhat,
USHORT aWhatOS, ByteString aLogFileName,
const ByteString &rClientRestriction );
CommandData* RemoveDirectory( ByteString aLogFileName );
CommandData* GetDirectoryList ( USHORT nWhatOs, USHORT nCommand );
CommandData* GetDirectoryData( ByteString aLogFileName );
inline CommandData* GetData( ByteString aLogFileName )
{ return GetDirectoryData( aLogFileName ); };
SByteStringList* GetDependencies( BOOL bExpanded = TRUE );
void AddDependencies( ByteString aStr );
void HasHardDependencies( BOOL bHard ) { bHardDependencies = bHard; }
BOOL HasHardDependencies() { return bHardDependencies; }
};
/*********************************************************************
*
* class Star
* Diese Klasse liest die Projectstruktur aller StarDivision Projekte
* aus \\dev\data1\upenv\data\config\solar.lst aus
*
*********************************************************************/
DECL_DEST_LIST ( StarList_tmp, StarList, Prj* )
DECLARE_LIST ( SolarFileList, String* )
class StarFile
{
private:
String aFileName;
Date aDate;
Time aTime;
BOOL bExists;
public:
StarFile( const String &rFile );
const String &GetName() { return aFileName; }
Date GetDate() { return aDate; }
Time GetTime() { return aTime; }
BOOL NeedsUpdate();
BOOL Exists() { return bExists; }
};
DECLARE_LIST( StarFileList, StarFile * )
#define STAR_MODE_SINGLE_PARSE 0x0000
#define STAR_MODE_RECURSIVE_PARSE 0x0001
#define STAR_MODE_MULTIPLE_PARSE 0x0002
class Star : public StarList
{
private:
ByteString aStarName;
static Link aDBNotFoundHdl;
protected:
vos:: OMutex aMutex;
USHORT nStarMode;
SolarFileList aFileList;
StarFileList aLoadedFilesList;
String sSourceRoot;
void InsertSolarList( String sProject );
String CreateFileName( String sProject );
void Expand_Impl();
void ExpandPrj_Impl( Prj *pPrj, Prj *pDepPrj );
private:
void Read( String &rFileName );
void Read( SolarFileList *pSOlarFiles );
public:
Star();
Star( String aFileName, USHORT nMode = STAR_MODE_SINGLE_PARSE );
Star( SolarFileList *pSolarFiles );
Star( GenericInformationList *pStandLst, ByteString &rVersion, BOOL bLocal = FALSE,
const char *pSourceRoot = NULL );
~Star();
static void SetDBNotFoundHdl( const Link &rLink ) { aDBNotFoundHdl = rLink; }
ByteString GetName(){ return aStarName; };
BOOL HasProject( ByteString aProjectName );
Prj* GetPrj( ByteString aProjectName );
ByteString GetPrjName( DirEntry &rPath );
void InsertToken( char *pChar );
BOOL NeedsUpdate();
USHORT GetMode() { return nStarMode; }
};
class StarWriter : public Star
{
private:
USHORT WritePrj( Prj *pPrj, SvFileStream& rStream );
public:
StarWriter( String aFileName, BOOL bReadComments = FALSE, USHORT nMode = STAR_MODE_SINGLE_PARSE );
StarWriter( SolarFileList *pSolarFiles, BOOL bReadComments = FALSE );
StarWriter( GenericInformationList *pStandLst, ByteString &rVersion, BOOL bLocal = FALSE,
const char *pSourceRoot = NULL );
void CleanUp();
BOOL InsertProject ( Prj* pNewPrj );
Prj* RemoveProject ( ByteString aProjectName );
USHORT Read( String aFileName, BOOL bReadComments = FALSE, USHORT nMode = STAR_MODE_SINGLE_PARSE );
USHORT Read( SolarFileList *pSolarFiles, BOOL bReadComments = FALSE );
USHORT Write( String aFileName );
USHORT WriteMultiple( String rSourceRoot );
void InsertTokenLine( ByteString& rString );
};
#endif
|