[dali_1.0.39] Merge branch 'tizen'
[platform/core/uifw/dali-demo.git] / examples / builder / examples.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
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
18 //------------------------------------------------------------------------------
19 //
20 //
21 //------------------------------------------------------------------------------
22
23 #include "dali.h"
24 #include <dali-toolkit/dali-toolkit.h>
25 #include <dali-toolkit/public-api/builder/builder.h>
26 #include <dali-toolkit/public-api/builder/tree-node.h>
27 #include <dali-toolkit/public-api/builder/json-parser.h>
28 #include <map>
29 #include <string>
30 #include <fstream>
31 #include <streambuf>
32 #include <sstream>
33 #include <dirent.h>
34 #include <stdio.h>
35 #include <iostream>
36
37 #include "sys/stat.h"
38 #include <ctime>
39
40 #include <dali/integration-api/debug.h>
41 #include "shared/view.h"
42
43 #define TOKEN_STRING(x) #x
44
45 using namespace Dali;
46 using namespace Dali::Toolkit;
47
48 namespace
49 {
50
51 const char* BACKGROUND_IMAGE( "" );
52 const char* TOOLBAR_IMAGE( DALI_IMAGE_DIR "top-bar.png" );
53 const char* EDIT_IMAGE( DALI_IMAGE_DIR "icon-change.png" );
54
55 std::string USER_DIRECTORY;
56
57 std::string JSON_BROKEN("                                      \
58 {                                                              \
59   'stage':                                                     \
60   [                                                            \
61     {                                                          \
62       'type':'TextLabel',                                      \
63       'size': [50,50,1],                                       \
64       'parent-origin': 'CENTER',                               \
65       'text':'COULD NOT LOAD JSON FILE'                        \
66     }                                                          \
67   ]                                                            \
68 }                                                              \
69 ");
70
71 std::string ReplaceQuotes(const std::string &single_quoted)
72 {
73   std::string s(single_quoted);
74
75   // wrong as no embedded quote but had regex link problems
76   std::replace(s.begin(), s.end(), '\'', '"');
77
78   return s;
79 }
80
81 std::string GetFileContents(const std::string &fn)
82 {
83   std::ifstream t(fn.c_str());
84   return std::string((std::istreambuf_iterator<char>(t)),
85                      std::istreambuf_iterator<char>());
86 };
87
88 typedef std::vector<std::string> FileList;
89
90 void DirectoryFileList(const std::string& directory, FileList& files)
91 {
92   DIR           *d;
93   struct dirent *dir;
94   d = opendir(directory.c_str());
95   if (d)
96   {
97     while ((dir = readdir(d)) != NULL)
98     {
99       if (dir->d_type == DT_REG)
100       {
101         files.push_back( directory + std::string(dir->d_name) );
102       }
103     }
104
105     closedir(d);
106   }
107 }
108
109 void DirectoryFilesByType(const std::string& dir, const std::string& fileType /* ie "json" */, FileList& files)
110 {
111   typedef FileList Collection;
112   typedef FileList::iterator Iter;
113
114   Collection allFiles;
115   DirectoryFileList(dir, allFiles);
116
117   for(Iter iter = allFiles.begin(); iter != allFiles.end(); ++iter)
118   {
119     size_t pos = (*iter).rfind( '.' );
120     if( pos != std::string::npos )
121     {
122       if( (*iter).substr( pos+1 ) == fileType )
123       {
124         files.push_back( (*iter) );
125       }
126     }
127   }
128 }
129
130 const std::string ShortName( const std::string& name )
131 {
132   size_t pos = name.rfind( '/' );
133
134   if( pos != std::string::npos )
135   {
136     return name.substr( pos );
137   }
138   else
139   {
140     return name;
141   }
142 }
143
144 static Vector3 SetItemSize(unsigned int numberOfColumns, float layoutWidth, float sideMargin, float columnSpacing)
145 {
146   return Vector3(layoutWidth, 50, 1);
147 }
148
149 //------------------------------------------------------------------------------
150 //
151 //
152 //
153 //------------------------------------------------------------------------------
154 class FileWatcher
155 {
156 public:
157   FileWatcher(void);
158   ~FileWatcher(void);
159   explicit FileWatcher(const std::string &fn) { SetFilename(fn) ; };
160
161   void SetFilename(const std::string &fn);
162   std::string GetFilename() const;
163
164   bool FileHasChanged(void);
165   std::string GetFileContents(void) const { return ::GetFileContents(mstringPath) ; };
166
167 private:
168   // compiler does
169   // FileWatcher(const FileWatcher&);
170   // FileWatcher &operator=(const FileWatcher &);
171
172   std::time_t mLastTime;
173   std::string mstringPath;
174
175 };
176
177 FileWatcher::FileWatcher(void) : mLastTime(0)
178 {
179 }
180
181 bool FileWatcher::FileHasChanged(void)
182 {
183   struct stat buf;
184
185   if(0 != stat(mstringPath.c_str(), &buf))
186   {
187     return false;
188   }
189   else
190   {
191     if(buf.st_mtime > mLastTime)
192     {
193       mLastTime = buf.st_mtime;
194       return true;
195     }
196     else
197     {
198       mLastTime = buf.st_mtime;
199       return false;
200     }
201   }
202
203   return false;
204 }
205
206 FileWatcher::~FileWatcher()
207 {
208 }
209
210 void FileWatcher::SetFilename(const std::string &fn)
211 {
212   mstringPath = fn;
213   FileHasChanged(); // update last time
214 }
215
216 std::string FileWatcher::GetFilename(void) const
217 {
218   return mstringPath;
219 }
220
221
222 } // anon namespace
223
224
225 //------------------------------------------------------------------------------
226 //
227 //
228 //
229 //------------------------------------------------------------------------------
230 class ExampleApp : public ConnectionTracker, public Toolkit::ItemFactory
231 {
232 public:
233   ExampleApp(Application &app) : mApp(app)
234   {
235     app.InitSignal().Connect(this, &ExampleApp::Create);
236   }
237
238   ~ExampleApp() {}
239
240 public:
241
242   void SetTitle(const std::string& title)
243   {
244     if(!mTitleActor)
245     {
246       mTitleActor = DemoHelper::CreateToolBarLabel( "" );
247       // Add title to the tool bar.
248       mToolBar.AddControl( mTitleActor, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarTitlePercentage, Alignment::HorizontalCenter );
249     }
250
251     mTitleActor.SetProperty( TextLabel::Property::TEXT, title );
252   }
253
254   bool OnToolSelectLayout( Toolkit::Button button )
255   {
256     bool on = mItemView.IsVisible();
257
258     if( on )
259     {
260       LeaveSelection();
261     }
262     else
263     {
264       EnterSelection();
265     }
266
267     return true;
268   }
269
270   void LeaveSelection()
271   {
272
273   }
274
275   void EnterSelection()
276   {
277     Stage stage = Stage::GetCurrent();
278
279     mTapDetector = TapGestureDetector::New();
280     mTapDetector.DetectedSignal().Connect( this, &ExampleApp::OnTap );
281
282     if( mItemView )
283     {
284       stage.Remove( mItemView );
285     }
286
287     mFiles.clear();
288
289     mItemView = ItemView::New(*this);
290     stage.Add( mItemView );
291     mItemView.SetParentOrigin(ParentOrigin::CENTER);
292     mItemView.SetAnchorPoint(AnchorPoint::CENTER);
293     mGridLayout = GridLayout::New();
294     mGridLayout->SetNumberOfColumns(1);
295
296     mGridLayout->SetItemSizeFunction(SetItemSize);
297
298     mGridLayout->SetTopMargin(DemoHelper::DEFAULT_VIEW_STYLE.mToolBarHeight);
299
300     mItemView.AddLayout(*mGridLayout);
301
302     Vector3 size(stage.GetSize());
303     mItemView.ActivateLayout(0, size, 0.0f/*immediate*/);
304     mItemView.SetKeyboardFocusable( true );
305
306     mFiles.clear();
307     FileList files;
308
309     if( USER_DIRECTORY.size() )
310     {
311       DirectoryFilesByType( USER_DIRECTORY, "json", files );
312     }
313     else
314     {
315       DirectoryFilesByType( DALI_SCRIPT_DIR, "json", files );
316     }
317
318     std::sort(files.begin(), files.end());
319
320     ItemId itemId = 0;
321     for(FileList::iterator iter = files.begin(); iter != files.end(); ++iter)
322     {
323       JsonParser parser = JsonParser::New();
324
325       std::string data( GetFileContents( *iter ) );
326
327       parser.Parse( data );
328
329       if( parser.ParseError() )
330       {
331         std::cout << "Parser Error:" << *iter << std::endl;
332         std::cout << parser.GetErrorLineNumber() << "(" << parser.GetErrorColumn() << "):" << parser.GetErrorDescription() << std::endl;
333         exit(1);
334       }
335
336       if( parser.GetRoot() )
337       {
338         if( const TreeNode* node = parser.GetRoot()->Find("stage") )
339         {
340           // only those with a stage section
341           if( node->Size() )
342           {
343             mFiles.push_back( *iter );
344
345             mItemView.InsertItem( Item(itemId,
346                                        MenuItem( ShortName( *iter ) ) ),
347                                   0.5f );
348
349             itemId++;
350           }
351           else
352           {
353             std::cout << "Ignored file (stage has no nodes?):" << *iter << std::endl;
354           }
355         }
356         else
357         {
358           std::cout << "Ignored file (no stage section):" << *iter << std::endl;
359         }
360       }
361     }
362
363     // Display item view on the stage
364     stage.Add( mItemView );
365
366     mItemView.SetVisible( true );
367     mBuilderLayer.SetVisible( false );
368
369     SetTitle("Select");
370
371     // Itemview renderes the previous items unless its scrolled. Not sure why at the moment so we force a scroll
372     mItemView.ScrollToItem(0, 0);
373
374   }
375
376   void ExitSelection()
377   {
378     mTapDetector.Reset();
379
380     mItemView.SetVisible( false );
381     mBuilderLayer.SetVisible( true );
382
383     SetTitle("View");
384   }
385
386   void OnTap( Actor actor, const TapGesture& tap )
387   {
388     ItemId id = mItemView.GetItemId( actor );
389
390     LoadFromFileList( id );
391   }
392
393   Actor MenuItem(const std::string& text)
394   {
395     TextLabel label = TextLabel::New( ShortName( text ) );
396     label.SetProperty( Dali::Toolkit::Control::Property::STYLE_NAME, "builderlabel" );
397     label.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH );
398
399     // Hook up tap detector
400     mTapDetector.Attach( label );
401
402     return label;
403   }
404
405   bool OnTimer()
406   {
407     if( mFileWatcher.FileHasChanged() )
408     {
409       LoadFromFile( mFileWatcher.GetFilename() );
410     }
411
412     return true;
413   }
414
415   void ReloadJsonFile(const std::string& filename, Builder& builder, Layer& layer)
416   {
417     Stage stage = Stage::GetCurrent();
418
419     builder = Builder::New();
420     builder.QuitSignal().Connect( this, &ExampleApp::OnBuilderQuit );
421
422     Property::Map defaultDirs;
423     defaultDirs[ TOKEN_STRING(DALI_IMAGE_DIR) ]  = DALI_IMAGE_DIR;
424     defaultDirs[ TOKEN_STRING(DALI_MODEL_DIR) ]  = DALI_MODEL_DIR;
425     defaultDirs[ TOKEN_STRING(DALI_SCRIPT_DIR) ] = DALI_SCRIPT_DIR;
426
427     builder.AddConstants( defaultDirs );
428
429     // render tasks may have been setup last load so remove them
430     RenderTaskList taskList = stage.GetRenderTaskList();
431     if( taskList.GetTaskCount() > 1 )
432     {
433       typedef std::vector<RenderTask> Collection;
434       typedef Collection::iterator ColIter;
435       Collection tasks;
436
437       for(unsigned int i = 1; i < taskList.GetTaskCount(); ++i)
438       {
439         tasks.push_back( taskList.GetTask(i) );
440       }
441
442       for(ColIter iter = tasks.begin(); iter != tasks.end(); ++iter)
443       {
444         taskList.RemoveTask(*iter);
445       }
446
447       RenderTask defaultTask = taskList.GetTask(0);
448       defaultTask.SetSourceActor( stage.GetRootLayer() );
449       defaultTask.SetTargetFrameBuffer( FrameBufferImage() );
450     }
451
452     unsigned int numChildren = layer.GetChildCount();
453
454     for(unsigned int i=0; i<numChildren; ++i)
455     {
456       layer.Remove( layer.GetChildAt(0) );
457     }
458
459     std::string data(GetFileContents(filename));
460
461     try
462     {
463       builder.LoadFromString(data);
464     }
465     catch(...)
466     {
467       builder.LoadFromString(ReplaceQuotes(JSON_BROKEN));
468     }
469
470     builder.AddActors( layer );
471   }
472
473
474   void LoadFromFileList( size_t index )
475   {
476     if( index < mFiles.size())
477     {
478       const std::string& name = mFiles[index];
479       mFileWatcher.SetFilename( name );
480       LoadFromFile( name );
481     }
482   }
483
484   void LoadFromFile( const std::string& name )
485   {
486     ReloadJsonFile( name, mBuilder, mBuilderLayer );
487
488     // do this here as GetCurrentSize()
489     mBuilderLayer.SetParentOrigin(ParentOrigin::CENTER);
490     mBuilderLayer.SetAnchorPoint(AnchorPoint::CENTER);
491     Dali::Vector3 size = Stage::GetCurrent().GetRootLayer().GetCurrentSize();
492     size.y -= DemoHelper::DEFAULT_VIEW_STYLE.mToolBarHeight;
493     mBuilderLayer.SetSize( size );
494
495     mBuilderLayer.LowerToBottom();
496     Stage::GetCurrent().GetRootLayer().RaiseToTop();
497
498     ExitSelection();
499   }
500
501   void Create(Application& app)
502   {
503     DemoHelper::RequestThemeChange();
504
505     Stage stage = Stage::GetCurrent();
506
507     Stage::GetCurrent().KeyEventSignal().Connect(this, &ExampleApp::OnKeyEvent);
508
509     Layer contents = DemoHelper::CreateView( app,
510                                              mView,
511                                              mToolBar,
512                                              BACKGROUND_IMAGE,
513                                              TOOLBAR_IMAGE,
514                                              "" );
515
516     SetTitle("Builder");
517
518     mBuilderLayer = Layer::New();
519     stage.GetRootLayer().Add(mBuilderLayer);
520
521
522     // Create an edit mode button. (left of toolbar)
523     Toolkit::PushButton editButton = Toolkit::PushButton::New();
524     editButton.SetBackgroundImage( ResourceImage::New( EDIT_IMAGE ) );
525     editButton.ClickedSignal().Connect( this, &ExampleApp::OnToolSelectLayout);
526     editButton.SetLeaveRequired( true );
527     mToolBar.AddControl( editButton, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage, Toolkit::Alignment::HorizontalLeft, DemoHelper::DEFAULT_MODE_SWITCH_PADDING  );
528
529     EnterSelection();
530
531     mTimer = Timer::New( 500 ); // ms
532     mTimer.TickSignal().Connect( this, &ExampleApp::OnTimer);
533     mTimer.Start();
534
535   } // Create(app)
536
537   virtual unsigned int GetNumberOfItems()
538   {
539     return mFiles.size();
540   }
541
542   virtual Actor NewItem(unsigned int itemId)
543   {
544     DALI_ASSERT_DEBUG( itemId < mFiles.size() );
545     return MenuItem( ShortName( mFiles[itemId] ) );
546   }
547
548   /**
549    * Main key event handler
550    */
551   void OnKeyEvent(const KeyEvent& event)
552   {
553     if(event.state == KeyEvent::Down)
554     {
555       if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
556       {
557         if ( mItemView.IsVisible() )
558         {
559           mApp.Quit();
560         }
561         else
562         {
563           EnterSelection();
564         }
565       }
566     }
567   }
568
569   /**
570    * Event handler when Builder wants to quit (we only want to close the shown json unless we're at the top-level)
571    */
572   void OnBuilderQuit()
573   {
574     if ( mItemView.IsVisible() )
575     {
576       mApp.Quit();
577     }
578     else
579     {
580       EnterSelection();
581     }
582   }
583
584 private:
585   Application& mApp;
586
587   GridLayoutPtr mGridLayout;
588   ItemView mItemView;
589
590   Toolkit::View mView;
591   unsigned int mOrientation;
592
593   Toolkit::ToolBar mToolBar;
594   TextLabel mTitleActor;             ///< The Toolbar's Title.
595
596   Layer mBuilderLayer;
597
598   Toolkit::Popup mMenu;
599
600   TapGestureDetector mTapDetector;
601
602   // builder
603   Builder mBuilder;
604
605   FileList mFiles;
606
607   FileWatcher mFileWatcher;
608   Timer mTimer;
609
610
611 };
612
613 //------------------------------------------------------------------------------
614 //
615 //
616 //
617 //------------------------------------------------------------------------------
618 int main(int argc, char **argv)
619 {
620   if(argc > 2)
621   {
622     if(strcmp(argv[1], "-f") == 0)
623     {
624       USER_DIRECTORY = argv[2];
625     }
626   }
627
628   Application app = Application::New(&argc, &argv);
629
630   ExampleApp dali_app(app);
631
632   app.MainLoop();
633
634   return 0;
635 }