zoukankan      html  css  js  c++  java
  • libcurl与ftp构建小文件传输服务

    敬请参见独立博客页面:http://1.oliverwang.sinaapp.com/?p=40

    /*
    The MIT License (MIT)
    
    Copyright (c) <2014> <oliver-lxtech2013@gmail.com>
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    THE SOFTWARE.
    */
    
    #ifndef FTPCLIENT_H
    #define FTPCLIENT_H
    
    #include "curl/curl.h"
    #include <string>
    #include <iostream>
    #include <fstream>
    
    using namespace std;
    
    /* represent a ftp file */
    struct FtpFile {
        string filename;          /* Name */
        string path;              /* Where to save */
        FILE *stream;             /* Stream */
    };
    
    /* File type */
    typedef enum {
        BIN_T = 2,         /* Firmware in *.bin */
        HEX_T = 3,         /* Firmware in *.hex */
        YAML_T = 4         /* Yaml configuration file */
    } eFileType;
    
    typedef int file_t;    /* File type */
    
    class FtpClient
    {
        public:
            FtpClient();
            virtual ~FtpClient();
    
            void SetFtpAddress(const string &url);                               /* Set the ftp server address, Must call before using */
            void SetAuthorityAccount(const string &user, const string &pwr);     /* Set the ftp account */
            void SetRelativePath(const string &path_yaml, const string &path_fw);
            bool FtpDownloadFile(const string &filename, file_t type);               /* Download a file from server */
            bool FtpUploadFile(const string &filename);                              /* Upload a file to the server */
            static bool isValidIp(char *ip, int len);
            string GetRelativePath(file_t type);
            /* For test */
            void UnitTest_Get();
            void UnitTest_Post();
            void UnitTest_Print();
    
        private:
            string ftpUrl;            /* Ftp Server Address */
            string userName;          /* Ftp Server Account Username */
            string passWord;          /* Ftp Server Account Password */
            string relativePathYaml;  /* file save yaml */
            string relativePathFw;    /* file save bin */
    
            static size_t yaml_fwrite(void *buf, size_t _size, size_t nmemb, void *stream);
    
    };
    
    #endif // FTPCLIENT_H
  • 相关阅读:
    @Aspect 注解使用详解
    Mysql的4个隔离级别
    【学习笔记】二分类问题中的“最大似然”与“交叉熵损失”概念的理解
    【转】对“先验概率”与“后验概率”概念的通俗理解
    nginx——安装部署vue项目
    JWT
    Vue——自定义组件实现vmodel
    Vue——子级向父级传递参数
    SpringBoot2(十四)全局异常切面
    Vue——ElementUI表格分页
  • 原文地址:https://www.cnblogs.com/openIoT/p/4191115.html
Copyright © 2011-2022 走看看