test_dll_simple.cpp

来自「Boost provides free peer-reviewed portab」· C++ 代码 · 共 237 行

CPP
237
字号
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8// test_dll_simple.cpp// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . // Use, modification and distribution is subject to the Boost Software// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at// http://www.boost.org/LICENSE_1_0.txt)// should pass compilation and execution// invoke header for a custom archive test.#include <cstddef> // NULL#include <fstream>#include <cstdio> // remove#include <boost/config.hpp>#if defined(BOOST_NO_STDC_NAMESPACE)namespace std{     using ::remove;}#endif#include "test_tools.hpp"#include <boost/archive/text_oarchive.hpp>#include <boost/archive/text_iarchive.hpp>#include <boost/archive/polymorphic_text_oarchive.hpp>#include <boost/archive/polymorphic_text_iarchive.hpp>#include "test_decl.hpp"#define DLL_DECL IMPORT_DECL#include "A.hpp"#undef  DLL_DECL// simple class with text archive compiled in dllvoidtest1(){    const char * testfile = boost::archive::tmpnam(NULL);    BOOST_REQUIRE(NULL != testfile);    A a, a1;    {           test_ostream os(testfile, TEST_STREAM_FLAGS);        boost::archive::text_oarchive oa(os, TEST_ARCHIVE_FLAGS);        oa << boost::serialization::make_nvp("a", a);    }    {        test_istream is(testfile, TEST_STREAM_FLAGS);        boost::archive::text_iarchive ia(is, TEST_ARCHIVE_FLAGS);        ia >> boost::serialization::make_nvp("a", a1);    }    BOOST_CHECK_EQUAL(a, a1);    std::remove(testfile);}// simple class with polymorphic archive compiled in dllvoidtest2(){    const char * testfile = boost::archive::tmpnam(NULL);    BOOST_REQUIRE(NULL != testfile);    A a, a1;    {           test_ostream os(testfile, TEST_STREAM_FLAGS);        boost::archive::polymorphic_text_oarchive oa(os, TEST_ARCHIVE_FLAGS);        oa << boost::serialization::make_nvp("a", a);    }    {        test_istream is(testfile, TEST_STREAM_FLAGS);        boost::archive::polymorphic_text_iarchive ia(is, TEST_ARCHIVE_FLAGS);        ia >> boost::serialization::make_nvp("a", a1);    }    BOOST_CHECK_EQUAL(a, a1);    std::remove(testfile);}// simple class pointer with text archive compiled in dllvoidtest3(){    const char * testfile = boost::archive::tmpnam(NULL);    BOOST_REQUIRE(NULL != testfile);    A *a = & A();    A *a1;    {           test_ostream os(testfile, TEST_STREAM_FLAGS);        boost::archive::text_oarchive oa(os, TEST_ARCHIVE_FLAGS);        oa << boost::serialization::make_nvp("a", a);    }    {        test_istream is(testfile, TEST_STREAM_FLAGS);        boost::archive::text_iarchive ia(is, TEST_ARCHIVE_FLAGS);        ia >> boost::serialization::make_nvp("a", a1);    }    BOOST_CHECK_EQUAL(*a, *a1);    std::remove(testfile);}// simple class pointer with polymorphic archive compiled in dllvoidtest4(){    const char * testfile = boost::archive::tmpnam(NULL);    BOOST_REQUIRE(NULL != testfile);    A *a = & A();    A *a1;    {           test_ostream os(testfile, TEST_STREAM_FLAGS);        boost::archive::polymorphic_text_oarchive oa(os, TEST_ARCHIVE_FLAGS);        oa << boost::serialization::make_nvp("a", a);    }    {        test_istream is(testfile, TEST_STREAM_FLAGS);        boost::archive::polymorphic_text_iarchive ia(is, TEST_ARCHIVE_FLAGS);        ia >> boost::serialization::make_nvp("a", a1);    }    BOOST_CHECK_EQUAL(*a, *a1);    std::remove(testfile);}#define DLL_DECL IMPORT_DECL#include "B.hpp"#undef  DLL_DECL// derived class with base text archive compiled in dllvoidtest5(){    const char * testfile = boost::archive::tmpnam(NULL);    BOOST_REQUIRE(NULL != testfile);    B b, b1;    {           test_ostream os(testfile, TEST_STREAM_FLAGS);        boost::archive::text_oarchive oa(os, TEST_ARCHIVE_FLAGS);        oa << boost::serialization::make_nvp("b", b);    }    {        test_istream is(testfile, TEST_STREAM_FLAGS);        boost::archive::text_iarchive ia(is, TEST_ARCHIVE_FLAGS);        ia >> boost::serialization::make_nvp("b", b1);    }    BOOST_CHECK_EQUAL(b, b1);    std::remove(testfile);}// derived class with base base compiled with polymorphic archive in dllvoidtest6(){    const char * testfile = boost::archive::tmpnam(NULL);    BOOST_REQUIRE(NULL != testfile);    B b, b1;    {           test_ostream os(testfile, TEST_STREAM_FLAGS);        boost::archive::polymorphic_text_oarchive oa(os, TEST_ARCHIVE_FLAGS);        oa << boost::serialization::make_nvp("b", b);    }    {        test_istream is(testfile, TEST_STREAM_FLAGS);        boost::archive::polymorphic_text_iarchive ia(is, TEST_ARCHIVE_FLAGS);        ia >> boost::serialization::make_nvp("b", b1);    }    BOOST_CHECK_EQUAL(b, b1);    std::remove(testfile);}// derived class pointer with base text archive compiled in dllvoidtest7(){    const char * testfile = boost::archive::tmpnam(NULL);    BOOST_REQUIRE(NULL != testfile);    B *b = & B();    B *b1;    {           test_ostream os(testfile, TEST_STREAM_FLAGS);        boost::archive::text_oarchive oa(os, TEST_ARCHIVE_FLAGS);        oa << boost::serialization::make_nvp("b", b);    }    {        test_istream is(testfile, TEST_STREAM_FLAGS);        boost::archive::text_iarchive ia(is, TEST_ARCHIVE_FLAGS);        ia >> boost::serialization::make_nvp("b", b1);    }    BOOST_CHECK_EQUAL(*b, *b1);    std::remove(testfile);}// derived class pointer with base polymorphic archive compiled in dllvoidtest8(){    const char * testfile = boost::archive::tmpnam(NULL);    BOOST_REQUIRE(NULL != testfile);    B *b = & B();    B *b1;    {           test_ostream os(testfile, TEST_STREAM_FLAGS);        boost::archive::polymorphic_text_oarchive oa(os, TEST_ARCHIVE_FLAGS);        oa << boost::serialization::make_nvp("b", b);    }    {        test_istream is(testfile, TEST_STREAM_FLAGS);        boost::archive::polymorphic_text_iarchive ia(is, TEST_ARCHIVE_FLAGS);        ia >> boost::serialization::make_nvp("b", b1);    }    BOOST_CHECK_EQUAL(*b, *b1);    std::remove(testfile);}int test_main( int /* argc */, char* /* argv */[] ){    test1();    test2();    test3();    test4();    test5();    test6();    test7();    test8();    return EXIT_SUCCESS;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?