TarsCloud_TarsCpp/test_deprecated/testUtil/example_tc_mmap.cpp
2020-02-07 13:50:04 +08:00

99 lines
2.1 KiB
C++

/**
* Tencent is pleased to support the open source community by making Tars available.
*
* Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* https://opensource.org/licenses/BSD-3-Clause
*
* Unless required by applicable law or agreed to in writing, software distributed
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
#include "util/tc_mmap.h"
#include "util/tc_option.h"
#include <unistd.h>
#include <iostream>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
using namespace tars;
void testCreate(size_t n)
{
TC_Mmap mmap;
cout << "create mmap" << endl;
mmap.mmap("mmap.dat", n);
mmap.munmap();
cout << "create mmap OK" << endl;
}
void testWrite(const string &s)
{
TC_Mmap mmap;
cout << "write mmap" << endl;
mmap.mmap("mmap.dat", 1000);
memcpy(mmap.getPointer(), s.c_str(), s.length());
sleep(10);
mmap.munmap();
}
void testRead()
{
TC_Mmap mmap;
cout << "read mmap" << endl;
mmap.mmap("mmap.dat", 1000);
string s;
s.assign((char*)mmap.getPointer(), mmap.getSize());
mmap.munmap();
cout << s << endl;
}
int main(int argc, char *argv[])
{
try
{
TC_Option option;
option.decode(argc, argv);
int pagesize = sysconf(_SC_PAGESIZE);
cout << "pagesize:" << pagesize << endl;
if(option.getValue("test") == "create")
{
size_t n = 50;
testCreate(n);
}
else if(option.getValue("test") == "write")
{
testWrite(option.getValue("c"));
}
else if(option.getValue("test") == "read")
{
testRead();
}
return 0;
}
catch(exception &ex)
{
cout << ex.what() << endl;
}
return 0;
}