/* * lftp - file transfer program * * Copyright (c) 1996-2012 by Alexander V. Lukyanov (lav@yars.free.net) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef LOCALACCESS_H #define LOCALACCESS_H #include "FileAccess.h" #include "Filter.h" class LocalAccess : public FileAccess { Ref stream; bool done; void errno_handle(); void fill_array_info(); public: void Init(); LocalAccess(); LocalAccess(const LocalAccess *); void Connect(const char *host,const char *port) {} void AnonymousLogin() {} void Login(const char *u,const char *p) {} void ResetLocationData() {} const char *GetProto() const { return "file"; } FileAccess *Clone() const { return new LocalAccess(this); } static FileAccess *New(); bool SameLocationAs(const FileAccess *fa) const; int Read(Buffer *buf,int size); int Write(const void *buf,int size); int StoreStatus(); int Do(); int Done(); void Close(); const char *CurrentStatus(); static void ClassInit(); ListInfo *MakeListInfo(const char *path); Glob *MakeGlob(const char *pattern); DirList *MakeDirList(ArgV *a); }; #endif//LOCALACCESS_H