Initialize Tizen 2.3
[framework/web/wrt-commons.git] / examples / single_instance / single_instance.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file        single_instance.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of single instance example
21  */
22 #include <stddef.h>
23 #include <dpl/single_instance.h>
24 #include <iostream>
25
26 int main(int argc, char *argv[])
27 {
28     if (argc != 2)
29     {
30         std::cout << "Specify instance name!" << std::endl;
31         return 0;
32     }
33
34     DPL::SingleInstance singleInstance;
35
36     if (singleInstance.TryLock(argv[1]))
37     {
38         std::cout << "Succedded to lock single instance." << std::endl << "Press ENTER to release lock..." << std::endl;
39
40         // Wait for any key
41         getchar();
42
43         // Release gathered lock
44         singleInstance.Release();
45
46         // Done
47         return 0;
48     }
49
50     std::cout << "Cannot retrieve single instance lock." << std::endl
51               << "Another application has locked single instance." << std::endl
52               << "Will now exit." << std::endl;
53
54     // Done
55     return 0;
56 }