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