]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
f4751ad112dc84cfac8cf3a56977972d1279dd9a
[user/henk/code/inspircd.git] / src / modules.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "xline.h"
16 #include "socket.h"
17 #include "socketengine.h"
18 #include "command_parse.h"
19 #include "dns.h"
20 #include "exitcodes.h"
21
22 #ifndef WIN32
23         #include <dirent.h>
24 #endif
25
26
27 // Version is a simple class for holding a modules version number
28 template<>
29 VersionBase<API_VERSION>::VersionBase(const std::string &modv, int flags, const std::string& rev)
30 : description(modv), version(rev), Flags(flags)
31 {
32 }
33
34 Request::Request(Module* src, Module* dst, const char* idstr)
35 : id(idstr), source(src), dest(dst)
36 {
37 }
38
39 void Request::Send()
40 {
41         if (dest)
42                 dest->OnRequest(*this);
43 }
44
45 Event::Event(Module* src, const std::string &eventid) : source(src), id(eventid) { }
46
47 void Event::Send()
48 {
49         FOREACH_MOD(I_OnEvent,OnEvent(*this));
50 }
51
52 // These declarations define the behavours of the base class Module (which does nothing at all)
53
54 Module::Module() { }
55 CullResult Module::cull()
56 {
57         return classbase::cull();
58 }
59 Module::~Module()
60 {
61 }
62
63 ModResult       Module::OnSendSnotice(char &snomask, std::string &type, const std::string &message) { return MOD_RES_PASSTHRU; }
64 void            Module::OnUserConnect(LocalUser*) { }
65 void            Module::OnUserQuit(User*, const std::string&, const std::string&) { }
66 void            Module::OnUserDisconnect(LocalUser*) { }
67 void            Module::OnUserJoin(Membership*, bool, bool, CUList&) { }
68 void            Module::OnPostJoin(Membership*) { }
69 void            Module::OnUserPart(Membership*, std::string&, CUList&) { }
70 void            Module::OnPreRehash(User*, const std::string&) { }
71 void            Module::OnModuleRehash(User*, const std::string&) { }
72 void            Module::OnRehash(User*) { }
73 ModResult       Module::OnUserPreJoin(User*, Channel*, const char*, std::string&, const std::string&) { return MOD_RES_PASSTHRU; }
74 void            Module::OnMode(User*, void*, int, const std::vector<std::string>&, const std::vector<TranslateType>&) { }
75 void            Module::OnOper(User*, const std::string&) { }
76 void            Module::OnPostOper(User*, const std::string&, const std::string &) { }
77 void            Module::OnInfo(User*) { }
78 void            Module::OnWhois(User*, User*) { }
79 ModResult       Module::OnUserPreInvite(User*, User*, Channel*, time_t) { return MOD_RES_PASSTHRU; }
80 ModResult       Module::OnUserPreMessage(User*, void*, int, std::string&, char, CUList&) { return MOD_RES_PASSTHRU; }
81 ModResult       Module::OnUserPreNotice(User*, void*, int, std::string&, char, CUList&) { return MOD_RES_PASSTHRU; }
82 ModResult       Module::OnUserPreNick(User*, const std::string&) { return MOD_RES_PASSTHRU; }
83 void            Module::OnUserPostNick(User*, const std::string&) { }
84 ModResult       Module::OnPreMode(User*, User*, Channel*, const std::vector<std::string>&) { return MOD_RES_PASSTHRU; }
85 void            Module::On005Numeric(std::string&) { }
86 ModResult       Module::OnKill(User*, User*, const std::string&) { return MOD_RES_PASSTHRU; }
87 void            Module::OnLoadModule(Module*) { }
88 void            Module::OnUnloadModule(Module*) { }
89 void            Module::OnBackgroundTimer(time_t) { }
90 ModResult       Module::OnPreCommand(std::string&, std::vector<std::string>&, User *, bool, const std::string&) { return MOD_RES_PASSTHRU; }
91 void            Module::OnPostCommand(const std::string&, const std::vector<std::string>&, User *, CmdResult, const std::string&) { }
92 ModResult       Module::OnCheckReady(LocalUser*) { return MOD_RES_PASSTHRU; }
93 ModResult       Module::OnUserRegister(LocalUser*) { return MOD_RES_PASSTHRU; }
94 ModResult       Module::OnUserPreKick(User*, Membership*, const std::string&) { return MOD_RES_PASSTHRU; }
95 void            Module::OnUserKick(User*, Membership*, const std::string&, CUList&) { }
96 ModResult       Module::OnRawMode(User*, Channel*, const char, const std::string &, bool, int) { return MOD_RES_PASSTHRU; }
97 ModResult       Module::OnCheckInvite(User*, Channel*) { return MOD_RES_PASSTHRU; }
98 ModResult       Module::OnCheckKey(User*, Channel*, const std::string&) { return MOD_RES_PASSTHRU; }
99 ModResult       Module::OnCheckLimit(User*, Channel*) { return MOD_RES_PASSTHRU; }
100 ModResult       Module::OnCheckChannelBan(User*, Channel*) { return MOD_RES_PASSTHRU; }
101 ModResult       Module::OnCheckBan(User*, Channel*, const std::string&) { return MOD_RES_PASSTHRU; }
102 ModResult       Module::OnExtBanCheck(User*, Channel*, char) { return MOD_RES_PASSTHRU; }
103 ModResult       Module::OnStats(char, User*, string_list&) { return MOD_RES_PASSTHRU; }
104 ModResult       Module::OnChangeLocalUserHost(LocalUser*, const std::string&) { return MOD_RES_PASSTHRU; }
105 ModResult       Module::OnChangeLocalUserGECOS(LocalUser*, const std::string&) { return MOD_RES_PASSTHRU; }
106 ModResult       Module::OnPreTopicChange(User*, Channel*, const std::string&) { return MOD_RES_PASSTHRU; }
107 void            Module::OnEvent(Event&) { }
108 void            Module::OnRequest(Request&) { }
109 ModResult       Module::OnPassCompare(Extensible* ex, const std::string &password, const std::string &input, const std::string& hashtype) { return MOD_RES_PASSTHRU; }
110 void            Module::OnGlobalOper(User*) { }
111 void            Module::OnPostConnect(User*) { }
112 ModResult       Module::OnAddBan(User*, Channel*, const std::string &) { return MOD_RES_PASSTHRU; }
113 ModResult       Module::OnDelBan(User*, Channel*, const std::string &) { return MOD_RES_PASSTHRU; }
114 void            Module::OnStreamSocketAccept(StreamSocket*, irc::sockets::sockaddrs*, irc::sockets::sockaddrs*) { }
115 int             Module::OnStreamSocketWrite(StreamSocket*, std::string&) { return -1; }
116 void            Module::OnStreamSocketClose(StreamSocket*) { }
117 void            Module::OnStreamSocketConnect(StreamSocket*) { }
118 int             Module::OnStreamSocketRead(StreamSocket*, std::string&) { return -1; }
119 void            Module::OnUserMessage(User*, void*, int, const std::string&, char, const CUList&) { }
120 void            Module::OnUserNotice(User*, void*, int, const std::string&, char, const CUList&) { }
121 void            Module::OnRemoteKill(User*, User*, const std::string&, const std::string&) { }
122 void            Module::OnUserInvite(User*, User*, Channel*, time_t) { }
123 void            Module::OnPostTopicChange(User*, Channel*, const std::string&) { }
124 void            Module::OnGetServerDescription(const std::string&, std::string&) { }
125 void            Module::OnSyncUser(User*, Module*, void*) { }
126 void            Module::OnSyncChannel(Channel*, Module*, void*) { }
127 void            Module::OnSyncNetwork(Module*, void*) { }
128 void            Module::ProtoSendMode(void*, TargetTypeFlags, void*, const std::vector<std::string>&, const std::vector<TranslateType>&) { }
129 void            Module::OnDecodeMetaData(Extensible*, const std::string&, const std::string&) { }
130 void            Module::ProtoSendMetaData(void*, Extensible*, const std::string&, const std::string&) { }
131 void            Module::OnWallops(User*, const std::string&) { }
132 void            Module::OnChangeHost(User*, const std::string&) { }
133 void            Module::OnChangeName(User*, const std::string&) { }
134 void            Module::OnChangeIdent(User*, const std::string&) { }
135 void            Module::OnAddLine(User*, XLine*) { }
136 void            Module::OnDelLine(User*, XLine*) { }
137 void            Module::OnExpireLine(XLine*) { }
138 void            Module::OnCleanup(int, void*) { }
139 ModResult       Module::OnChannelPreDelete(Channel*) { return MOD_RES_PASSTHRU; }
140 void            Module::OnChannelDelete(Channel*) { }
141 ModResult       Module::OnSetAway(User*, const std::string &) { return MOD_RES_PASSTHRU; }
142 ModResult       Module::OnUserList(User*, Channel*) { return MOD_RES_PASSTHRU; }
143 ModResult       Module::OnWhoisLine(User*, User*, int&, std::string&) { return MOD_RES_PASSTHRU; }
144 void            Module::OnBuildNeighborList(User*, UserChanList&, std::map<User*,bool>&) { }
145 void            Module::OnGarbageCollect() { }
146 void            Module::OnText(User*, void*, int, const std::string&, char, CUList&) { }
147 void            Module::OnRunTestSuite() { }
148 void            Module::OnNamesListItem(User*, Membership*, std::string&, std::string&) { }
149 ModResult       Module::OnNumeric(User*, unsigned int, const std::string&) { return MOD_RES_PASSTHRU; }
150 void            Module::OnHookIO(StreamSocket*, ListenSocket*) { }
151 ModResult   Module::OnAcceptConnection(int, ListenSocket*, irc::sockets::sockaddrs*, irc::sockets::sockaddrs*) { return MOD_RES_PASSTHRU; }
152 void            Module::OnSendWhoLine(User*, User*, Channel*, std::string&) { }
153 ModResult       Module::OnChannelRestrictionApply(User*, Channel*, const char*) { return MOD_RES_PASSTHRU; }
154
155 ModuleManager::ModuleManager() : ModCount(0)
156 {
157 }
158
159 ModuleManager::~ModuleManager()
160 {
161 }
162
163 bool ModuleManager::Attach(Implementation i, Module* mod)
164 {
165         if (std::find(EventHandlers[i].begin(), EventHandlers[i].end(), mod) != EventHandlers[i].end())
166                 return false;
167
168         EventHandlers[i].push_back(mod);
169         return true;
170 }
171
172 bool ModuleManager::Detach(Implementation i, Module* mod)
173 {
174         EventHandlerIter x = std::find(EventHandlers[i].begin(), EventHandlers[i].end(), mod);
175
176         if (x == EventHandlers[i].end())
177                 return false;
178
179         EventHandlers[i].erase(x);
180         return true;
181 }
182
183 void ModuleManager::Attach(Implementation* i, Module* mod, size_t sz)
184 {
185         for (size_t n = 0; n < sz; ++n)
186                 Attach(i[n], mod);
187 }
188
189 void ModuleManager::DetachAll(Module* mod)
190 {
191         for (size_t n = I_BEGIN + 1; n != I_END; ++n)
192                 Detach((Implementation)n, mod);
193 }
194
195 bool ModuleManager::SetPriority(Module* mod, Priority s)
196 {
197         for (size_t n = I_BEGIN + 1; n != I_END; ++n)
198                 SetPriority(mod, (Implementation)n, s);
199
200         return true;
201 }
202
203 bool ModuleManager::SetPriority(Module* mod, Implementation i, Priority s, Module** modules, size_t sz)
204 {
205         /** To change the priority of a module, we first find its position in the vector,
206          * then we find the position of the other modules in the vector that this module
207          * wants to be before/after. We pick off either the first or last of these depending
208          * on which they want, and we make sure our module is *at least* before or after
209          * the first or last of this subset, depending again on the type of priority.
210          */
211         size_t swap_pos = 0;
212         size_t source = 0;
213         bool swap = true;
214         bool found = false;
215
216         /* Locate our module. This is O(n) but it only occurs on module load so we're
217          * not too bothered about it
218          */
219         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
220         {
221                 if (EventHandlers[i][x] == mod)
222                 {
223                         source = x;
224                         found = true;
225                         break;
226                 }
227         }
228
229         /* Eh? this module doesnt exist, probably trying to set priority on an event
230          * theyre not attached to.
231          */
232         if (!found)
233                 return false;
234
235         switch (s)
236         {
237                 /* Dummy value */
238                 case PRIORITY_DONTCARE:
239                         swap = false;
240                 break;
241                 /* Module wants to be first, sod everything else */
242                 case PRIORITY_FIRST:
243                         if (prioritizationState != PRIO_STATE_FIRST)
244                                 swap = false;
245                         else
246                                 swap_pos = 0;
247                 break;
248                 /* Module wants to be last. */
249                 case PRIORITY_LAST:
250                         if (prioritizationState != PRIO_STATE_FIRST)
251                                 swap = false;
252                         else if (EventHandlers[i].empty())
253                                 swap_pos = 0;
254                         else
255                                 swap_pos = EventHandlers[i].size() - 1;
256                 break;
257                 /* Place this module after a set of other modules */
258                 case PRIORITY_AFTER:
259                 {
260                         /* Find the latest possible position */
261                         swap_pos = 0;
262                         swap = false;
263                         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
264                         {
265                                 for (size_t n = 0; n < sz; ++n)
266                                 {
267                                         if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x >= swap_pos) && (source <= swap_pos))
268                                         {
269                                                 swap_pos = x;
270                                                 swap = true;
271                                         }
272                                 }
273                         }
274                 }
275                 break;
276                 /* Place this module before a set of other modules */
277                 case PRIORITY_BEFORE:
278                 {
279                         swap_pos = EventHandlers[i].size() - 1;
280                         swap = false;
281                         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
282                         {
283                                 for (size_t n = 0; n < sz; ++n)
284                                 {
285                                         if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x <= swap_pos) && (source >= swap_pos))
286                                         {
287                                                 swap = true;
288                                                 swap_pos = x;
289                                         }
290                                 }
291                         }
292                 }
293                 break;
294         }
295
296         /* Do we need to swap? */
297         if (swap && (swap_pos != source))
298         {
299                 // We are going to change positions; we'll need to run again to verify all requirements
300                 if (prioritizationState == PRIO_STATE_LAST)
301                         prioritizationState = PRIO_STATE_AGAIN;
302                 /* Suggestion from Phoenix, "shuffle" the modules to better retain call order */
303                 int incrmnt = 1;
304
305                 if (source > swap_pos)
306                         incrmnt = -1;
307
308                 for (unsigned int j = source; j != swap_pos; j += incrmnt)
309                 {
310                         if (( j + incrmnt > EventHandlers[i].size() - 1) || (j + incrmnt < 0))
311                                 continue;
312
313                         std::swap(EventHandlers[i][j], EventHandlers[i][j+incrmnt]);
314                 }
315         }
316
317         return true;
318 }
319
320 std::string& ModuleManager::LastError()
321 {
322         return LastModuleError;
323 }
324
325 CmdResult InspIRCd::CallCommandHandler(const std::string &commandname, const std::vector<std::string>& parameters, User* user)
326 {
327         return this->Parser->CallHandler(commandname, parameters, user);
328 }
329
330 bool InspIRCd::IsValidModuleCommand(const std::string &commandname, int pcnt, User* user)
331 {
332         return this->Parser->IsValidCommand(commandname, pcnt, user);
333 }
334
335 void InspIRCd::AddCommand(Command *f)
336 {
337         if (!this->Parser->AddCommand(f))
338         {
339                 throw ModuleException("Command "+std::string(f->name)+" already exists.");
340         }
341 }
342
343 void ModuleManager::AddService(ServiceProvider& item)
344 {
345         switch (item.service)
346         {
347                 case SERVICE_COMMAND:
348                         if (!ServerInstance->Parser->AddCommand(static_cast<Command*>(&item)))
349                                 throw ModuleException("Command "+std::string(item.name)+" already exists.");
350                         return;
351                 case SERVICE_CMODE:
352                 case SERVICE_UMODE:
353                         if (!ServerInstance->Modes->AddMode(static_cast<ModeHandler*>(&item)))
354                                 throw ModuleException("Mode "+std::string(item.name)+" already exists.");
355                         return;
356                 case SERVICE_METADATA:
357                         ServerInstance->Extensions.Register(static_cast<ExtensionItem*>(&item));
358                         return;
359                 case SERVICE_DATA:
360                 case SERVICE_IOHOOK:
361                 {
362                         DataProviders.insert(std::make_pair(item.name, &item));
363                         std::string::size_type slash = item.name.find('/');
364                         if (slash != std::string::npos)
365                         {
366                                 DataProviders.insert(std::make_pair(item.name.substr(0, slash), &item));
367                                 DataProviders.insert(std::make_pair(item.name.substr(slash + 1), &item));
368                         }
369                         return;
370                 }
371                 default:
372                         throw ModuleException("Cannot add unknown service type");
373         }
374 }
375
376 ServiceProvider* ModuleManager::FindService(ServiceType type, const std::string& name)
377 {
378         switch (type)
379         {
380                 case SERVICE_DATA:
381                 case SERVICE_IOHOOK:
382                 {
383                         std::multimap<std::string, ServiceProvider*>::iterator i = DataProviders.find(name);
384                         if (i != DataProviders.end() && i->second->service == type)
385                                 return i->second;
386                         return NULL;
387                 }
388                 // TODO implement finding of the other types
389                 default:
390                         throw ModuleException("Cannot find unknown service type");
391         }
392 }
393
394 dynamic_reference_base::dynamic_reference_base(Module* Creator, const std::string& Name)
395         : name(Name), value(NULL), creator(Creator)
396 {
397         ServerInstance->Modules->ActiveDynrefs.push_back(this);
398 }
399
400 dynamic_reference_base::~dynamic_reference_base()
401 {
402         for(unsigned int i = 0; i < ServerInstance->Modules->ActiveDynrefs.size(); i++)
403         {
404                 if (ServerInstance->Modules->ActiveDynrefs[i] == this)
405                 {
406                         unsigned int last = ServerInstance->Modules->ActiveDynrefs.size() - 1;
407                         if (i != last)
408                                 ServerInstance->Modules->ActiveDynrefs[i] = ServerInstance->Modules->ActiveDynrefs[last];
409                         ServerInstance->Modules->ActiveDynrefs.erase(ServerInstance->Modules->ActiveDynrefs.begin() + last);
410                         return;
411                 }
412         }
413 }
414
415 void dynamic_reference_base::SetProvider(const std::string& newname)
416 {
417         name = newname;
418         ClearCache();
419 }
420
421 void dynamic_reference_base::lookup()
422 {
423         if (!*this)
424                 throw ModuleException("Dynamic reference to '" + name + "' failed to resolve");
425 }
426
427 dynamic_reference_base::operator bool()
428 {
429         if (!value)
430         {
431                 std::multimap<std::string, ServiceProvider*>::iterator i = ServerInstance->Modules->DataProviders.find(name);
432                 if (i != ServerInstance->Modules->DataProviders.end())
433                         value = static_cast<DataProvider*>(i->second);
434         }
435         return value;
436 }
437
438 void InspIRCd::SendMode(const std::vector<std::string>& parameters, User *user)
439 {
440         this->Modes->Process(parameters, user);
441 }
442
443 bool InspIRCd::AddResolver(Resolver* r, bool cached)
444 {
445         if (!cached)
446                 return this->Res->AddResolverClass(r);
447         else
448         {
449                 r->TriggerCachedResult();
450                 delete r;
451                 return true;
452         }
453 }
454
455 Module* ModuleManager::Find(const std::string &name)
456 {
457         std::map<std::string, Module*>::iterator modfind = Modules.find(name);
458
459         if (modfind == Modules.end())
460                 return NULL;
461         else
462                 return modfind->second;
463 }
464
465 const std::vector<std::string> ModuleManager::GetAllModuleNames(int filter)
466 {
467         std::vector<std::string> retval;
468         for (std::map<std::string, Module*>::iterator x = Modules.begin(); x != Modules.end(); ++x)
469                 if (!filter || (x->second->GetVersion().Flags & filter))
470                         retval.push_back(x->first);
471         return retval;
472 }
473
474 ConfigReader::ConfigReader()
475 {
476         this->error = 0;
477 }
478
479
480 ConfigReader::~ConfigReader()
481 {
482 }
483
484 static ConfigTag* SlowGetTag(const std::string &tag, int index)
485 {
486         ConfigTagList tags = ServerInstance->Config->ConfTags(tag);
487         while (tags.first != tags.second)
488         {
489                 if (!index)
490                         return tags.first->second;
491                 tags.first++;
492                 index--;
493         }
494         return NULL;
495 }
496
497 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool allow_linefeeds)
498 {
499         std::string result = default_value;
500         if (!SlowGetTag(tag, index)->readString(name, result, allow_linefeeds))
501         {
502                 this->error = CONF_VALUE_NOT_FOUND;
503         }
504         return result;
505 }
506
507 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, int index, bool allow_linefeeds)
508 {
509         return ReadValue(tag, name, "", index, allow_linefeeds);
510 }
511
512 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, const std::string &default_value, int index)
513 {
514         bool def = (default_value == "yes");
515         return SlowGetTag(tag, index)->getBool(name, def);
516 }
517
518 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, int index)
519 {
520         return ReadFlag(tag, name, "", index);
521 }
522
523
524 int ConfigReader::ReadInteger(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool need_positive)
525 {
526         int v = atoi(default_value.c_str());
527         int result = SlowGetTag(tag, index)->getInt(name, v);
528
529         if ((need_positive) && (result < 0))
530         {
531                 this->error = CONF_INT_NEGATIVE;
532                 return 0;
533         }
534
535         return result;
536 }
537
538 int ConfigReader::ReadInteger(const std::string &tag, const std::string &name, int index, bool need_positive)
539 {
540         return ReadInteger(tag, name, "", index, need_positive);
541 }
542
543 long ConfigReader::GetError()
544 {
545         long olderr = this->error;
546         this->error = 0;
547         return olderr;
548 }
549
550 int ConfigReader::Enumerate(const std::string &tag)
551 {
552         ServerInstance->Logs->Log("MODULE", DEBUG, "Module is using ConfigReader::Enumerate on %s; this is slow!",
553                 tag.c_str());
554         int i=0;
555         while (SlowGetTag(tag, i)) i++;
556         return i;
557 }
558
559 FileReader::FileReader(const std::string &filename)
560 {
561         LoadFile(filename);
562 }
563
564 FileReader::FileReader()
565 {
566 }
567
568 std::string FileReader::Contents()
569 {
570         std::string x;
571         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
572         {
573                 x.append(*a);
574                 x.append("\r\n");
575         }
576         return x;
577 }
578
579 unsigned long FileReader::ContentSize()
580 {
581         return this->contentsize;
582 }
583
584 void FileReader::CalcSize()
585 {
586         unsigned long n = 0;
587         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
588                 n += (a->length() + 2);
589         this->contentsize = n;
590 }
591
592 void FileReader::LoadFile(const std::string &filename)
593 {
594         file_cache c;
595         c.clear();
596         if (ServerInstance->Config->ReadFile(c,filename.c_str()))
597         {
598                 this->fc = c;
599                 this->CalcSize();
600         }
601 }
602
603
604 FileReader::~FileReader()
605 {
606 }
607
608 bool FileReader::Exists()
609 {
610         return (!(fc.size() == 0));
611 }
612
613 std::string FileReader::GetLine(int x)
614 {
615         if ((x<0) || ((unsigned)x>fc.size()))
616                 return "";
617         return fc[x];
618 }
619
620 int FileReader::FileSize()
621 {
622         return fc.size();
623 }